<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Difference between parameter id SAG and VRT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-parameter-id-sag-and-vrt/m-p/4241980#M1012502</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working on ECC6.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason is check this,,, in the iclude&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MM06EO0D_D0205_GET_PARAMETER&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;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&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vijay babu Dudla&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jul 2008 03:55:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-29T03:55:08Z</dc:date>
    <item>
      <title>Difference between parameter id SAG and VRT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-parameter-id-sag-and-vrt/m-p/4241977#M1012499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ABAP Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CAn anyone enlightened me with this? thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards will be given.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 01:30:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-parameter-id-sag-and-vrt/m-p/4241977#M1012499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T01:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between parameter id SAG and VRT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-parameter-id-sag-and-vrt/m-p/4241978#M1012500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its working fine for me with VRT . I dont see any issue. check it once again.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  YTEST_ME.
data: agrement type evrtn.

agrement  = '5500000000'.

set parameter id 'VRT' field agrement.

call transaction 'ME39' and skip first screen.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 03:01:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-parameter-id-sag-and-vrt/m-p/4241978#M1012500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T03:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between parameter id SAG and VRT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-parameter-id-sag-and-vrt/m-p/4241979#M1012501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 03:33:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-parameter-id-sag-and-vrt/m-p/4241979#M1012501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T03:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between parameter id SAG and VRT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-parameter-id-sag-and-vrt/m-p/4241980#M1012502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working on ECC6.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason is check this,,, in the iclude&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MM06EO0D_D0205_GET_PARAMETER&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;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&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vijay babu Dudla&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 03:55:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-parameter-id-sag-and-vrt/m-p/4241980#M1012502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T03:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between parameter id SAG and VRT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-parameter-id-sag-and-vrt/m-p/4241981#M1012503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Vijay!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 03:59:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-parameter-id-sag-and-vrt/m-p/4241981#M1012503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T03:59:44Z</dc:date>
    </item>
  </channel>
</rss>

