Description:
A string expression is enclosed by the “|” character on both sides and generates a character string.
- Multiple operands (e.g., operand1, operand2, …) can be concatenated into a character string using the && operator, with any operand optionally being a string template.
Syntax:
{ |string_template| }
| { operand1 && operand2 [&& operand3 ... ] } ...
Example:
DATA(ls_string) = |{ 'Hi' }| & | | & |{ 'Team' }|.
WRITE: / ls_string.
Output:

Thanks for visiting!
Sangeeta Singh

Leave a Reply