A.Ikram
A.Ikram

Reputation: 95

how to link many transactions to one transaction in SAP

I have created three reports with related three transactions but I need now to join all these transactions into one transaction code.

How can I achieve that and What steps should I follow ?

Upvotes: 0

Views: 997

Answers (1)

astentx
astentx

Reputation: 6751

You can create a routing report with pushbuttons and process user-command on button click.

REPORT ZTEST1.

SELECTION-SCREEN PUSHBUTTON 3(10) TCODE1
  USER-COMMAND TCODE1.
SELECTION-SCREEN SKIP 1.
SELECTION-SCREEN PUSHBUTTON 3(10) TCODE2
  USER-COMMAND TCODE2.

INITIALIZATION.
  TCODE1 = 'SU01D'.
  TCODE2 = 'SU53'.

AT SELECTION-SCREEN.
  CASE SY-UCOMM.
    WHEN 'TCODE1'.
      CALL TRANSACTION 'SU01D'.
    WHEN 'TCODE2'.
      CALL TRANSACTION 'SU53'.
  ENDCASE.

Upvotes: 4

Related Questions