Skip to Content
0
Former Member
May 09, 2008 at 05:51 AM

concatenation urgent

29 Views

hi all,

I am concatenating 3 fields date,time, order number as

below

DATA: W_TOP TYPE SLIS_LISTHEADER,

T_TOP LIKE STANDARD TABLE OF W_TOP.

W_TOP-TYP = 'S'.

CONCATENATE 'DATE:' SY-DATUM

'TIME:' SY-UZEIT

'ORDER NUMBER:' P_VBELN INTO

W_TOP-INFO.

APPEND W_TOP TO T_TOP.

CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'

EXPORTING

IT_LIST_COMMENTARY = T_TOP

I_LOGO = 'GE_LOGO'

i am getting the output as

DATE:20080508TIME:224326ORDERNO:12

i.e i am not getting the spaces between the fields.

i used all the possible solutions using separated by space etc ,i am getting only single space

But i must get the output as

DATE:2008050 TIME:224326 ORDERNO:12

*I want more space between the fields*

reply ASAP.