<?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: Importing value from memory id in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702380#M1452563</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 you want to get multiple values, then  instead of using parameter ID in the definition use EXPORT and IMPORT statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT so_matnr[] TO MEMORY ID 'MATNR1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT so_matnr[] FROM MEMORY ID 'MATNR1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are various additions of export/import. Please check F1 help for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 06 Mar 2010 16:13:30 GMT</pubDate>
    <dc:creator>vinod_vemuru2</dc:creator>
    <dc:date>2010-03-06T16:13:30Z</dc:date>
    <item>
      <title>Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702374#M1452557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me how to retrieve a value from a memory id as given below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS ableinh FOR eabld-ableinh&lt;/P&gt;&lt;P&gt;               MEMORY ID tae.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me how to retrieve the value from memory id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am writing the following the statement for the above purpose:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import tae from memory to v_ableinh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Mar 2010 09:53:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702374#M1452557</guid>
      <dc:creator>former_member199650</dc:creator>
      <dc:date>2010-03-06T09:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702375#M1452558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi, 
&amp;lt;li&amp;gt;When you give MEMORY &amp;lt;mid&amp;gt; to SELECT-OPTIONS is equivalent to the below statement. 
&lt;PRE&gt;&lt;CODE&gt;
GET PARAMETER ID 'TAE' FIELD ableinh-low.
&lt;/CODE&gt;&lt;/PRE&gt;

&amp;lt;li&amp;gt;The value in the memory id TAE is displayed on SELECT-OPTIONS when this program is called after setting the below one in some other program. 
&lt;PRE&gt;&lt;CODE&gt;
 SET PARAMETER ID 'TAE'  FIELD ableinh-low. 
 CALL TRANSACTION 'XYZ' AND SKIP FIRST SCREEN. 
