<?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: Parameter id in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/7181193#M1518539</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can get to know the use of parameter id in F1 help itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter id.&lt;/P&gt;&lt;P&gt;       A field can be filled with proposed values from SAP memory using a parameter ID.&lt;/P&gt;&lt;P&gt;      example&lt;/P&gt;&lt;P&gt;       A user only has authorization for company code 0001. This company code is stored in memory at the beginning of a   &lt;/P&gt;&lt;P&gt;      transaction under the corresponding parameter ID. Fields that refer to the data element are automatically filled with the &lt;/P&gt;&lt;P&gt;      value 001  in all subsequent screen templates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Push button&lt;/P&gt;&lt;P&gt; go to the transaction ABAPDOCU-&amp;gt; ABAP user dialogs.you will get examples for push buttons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Arul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please do not encourage laziness by replying to such questions!&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Aug 12, 2010 1:51 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Aug 2010 11:36:22 GMT</pubDate>
    <dc:creator>arul_murugan</dc:creator>
    <dc:date>2010-08-12T11:36:22Z</dc:date>
    <item>
      <title>Parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/7181191#M1518537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wat are parameter id's?Explain with example.&lt;/P&gt;&lt;P&gt;how to put pushbutton without using screen painter in selection-screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Manu Gowdru&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please search for available information before asking.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;locked by: Thomas Zloch on Aug 12, 2010 1:50 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Aug 2010 11:00:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/7181191#M1518537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-12T11:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/7181192#M1518538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manu,&lt;/P&gt;&lt;P&gt;  the parameter is used to move a value into a memory field. If you assign the material 'xxx' to the parameter id MAT using a custom program, once you try to run transaction MM03, you will see that the material is populated on field material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Press F1 to check what is the paramater id for any field on any transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To declare a pushbutton on a report you can do the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES:  sscrfields.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN FUNCTION KEY 1.&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  MOVE 'Maintain Table' TO sscrfields-functxt_01.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  IF sscrfields-ucomm = 'FC01'.&lt;/P&gt;&lt;P&gt;    PERFORM f_maintenance_table.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please do not encourage laziness by replying to such questions!&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Aug 12, 2010 1:51 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Aug 2010 11:29:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/7181192#M1518538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-12T11:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/7181193#M1518539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can get to know the use of parameter id in F1 help itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter id.&lt;/P&gt;&lt;P&gt;       A field can be filled with proposed values from SAP memory using a parameter ID.&lt;/P&gt;&lt;P&gt;      example&lt;/P&gt;&lt;P&gt;       A user only has authorization for company code 0001. This company code is stored in memory at the beginning of a   &lt;/P&gt;&lt;P&gt;      transaction under the corresponding parameter ID. Fields that refer to the data element are automatically filled with the &lt;/P&gt;&lt;P&gt;      value 001  in all subsequent screen templates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Push button&lt;/P&gt;&lt;P&gt; go to the transaction ABAPDOCU-&amp;gt; ABAP user dialogs.you will get examples for push buttons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Arul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please do not encourage laziness by replying to such questions!&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Aug 12, 2010 1:51 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Aug 2010 11:36:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/7181193#M1518539</guid>
      <dc:creator>arul_murugan</dc:creator>
      <dc:date>2010-08-12T11:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/7181194#M1518540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter id is an id which is associated with your fields for accessing this field value outside SAP Memory Concept, for example when you create a sales order through va01 ,after it is succesfully craeted , when you log into va02 or vao3 you will automatically get the last sales order number, vbeln has a parameter id associated with it you can check the technical setting of field order number in vao1 there will be a field parameter id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for careting pushbutton:&lt;/P&gt;&lt;P&gt;TABLES sscrfields. &lt;/P&gt;&lt;P&gt;TYPE-POOLS icon. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: &lt;/P&gt;&lt;P&gt;  BEGIN OF SCREEN 500 AS WINDOW TITLE title, &lt;/P&gt;&lt;P&gt;    PUSHBUTTON 2(10)  but1 USER-COMMAND cli1, &lt;/P&gt;&lt;P&gt;    PUSHBUTTON 12(30) but2 USER-COMMAND cli2 &lt;/P&gt;&lt;P&gt;                           VISIBLE LENGTH 10, &lt;/P&gt;&lt;P&gt;  END OF SCREEN 500. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN. &lt;/P&gt;&lt;P&gt;  CASE sscrfields. &lt;/P&gt;&lt;P&gt;    WHEN 'CLI1'. &lt;/P&gt;&lt;P&gt;      ... &lt;/P&gt;&lt;P&gt;    WHEN 'CLI2'. &lt;/P&gt;&lt;P&gt;      ... &lt;/P&gt;&lt;P&gt;  ENDCASE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION. &lt;/P&gt;&lt;P&gt;  title  = 'Push button'. &lt;/P&gt;&lt;P&gt;  but1 = 'Button 1'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'ICON_CREATE' &lt;/P&gt;&lt;P&gt;    EXPORTING &lt;/P&gt;&lt;P&gt;      name   = icon_information &lt;/P&gt;&lt;P&gt;      text   = 'Button 2' &lt;/P&gt;&lt;P&gt;      info   = 'My Quickinfo' &lt;/P&gt;&lt;P&gt;    IMPORTING &lt;/P&gt;&lt;P&gt;      RESULT = but2 &lt;/P&gt;&lt;P&gt;    EXCEPTIONS &lt;/P&gt;&lt;P&gt;      OTHERS = 0. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL SELECTION-SCREEN '0500' STARTING AT 10 10. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gunjan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Gunjan Tyagi on Aug 12, 2010 1:37 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please do not encourage laziness by replying to such questions!&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Aug 12, 2010 1:52 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Aug 2010 11:37:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/7181194#M1518540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-12T11:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/7181195#M1518541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read Documentation about SAP Memory&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Aug 2010 11:39:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/7181195#M1518541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-12T11:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/7181196#M1518542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Manu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before asking questions in the forums please do some basic research. There is a search box at the top of each SCN web page... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This thread will be locked and answers will be removed as we don't want to encourage people to ask basic questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Jan Stallkamp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Aug 2010 11:52:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/7181196#M1518542</guid>
      <dc:creator>JanStallkamp</dc:creator>
      <dc:date>2010-08-12T11:52:24Z</dc:date>
    </item>
  </channel>
</rss>

