INTO result SEPARATED BY space. Addition 3 ... RESPECTING BLANKS Effect The additionRESPECTING BLANKSis only allowed when strings are processed and respects the trailing blanks for data objectsdobj1, dobj2 ...or rows in the internal tableitab. If this addition is not used, the blanks are ...
Concatenate multiple columns into one column in ABAP CDS Views S/4 HANA 1809 sirishag Explorer 2020 Jan 21 11:15 AM 0 Kudos 13,158 SAP Managed Tags: ABAP Development Hi Experts, could you please help em to concatenate multiple columns into one string. I am trying to do the...
Here, h is used in its defined length. Examples DATA: ONE(10) VALUE ‘John’, TWO(3) VALUE ‘F.’, THREE(10) VALUE ‘Kennedy’, NAME(20). CONCATENATE ONE TWO THREE INTO NAME SEPARATED BY SPACE. Then, NAME has the value ” John F. ...