<?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: select-options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057206#M424796</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is used to retrieve last field value,  each time you call particular pgm .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg if you run pgm with below code , on selection screen you will get the&lt;/P&gt;&lt;P&gt;name of the last program ran ..try it &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Mar 2007 04:46:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-12T04:46:52Z</dc:date>
    <item>
      <title>select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057201#M424791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;           can anyone tell me what is the use of &amp;lt;b&amp;gt;memory id&amp;lt;/b&amp;gt; in select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g -- SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please reply its urgent.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 04:37:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057201#M424791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T04:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057202#M424792</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;1. When u use memory id, make sure of the&lt;/P&gt;&lt;P&gt;following points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) The memory id is SAME as the variable name&lt;/P&gt;&lt;P&gt;b) Memory id should be in CAPITAL&lt;/P&gt;&lt;P&gt;c) When u want to import,&lt;/P&gt;&lt;P&gt;the variable name should be same as original one,&lt;/P&gt;&lt;P&gt;and should be declared in the same fashion only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*-------- for Z1
report zmem_sha.
DATA : PERNR LIKE P0001-PERNR.
PERNR = '00004556'.
EXPORT PERNR TO MEMORY ID 'PERNR'.
CALL TRANSACTION 'ZTR01'.

*-------- For Z2 (having tcode ZTR01)
report abc.
DATA : PERNR LIKE P0001-PERNR.
IMPORT PERNR FROM MEMORY ID 'PERNR'.
BREAK-POINT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 04:43:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057202#M424792</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2007-03-12T04:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057203#M424793</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;If u assign a memory id for a select-option, that select-option will get the value stored in that select memory id when the program is executed.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To export a value to a memory id(SAP Memory) use the statement:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SET PARAMETER ID.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;P&gt;Suresh......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 04:44:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057203#M424793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T04:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057204#M424794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here s_mblnr-low is associated with the sap memory id 001. so the value it will set and get from the last value in memory id .  in a easy way when you are running a report after report display if you come back the select-option will be blank but if you are using memory id for the select option and running the report and come back it will contain the data that you have entered last in that select option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the data is comming from the memory id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 04:44:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057204#M424794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T04:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057205#M424795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Assigns the memory ID PID to the parameter. When selection screen appears, the input field contains the last value entered by the user in a filed with memory ID PID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please allot the points if it's usefull.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 04:44:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057205#M424795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T04:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057206#M424796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is used to retrieve last field value,  each time you call particular pgm .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg if you run pgm with below code , on selection screen you will get the&lt;/P&gt;&lt;P&gt;name of the last program ran ..try it &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 04:46:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057206#M424796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T04:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057207#M424797</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;The use of memory-id is,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input fields on screens can be linked with parameters in the SAP memory, which allows you to preassign values to the input fields on initial screens. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With general screens ( without memory-id ), the linking takes place during the definition of the screen using the Screen Painter tool. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;jus go thru' this simple program...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZTESTING                             .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS test(16) TYPE c MEMORY ID rid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE TEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Senthil kumar...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 04:49:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057207#M424797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T04:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057208#M424798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;p347633,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  When you give the memory id ,it will assign that screen with given ID no. to screen group in memory.when you want dynamic screen validations you can use this id and do the cahnges on scree.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex : you have 2 radio button "A"  and "B".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Input fields   " 1" and  " 2"  on selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rerquirement is, when you click radio button "A"  only input field "1" has to display on selection screen. Input field "2"  should disable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; when you click radio button "B"  only input field "2" has to display on selection screen. Input field "1"  should disable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. mark if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 04:53:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057208#M424798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T04:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057209#M424799</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;The statement:&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;links the field s_mblnr with the parameter 001. Any value stored in the memory id 001 is reflected in the select options input field. This value is stored in the SAP global memory hence, it is available to a user during the entire duration of a terminal session. This allows you to preassign values to the input fields on initial screens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Please award points if found useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 04:57:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2057209#M424799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T04:57:00Z</dc:date>
    </item>
  </channel>
</rss>

