‎2010 Oct 05 6:11 AM
hi all
I am displaying an alv.
Then i am going in the transaction IL03 with the field 'tplnr' when I am clicking on that row
However wen I get in the transaction IL03, the entry screen is empty, its not populated with the selected row
my code:
READ TABLE wl_class1->wt_result INTO wws_result INDEX row.
CHECK sy-subrc = 0.
if column = 'TPLNR'.
SET PARAMETER ID 'TPLNR' FIELD wws_result-tplnr.
CALL TRANSACTION 'IL03' AND SKIP FIRST SCREEN.
wws_result-tplnr is taking the correct the value but the screen ILO3 is not taking that value
thanks for your help
‎2010 Oct 05 6:21 AM
Hi,
Parameter ID is IFL ...
SET PARAMETER ID 'IFL' FIELD wws_result-tplnr.
Regards,
Srini.
‎2010 Oct 05 6:21 AM
Hi,
Parameter ID is IFL ...
SET PARAMETER ID 'IFL' FIELD wws_result-tplnr.
Regards,
Srini.
‎2010 Oct 05 6:28 AM
hi srini vas
thanks its working
but where did you get that value? I have to do the same with another field
thanks
‎2010 Oct 05 6:33 AM
Hi,
Press F1 on the field and look for technical information ... you'll find the value in "Parameter ID"
Regards,
Srini.
‎2010 Oct 05 8:08 AM
HI Prema
Launch the Transaction IL03...Click in the field and Press F1...Then click on technical information
You will find the Parameter ID at the bottom..
Regards,
Yahsaar
‎2010 Oct 11 8:47 AM
‎2010 Oct 05 7:02 AM
Hi;
TLPNR Data Element has parameter Id. But Its is not name IL03. Its name is IFL.
SET PARAMETER ID 'IFL' FIELD wws_result-tplnr.
I hope be help for you.
‎2010 Oct 05 7:53 AM