I am facing problem in executing IP30 (maintenance plant scheduling) tcode from report background. I have tried using submit and return, in this case, it is executing but not returning to the caller program, it remains on the screen and after clicking back button it returns to the calling program. Is there any other way....I can do it easily.....please help...
DATA: lt_seltab TYPE TABLE OF rsparams,
ls_seltab LIKE LINE OF lt_seltab.
ls_seltab-selname = 'WPLAN'.
ls_seltab-KIND = 'S'.
ls_seltab-SIGN = 'I'.
ls_seltab-OPTION = 'EQ'.
ls_seltab-LOW = '23'.
APPEND ls_seltab TO lt_seltab.
SUBMIT RISTRA20
WITH SELECTION-TABLE lt_seltab AND RETURN.
you can try with call transaction and BDCDATA.