<?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: How to create a parameter id on screen element in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117370#M443348</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   1st get the data element for that screen element. Then go to se11. Put that Data element. Now click on Further Characterstics tabs. There u can assign the Parameter ID.Any Name u can give there.&lt;/P&gt;&lt;P&gt;Then in the screen u have to check the boxes for Set Parameter and Get parameter. Then It will wrk.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Apr 2007 07:26:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-04T07:26:40Z</dc:date>
    <item>
      <title>How to create a parameter id on screen element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117367#M443345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to create a parameter id on screen element&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply urgent&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 07:14:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117367#M443345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T07:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a parameter id on screen element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117368#M443346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parametere Id is the one which holds the memory for the particular field. when we need to pass the the field from one screen to another use the parameter Id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The SAP Memory is a user-specific memory area of the application server, which is accessed by all main sessions of a user session at once. ABAP programs have access to SPA/GPA parameters stored in the SAP Memory (also called SET/GET parameters). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg. Of  how to use Set parameter&lt;/P&gt;&lt;P&gt;you can give value of variable (dobj) to parameter ID 'pid'. This will store value in SAP memory&lt;/P&gt;&lt;P&gt;SET PARAMETER ID pid FIELD dobj. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you want to use that value stored in SAP memory&lt;/P&gt;&lt;P&gt;you can use GET parameter.&lt;/P&gt;&lt;P&gt;GET PARAMETER ID pid FIELD dobj. &lt;/P&gt;&lt;P&gt;&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;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;Check this link.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/f5/6a853c61c5140ee10000000a11405a/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/f5/6a853c61c5140ee10000000a11405a/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this resolves your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 07:16:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117368#M443346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T07:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a parameter id on screen element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117369#M443347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Take the Paramter ID of that screen field from the DATA ELEMENT of that field.&lt;/P&gt;&lt;P&gt;from SE11 enter field name in FURTHER CHARACTERISTICS tab you will find it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 07:16:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117369#M443347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T07:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a parameter id on screen element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117370#M443348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   1st get the data element for that screen element. Then go to se11. Put that Data element. Now click on Further Characterstics tabs. There u can assign the Parameter ID.Any Name u can give there.&lt;/P&gt;&lt;P&gt;Then in the screen u have to check the boxes for Set Parameter and Get parameter. Then It will wrk.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 07:26:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117370#M443348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T07:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a parameter id on screen element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117371#M443349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   1st get the data element for that screen element. Then go to se11. Put that Data element. Now click on Further Characterstics tabs. There u can assign the Parameter ID.Any Name u can give there.&lt;/P&gt;&lt;P&gt;Then in the screen u have to check the boxes for Set Parameter and Get parameter. Then It will wrk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dinesh&lt;/P&gt;&lt;P&gt;Pls give the pnt for usefull ans.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 07:27:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117371#M443349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T07:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a parameter id on screen element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117372#M443350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   1st get the data element for that screen element. Then go to se11. Put that Data element. Now click on Further Characterstics tabs. There u can assign the Parameter ID.Any Name u can give there.&lt;/P&gt;&lt;P&gt;Then in the screen u have to check the boxes for Set Parameter and Get parameter. Then It will wrk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dinesh&lt;/P&gt;&lt;P&gt;Pls give the pnt for usefull ans.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 07:28:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117372#M443350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T07:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a parameter id on screen element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117373#M443351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   1st get the data element for that screen element. Then go to se11. Put that Data element. Now click on Further Characterstics tabs. There u can assign the Parameter ID.Any Name u can give there.&lt;/P&gt;&lt;P&gt;Then in the screen u have to check the boxes for Set Parameter and Get parameter. Then It will wrk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dinesh&lt;/P&gt;&lt;P&gt;Pls give the pnt for usefull ans.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 07:29:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117373#M443351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T07:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a parameter id on screen element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117374#M443352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SET PARAMETER ID pid FIELD dobj. &lt;/P&gt;&lt;P&gt;Maintain the PID at DataElement level. &lt;/P&gt;&lt;P&gt;In a program, SPA/GPA parameters can only be created or assigned values if a PID name exists for them in the table TPARA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 07:39:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-parameter-id-on-screen-element/m-p/2117374#M443352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T07:39:51Z</dc:date>
    </item>
  </channel>
</rss>

