Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

set parameter id

Former Member
0 Likes
1,081

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
947

Hi,

Parameter ID is IFL ...

SET PARAMETER ID 'IFL' FIELD wws_result-tplnr.

Regards,

Srini.

7 REPLIES 7
Read only

Former Member
0 Likes
948

Hi,

Parameter ID is IFL ...

SET PARAMETER ID 'IFL' FIELD wws_result-tplnr.

Regards,

Srini.

Read only

0 Likes
947

hi srini vas

thanks its working

but where did you get that value? I have to do the same with another field

thanks

Read only

0 Likes
947

Hi,

Press F1 on the field and look for technical information ... you'll find the value in "Parameter ID"

Regards,

Srini.

Read only

0 Likes
947

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

Read only

0 Likes
947

thanks srinivas

Read only

former_member212713
Contributor
0 Likes
947

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.

Read only

Former Member
0 Likes
947

Hi,

Check table TNAPR.

for parameter id.

regards,

Sakshi