Execute IP30(RISTRA20) from report

293 Views Asked by At

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.
1

There are 1 best solutions below

0
On

you can try with call transaction and BDCDATA.

data:
  lt_bdc type table of bdcdata,
  ls_bdc type bdcdata.

  ls_bdc-program = 'RISTRA20'.
  ls_bdc-dynpro  = '1000'.
  ls_bdc-dynbegin = 'X'.
  append ls_bdc to lt_bdc.

  ls_bdc-fnam = 'WPLAN-LOW'.
  ls_bdc-fval = 'WPLAN'.
  append ls_bdc to lt_bdc.

  ls_bdc-fnam = 'BDC_OKCODE'.
  ls_bdc-fval = '=ONLI'.
  append ls_bdc to lt_bdc.

  call transaction 'IP30' using lt_bdc mode 'N' update 'S'.