<?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/3511094#M844569</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;You can define memory areas (parameters) in the SAP memory in various ways:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By creating input/output fields with reference to the ABAP Dictionary. These take the parameter name of&lt;/P&gt;&lt;P&gt;the data element to which they refer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, you can enter a name in the attributes of the input/output fields. Then, you can also choose&lt;/P&gt;&lt;P&gt;whether the entries from the field should be transferred to the parameter (SET), or whether the input field should be filled with the value from the parameter (GET).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To find out about the names of the parameters assigned to input fields, display the field help for the field (F1), then choose Technical info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also fill a memory area directly using the statement&lt;/P&gt;&lt;P&gt;SET PARAMETER ID '&amp;lt;PAR_ID&amp;gt;' FIELD &amp;lt;var&amp;gt;.&lt;/P&gt;&lt;P&gt;and read it using the statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET PARAMETER ID '&amp;lt;PAR_ID&amp;gt;' FIELD &amp;lt;var&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope this helps, Do reward.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Mar 2008 05:17:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-07T05:17:11Z</dc:date>
    <item>
      <title>Parameter Id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3511090#M844565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can anyone tell me what is parameter id?&lt;/P&gt;&lt;P&gt;How can we create it?What is its use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Deepak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 04:55:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3511090#M844565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T04:55: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/3511091#M844566</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;read this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To fill the input fields of a called transaction with data from the calling program, you can use the SPA/GPA technique. SPA/GPA parameters are values that the system stores in the global, user-specific SAP memory. SAP memory allows you to pass values between programs. A user can access the values stored in the SAP memory during one terminal session for all parallel sessions. Each SPA/GPA parameter is identified by a 20-character code. You can maintain them in the Repository Browser in the ABAP Workbench. The values in SPA/GPA parameters are user-specific. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP programs can access the parameters using the SET PARAMETER and GET PARAMETER statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To fill one, use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID &amp;lt;pid&amp;gt; FIELD &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement saves the contents of field &amp;lt;f&amp;gt; under the ID &amp;lt;pid&amp;gt; in the SAP memory. The code &amp;lt;pid&amp;gt; can be up to 20 characters long. If there was already a value stored under &amp;lt;pid&amp;gt;, this statement overwrites it. If the ID &amp;lt;pid&amp;gt; does not exist, double-click &amp;lt;pid&amp;gt; in the ABAP Editor to create a new parameter object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To read an SPA/GPA parameter, use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET PARAMETER ID &amp;lt;pid&amp;gt; FIELD &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement fills the value stored under the ID &amp;lt;pid&amp;gt; into the variable &amp;lt;f&amp;gt;. If the system does not find a value for &amp;lt;pid&amp;gt; in the SAP memory, it sets SY-SUBRC to 4, otherwise to 0. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To fill the initial screen of a program using SPA/GPA parameters, you normally only need the SET PARAMETER statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The relevant fields must each be linked to an SPA/GPA parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On a selection screen, you link fields to parameters using the MEMORY ID addition in the PARAMETERS or SELECT-OPTIONS statement. If you specify an SPA/GPA parameter ID when you declare a parameter or selection option, the corresponding input field is linked to that input field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shibin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 05:01:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3511091#M844566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T05:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter Id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3511092#M844567</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;SAP memory is a memory area to which all main sessions within a SAPgui have access. You can use SAP memory either to pass data from one program to another within a session, or to pass data from one session to another.  Application programs that use SAP memory must do so using SPA/GPA parameters (also known as SET/GET parameters). These parameters can be set either for a particular user or for a particular program using the SET PARAMETER statement. Other ABAP programs can then retrieve the set parameters using the GET PARAMETER statement. The most frequent use of SPA/GPA parameters is to fill input fields on screens &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'FP' FIELD p_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where FP is the id..u can give watever u want...and p_name is a variable..here it is a parameter..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps u,&lt;/P&gt;&lt;P&gt;Arunsri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 05:04:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3511092#M844567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T05:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter Id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3511093#M844568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Parameters are stored in table &lt;STRONG&gt;TPARA.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Parameter are predefined values for particular user.these are used for populating certain field which are frequently used by the user.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In order to find the parameter id&lt;/STRONG&gt; we have go to techinal property for particular field.And give parameter value(what value you want to use frequently).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this Wiki Link for more info.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/user" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/user&lt;/A&gt;&lt;EM&gt;Profile&lt;/EM&gt;Parameters&amp;amp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 05:04:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3511093#M844568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T05:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter Id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3511094#M844569</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;You can define memory areas (parameters) in the SAP memory in various ways:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By creating input/output fields with reference to the ABAP Dictionary. These take the parameter name of&lt;/P&gt;&lt;P&gt;the data element to which they refer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, you can enter a name in the attributes of the input/output fields. Then, you can also choose&lt;/P&gt;&lt;P&gt;whether the entries from the field should be transferred to the parameter (SET), or whether the input field should be filled with the value from the parameter (GET).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To find out about the names of the parameters assigned to input fields, display the field help for the field (F1), then choose Technical info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also fill a memory area directly using the statement&lt;/P&gt;&lt;P&gt;SET PARAMETER ID '&amp;lt;PAR_ID&amp;gt;' FIELD &amp;lt;var&amp;gt;.&lt;/P&gt;&lt;P&gt;and read it using the statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET PARAMETER ID '&amp;lt;PAR_ID&amp;gt;' FIELD &amp;lt;var&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope this helps, Do reward.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 05:17:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3511094#M844569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T05:17: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/3511095#M844570</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;In simple words Parameter Id is like address for storing a value in SAP memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set parameter id '&amp;lt;parameter id say ADDR1&amp;gt;' field v_var.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now contents of field v_var is stored in SAP memory with address addr1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;get parameter id 'ADDR1' field v_var_target.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now the value in SAP memory with Address &lt;STRONG&gt;ADDR1&lt;/STRONG&gt; is moved into &lt;STRONG&gt;v_var_target&lt;/STRONG&gt; variable..........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : SAP memory gets cleaned off when u logoff..........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;jose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 05:21:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3511095#M844570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T05:21:29Z</dc:date>
    </item>
  </channel>
</rss>

