‎2011 Jan 11 10:27 PM
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.
‎2011 Jan 11 10:47 PM
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
‎2011 Jan 11 10:45 PM
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
‎2011 Jan 11 10:47 PM
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
‎2011 Jan 11 10:48 PM
‎2011 Jan 11 10:54 PM
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
‎2011 Jan 12 5:11 AM
Hi Karuna,
In debugging mode check if FIELD_VALUE2 has a value.
Regards,
Jovito
‎2011 Jan 12 2:33 PM
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.