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

Parameter ID

karuna_gangireddy
Contributor
0 Likes
971

Hi All,

I am using the following code for agreement# (EVRTN) in the tcode: ME38 using the parameter ID 'VRT' . But the number is not passing on.

SET PARAMETER ID: 'VRT' FIELD FIELD_VALUE2.

CALL TRANSACTION 'ME38' AND SKIP FIRST SCREEN .

PLease let me know if i am missing anything.

Thanks,

Karuna.

1 ACCEPTED SOLUTION
Read only

Subhankar
Active Contributor
0 Likes
892

Hi,

Use SET PARAMETER ID 'SAG' FIELD l_value. Though in the field level it maintained as VRT but inside the program it search for SAG.

Thanks

Subhankar garani

6 REPLIES 6
Read only

Former Member
0 Likes
892

Look att he flow logic for the first screen of ME38. In the PBO, there is a module d0205_get_parameter. There, it sets the value of the screen field to different parameter ids. Try setting one of those parameters to your value.

Rob

Read only

Subhankar
Active Contributor
0 Likes
893

Hi,

Use SET PARAMETER ID 'SAG' FIELD l_value. Though in the field level it maintained as VRT but inside the program it search for SAG.

Thanks

Subhankar garani

Read only

Former Member
0 Likes
892

Or CTR.

rob

Read only

Subhankar
Active Contributor
0 Likes
892

Hi,

thanks Rob.. Its will best way to search the table T160 for Tcode ME38 and then search in the module..If this is 'K' then it will be 'CTR', for 'L' it is 'SAG' and if nothing is maintain or space then it is 'VRT'..

Thanks

Subhankar

Read only

Former Member
0 Likes
892

Hi Karuna,

In debugging mode check if FIELD_VALUE2 has a value.

Regards,

Jovito

Read only

0 Likes
892

Hi All,

Thank you for each and every one to replying to my post.

Rob, it is really nice to know where to look for. I did not knew this before.

Subhankar, I checked the table T160 with the tcode. Again it is always nice to know new thing.

Jovito, i did check it in debug mode the was able to see the value in there.

Thanks again,

Karuna.