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

Difference between parameter id SAG and VRT

Former Member
0 Likes
1,381

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
964

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.

4 REPLIES 4
Read only

Former Member
0 Likes
965

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.

Read only

0 Likes
964

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!

Read only

0 Likes
964

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  OUTPUT

Regards

Vijay babu Dudla

Read only

0 Likes
964

Thanks Vijay!