&lt;/CODE&gt;&lt;/PRE&gt;
&amp;lt;li&amp;gt;Check the link below for reference. 
[http://help.sap.com/saphelp_47x200/helpdata/en/9f/dba6eb35c111d1829f0000e829fbfe/content.htm|http://help.sap.com/saphelp_47x200/helpdata/en/9f/dba6eb35c111d1829f0000e829fbfe/content.htm]
Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Mar 2010 10:07:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702375#M1452558</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2010-03-06T10:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702376#M1452559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply please.&lt;/P&gt;&lt;P&gt;Please guide me with some example that how to use the value of this selection parameter in a different exit which indirectly being called by this program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually when we use t code EL35, we provide the MRUs in the field for MRUs, along with a form for Downloading MROs.&lt;/P&gt;&lt;P&gt;In the form, i want the selected MRUs information from selection screen, but i have not been able to find the information. &lt;/P&gt;&lt;P&gt;The selection parameter for MRU is as follows:&lt;/P&gt;&lt;P&gt;field name: ABLEINH&lt;/P&gt;&lt;P&gt;Parameter Id: TAE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the standard program RELEABL1, it is defined as &lt;/P&gt;&lt;P&gt;SELECT-OPTIONS ableinh FOR eabld-ableinh&lt;/P&gt;&lt;P&gt;               MEMORY ID tae.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me how can i use ableinh in my Z form for Meter Reading Download. As there, if i try to mention this variable, it is not recognizing it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: MP Vashishth on Mar 6, 2010 1:01 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: MP Vashishth on Mar 6, 2010 1:02 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Mar 2010 10:16:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702376#M1452559</guid>
      <dc:creator>former_member199650</dc:creator>
      <dc:date>2010-03-06T10:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702377#M1452560</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 need to use the get parameter ID statement to retreive the values. Data is placed in SAP memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Mar 2010 12:44:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702377#M1452560</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2010-03-06T12:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702378#M1452561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply please.&lt;/P&gt;&lt;P&gt;Now i am able to fetch one value from the parameter id.&lt;/P&gt;&lt;P&gt;But if multiple values are passed in the PARAMETER then, i am able to get only one value there. Please help and guide me, how can i fetch all the values passed in the selection parameter whose parameter id we know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Screen-field for batch input is : EABLD-ABLEINH&lt;/P&gt;&lt;P&gt;field name:                                  ABLEINH&lt;/P&gt;&lt;P&gt;Parameter Id:                              TAE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the standard program RELEABL1, it is defined as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS ableinh FOR eabld-ableinh&lt;/P&gt;&lt;P&gt;MEMORY ID tae.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide.&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: MP Vashishth on Mar 6, 2010 2:16 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: MP Vashishth on Mar 6, 2010 2:17 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Mar 2010 13:01:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702378#M1452561</guid>
      <dc:creator>former_member199650</dc:creator>
      <dc:date>2010-03-06T13:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702379#M1452562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi Vashishth, 
&amp;lt;li&amp;gt;Using SET/GET PARAMETER ID, we can pass only one value . That is for sure. You can't pass multiple values. 
&amp;lt;li&amp;gt;How are you calling &lt;STRONG&gt;RELEABL1&lt;/STRONG&gt; from your Z* program. Are you calling &lt;STRONG&gt;RELEABL1&lt;/STRONG&gt; program using &lt;STRONG&gt;SUBMIT&lt;/STRONG&gt; statement or &lt;STRONG&gt;CALL TRANSACTION&lt;/STRONG&gt; statement ? 

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Mar 2010 13:29:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702379#M1452562</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2010-03-06T13:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702380#M1452563</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 you want to get multiple values, then  instead of using parameter ID in the definition use EXPORT and IMPORT statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT so_matnr[] TO MEMORY ID 'MATNR1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT so_matnr[] FROM MEMORY ID 'MATNR1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are various additions of export/import. Please check F1 help for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Mar 2010 16:13:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702380#M1452563</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2010-03-06T16:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702381#M1452564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     If you would like to exchange Multiple line items of data, better to use EXPORT, IMPORT statements;&lt;/P&gt;&lt;P&gt;Using Export and Import you can exchange a Internal table with  any number of records., through out the memory........&lt;/P&gt;&lt;P&gt;Press F1 on EXPORT statement for exact syntax.........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shravs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Mar 2010 17:19:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702381#M1452564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-06T17:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702382#M1452565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi MP Vashishth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try F1. What do you see?&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Mar 2010 20:07:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702382#M1452565</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2010-03-06T20:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702383#M1452566</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;I want to access the selection parameters values passed through MRU field in transaction code: EL35.&lt;/P&gt;&lt;P&gt;There we provide a form for MRO Download as selection parameter.&lt;/P&gt;&lt;P&gt;I want to find all the selection parameter values passed through field MRU in tcode el35 in my MRO Download program.&lt;/P&gt;&lt;P&gt;In the program it runs for each MRU one by one but i want to know all the values of MRUs passed in the MRU field at one go.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide.&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: MP Vashishth on Mar 8, 2010 12:02 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 04:55:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702383#M1452566</guid>
      <dc:creator>former_member199650</dc:creator>
      <dc:date>2010-03-08T04:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702384#M1452567</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;Thanks for your reply please. &lt;/P&gt;&lt;P&gt;But my Z form is being called by RELEABL1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 11:21:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702384#M1452567</guid>
      <dc:creator>former_member199650</dc:creator>
      <dc:date>2010-03-08T11:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702385#M1452568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi MP,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;field-symbols:
  &amp;lt;ABLEINH&amp;gt; type table.
data:
  lt_r_ABLEINH type range of ABLEINH.
ASSIGN '('RELEABL1')ABLEINH[]' TO &amp;lt;ABLEINH&amp;gt;.
 lt_r_ABLEINH = &amp;lt;ABLEINH&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; lt_r_ABLEINH is the selection-screen range of Meter Reading Units.&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 11:37:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702385#M1452568</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2010-03-08T11:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702386#M1452569</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;Thanks for your reply please.&lt;/P&gt;&lt;P&gt;But i am getting the following error message in my program  'RELEABL1 ')ABLEINH[]'" is not expected" and "After "'('", there must be a space or equivalent character (":", ",","&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me should i need to include the RELEABL1 program in my Z Program to access these values if yes then please guide me how to do it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: MP Vashishth on Mar 8, 2010 1:43 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: MP Vashishth on Mar 8, 2010 1:44 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: MP Vashishth on Mar 8, 2010 2:14 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: MP Vashishth on Mar 8, 2010 2:51 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: MP Vashishth on Mar 8, 2010 3:44 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 12:00:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702386#M1452569</guid>
      <dc:creator>former_member199650</dc:creator>
      <dc:date>2010-03-08T12:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702387#M1452570</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;Please check the type of 'RELEABL1' like I guess it may type range .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then you have to convert the value you are getting through memory to the type of parameter RELEABL1' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also think you are getting the value from memory is in the format of Select options .i.e &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;low,high ,value ,sign ,once you check this your problem will get solved.&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;&lt;/P&gt;&lt;P&gt;Kiran Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 15:45:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702387#M1452570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-08T15:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702388#M1452571</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;Please check the type of 'RELEABL1' like I guess it may type range .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then you have to convert the value you are getting through memory to the type of parameter RELEABL1' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also think you are getting the value from memory is in the format of Select options .i.e &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;low,high ,value ,sign ,once you check this your problem will get solved.&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;&lt;/P&gt;&lt;P&gt;Kiran Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 15:46:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702388#M1452571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-08T15:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702389#M1452572</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;sorry, my fault. I was confused:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;field-symbols:
  &amp;lt;ABLEINH&amp;gt; type any.
data:
  lt_r_ABLEINH type range of ABLEINH.
ASSIGN ('(RELEABL1)ABLEINH[]') TO &amp;lt;ABLEINH&amp;gt;.
 lt_r_ABLEINH = &amp;lt;ABLEINH&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is an undocumented form of dynamic ASSIGN. There was documentation in earlier releases stating that you should not use it because it can be changed incompatibly by SAP at any time. That was more than 10 years ago.&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 17:12:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702389#M1452572</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2010-03-08T17:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Importing value from memory id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702390#M1452573</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;Thanks for your reply please.&lt;/P&gt;&lt;P&gt;Many thanks to you and everybody whoever give time to help me.&lt;/P&gt;&lt;P&gt;Thanks to everybody.&lt;/P&gt;&lt;P&gt;The goal is acheived. All your suggestions are highly appreciated.                                                                                &lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;MP Vashishth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: MP Vashishth on Mar 9, 2010 6:13 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 04:57:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/importing-value-from-memory-id/m-p/6702390#M1452573</guid>
      <dc:creator>former_member199650</dc:creator>
      <dc:date>2010-03-09T04:57:24Z</dc:date>
    </item>
  </channel>
</rss>

