Skip to Content
0
Dec 07, 2011 at 12:55 PM

How to Get Data into CALLING SCREEN from CALLED screen

110 Views

hi

In my customized transaction , i had called a standard Tcode IW23 .when user double click on notification number IN that i had used set parameters after that call transaction

here prob is after opening the iw23 , when user will come back , the fields data which already is there in standard have to come into my screen of same fields ( like order number )

i had used code in PBO

 GET PARAMETER ID 'ANR' FIELD zmotor-aufnr  . (i had debugged here sy-subrc = 4)
*   IF  zmotor-qmnum is NOT INITIAL.
*
*     SELECT SINGLE aufnr FROM qmel INTO   it_motor
*                            WHERE  qmnum = zmotor-qmnum.
*
*   ENDIF.
*MOVE it_motor-aufnr to zmotor-aufnr .
CLEAR zmotor-aufnr.

please may i know the write way to use this ....

Thanks a lot.