‎2008 Jul 29 2:30 AM
Hello ABAP Experts,
I just want to know your insights why when i set my parameter id to vrt it will not skip the first screen of tcode me39 but when i set it to sag it will skip the first screen of me39. When i check the parameter id of tcode me39 it was set to vrt only and sag is not displayed.
CAn anyone enlightened me with this? thanks
Rewards will be given.
‎2008 Jul 29 4:01 AM
its working fine for me with VRT . I dont see any issue. check it once again.,
REPORT YTEST_ME.
data: agrement type evrtn.
agrement = '5500000000'.
set parameter id 'VRT' field agrement.
call transaction 'ME39' and skip first screen.
‎2008 Jul 29 4:01 AM
its working fine for me with VRT . I dont see any issue. check it once again.,
REPORT YTEST_ME.
data: agrement type evrtn.
agrement = '5500000000'.
set parameter id 'VRT' field agrement.
call transaction 'ME39' and skip first screen.
‎2008 Jul 29 4:33 AM
Hello Vijay,
Thanks for your reply.Your code is working but I was required that it will skip the initial screen and it will go directly to the scheduling agreement. By using parameter id VRT it will just go to the initial screen and I will still need to input the agreement.
But when I used parameter id SAG it will now go directly to the agreement number skipping the initial screen where you dont need to input the scheduling agreement.
When checking the parameter id of tcode me39 VRT was displayed and not SAG. I need to know where SAG came from? why we need to set parameter id to SAG to skip the main screen and go directly to details of agreement number.
Thanks!
‎2008 Jul 29 4:55 AM
I am working on ECC6.0
when Using the Parameter id VRT it is working fine for me. and other SAG is also working fine.Ideally we should use VRT , since it is directly linked it should work.
The reason is check this,,, in the iclude
MM06EO0D_D0205_GET_PARAMETER
MODULE D0205_GET_PARAMETER OUTPUT.
* Belegnummer über Parameter-Id nur holen, wenn noch nicht anderweitig
* vorbelegt ist (z.B. in ME38-Aufruf aus ME57)
CHECK RM06E-EVRTN EQ SPACE. "4.0B TK
CASE T160-BSTYP.
WHEN BSTYP-KONT.
GET PARAMETER ID 'CTR' FIELD RM06E-EVRTN.
WHEN BSTYP-LFPL.
GET PARAMETER ID 'SAG' FIELD RM06E-EVRTN.
WHEN SPACE.
GET PARAMETER ID 'VRT' FIELD RM06E-EVRTN.
ENDCASE.
ENDMODULE. " D0205_GET_PARAMETER OUTPUTRegards
Vijay babu Dudla
‎2008 Jul 29 4:59 AM