2007 Mar 13 11:15 AM
I want display the messages according to condition in code lines of LSMW hw can i di it
2007 Mar 13 11:22 AM
HI ravi..
First declare an internal table in GLOBAL DATA section. Before skipping the record just populate the internal table with the required data.(dont append here).
In END_OF_RECORD append the internal table.
In END_OF_PROCESSING display the contents of the internal table.
loop at itab.
write:/XXXX.
endloop.
This will be displayed after u process the Convert Data step.
In background process display messages as
message s000 with 'test'.Only messages of type
S can be shown in log.
Hope this is helpful.
if it helps reward with points...
Regards Rk.
2007 Mar 13 11:22 AM
HI ravi..
First declare an internal table in GLOBAL DATA section. Before skipping the record just populate the internal table with the required data.(dont append here).
In END_OF_RECORD append the internal table.
In END_OF_PROCESSING display the contents of the internal table.
loop at itab.
write:/XXXX.
endloop.
This will be displayed after u process the Convert Data step.
In background process display messages as
message s000 with 'test'.Only messages of type
S can be shown in log.
Hope this is helpful.
if it helps reward with points...
Regards Rk.