Google Search - Blog...........

ABAP - Calling A Transaction From Classical Report..

report zcall_tcode_in_repots
no standard page heading.

data: itab type table of d010tinf with header line.


start-of-selection.

select * into corresponding fields of table itab
from d010tinf
where prog like 'Z%'.

loop at itab.
write:/ itab-prog.
endloop.


at line-selection.

data: contents(250) type c.
contents = sy-lisel.
set parameter id 'RID' field contents.
call transaction 'SE38'.

No comments:

Post a Comment