‎2007 Nov 21 12:07 PM
Hi,
Can anyone please tell me how to solve this task.
The task is when i execute my report i should get the output values of all fields in internal table must be delimited by #.
‎2007 Nov 21 12:13 PM
Hi...
you can use the Concatenate for this:
Eg:
Loop at ITab into wa.
concatenate wa-field1 wa-field2....
into v_record
separated by ' #'.
write: / v_record.
endloop.
<b>Reward if Helpful.</b>
‎2007 Nov 21 12:11 PM
‎2007 Nov 21 12:12 PM
Hi,
You want output on Screen OR to any file???
If you want report output on screen ...
LOOP AT itab.
WRITE :/(18) itab-matnr, '#',
(13) itab-menge, '#',
------------- "continue
ENDLOOP.
Message was edited by:
Perez C
‎2007 Nov 21 12:13 PM
Hi...
you can use the Concatenate for this:
Eg:
Loop at ITab into wa.
concatenate wa-field1 wa-field2....
into v_record
separated by ' #'.
write: / v_record.
endloop.
<b>Reward if Helpful.</b>