Hi,
I need to call the standard transaction QE51N from my Z program.
In the Z program I determin the value of INSPECTION LOT NUMBER.
I need to pass the value of the fetched insplot to QE51N
I am doing the following....
DATA: lv_insp_lot TYPE qplos.
lv_insp_lot = '30000000010'.
SET PARAMETER ID 'QLS' FIELD lv_insp_lot.
CALL TRANSACTION 'QE51N' ANS SKIP FIRST SCREEN.
However this program calls the 1st screen of QE51N and does not pass the parameter of Inspection lot to the screen.
Heed to know how to pass the Inspection lot to the screen and skip the 1st screen.
Thanks for the help...