<?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: internal table value pass with set/get in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-value-pass-with-set-get/m-p/4349828#M1035922</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know it ios possible..but can u please explain me with simple coding, how to do it...&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Aug 2008 07:20:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-28T07:20:34Z</dc:date>
    <item>
      <title>internal table value pass with set/get</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-value-pass-with-set-get/m-p/4349824#M1035918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can we pass internal table from one transaction to another using set/get parameter..if so then how&lt;/P&gt;&lt;P&gt;or any other option is there..can any body suggest me with simple&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 06:35:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-value-pass-with-set-get/m-p/4349824#M1035918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T06:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: internal table value pass with set/get</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-value-pass-with-set-get/m-p/4349825#M1035919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can do it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 06:42:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-value-pass-with-set-get/m-p/4349825#M1035919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T06:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: internal table value pass with set/get</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-value-pass-with-set-get/m-p/4349826#M1035920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar .,&lt;/P&gt;&lt;P&gt; You can Pass table pl Find Below sample code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT report1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA text(10) TYPE c. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 1100. &lt;/P&gt;&lt;P&gt;  SELECT-OPTIONS: selcrit1 FOR text, &lt;/P&gt;&lt;P&gt;                  selcrit2 FOR text. &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 1100. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calling program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT report2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: text(10)   TYPE c, &lt;/P&gt;&lt;P&gt;      rspar_tab  TYPE TABLE OF rsparams, &lt;/P&gt;&lt;P&gt;      rspar_line LIKE LINE OF rspar_tab, &lt;/P&gt;&lt;P&gt;      range_tab  LIKE RANGE OF text, &lt;/P&gt;&lt;P&gt;      range_line LIKE LINE OF range_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rspar_line-selname = 'SELCRIT1'. &lt;/P&gt;&lt;P&gt;rspar_line-kind    = 'S'. &lt;/P&gt;&lt;P&gt;rspar_line-sign    = 'I'. &lt;/P&gt;&lt;P&gt;rspar_line-option  = 'EQ'. &lt;/P&gt;&lt;P&gt;rspar_line-low     = 'ABAP'. &lt;/P&gt;&lt;P&gt;APPEND rspar_line TO rspar_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;range_line-sign   = 'E'. &lt;/P&gt;&lt;P&gt;range_line-option = 'EQ'. &lt;/P&gt;&lt;P&gt;range_line-low    = 'H'. &lt;/P&gt;&lt;P&gt;APPEND range_line TO range_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;range_line-sign   = 'E'. &lt;/P&gt;&lt;P&gt;range_line-option = 'EQ'. &lt;/P&gt;&lt;P&gt;range_line-low    = 'K'. &lt;/P&gt;&lt;P&gt;APPEND range_line TO range_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT report1 USING SELECTION-SCREEN '1100' &lt;/P&gt;&lt;P&gt;               WITH SELECTION-TABLE rspar_tab &lt;/P&gt;&lt;P&gt;               WITH selcrit2 BETWEEN 'H' AND 'K' &lt;/P&gt;&lt;P&gt;               WITH selcrit2 IN range_tab &lt;/P&gt;&lt;P&gt;               AND RETURN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="5" type="ul"&gt;&lt;P&gt;Here RSPAR is the Internal table used to Pass table contents .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt; Sreenivas Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 06:43:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-value-pass-with-set-get/m-p/4349826#M1035920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T06:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: internal table value pass with set/get</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-value-pass-with-set-get/m-p/4349827#M1035921</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;GET &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET PARAMETER ID key FIELD f. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Transfers the value stored under the key pid from the global user-related SAP memory memory to the field f . &lt;/P&gt;&lt;P&gt;The key pid must consist of three characters. For an overview of the keys (parameters) used, refer to the SAP system description or the appropriate function in the ABAP/4 Development Workbench. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The return code value is set as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-SUBRC = 0 A value was read from SAP memory. &lt;/P&gt;&lt;P&gt;SY_SUBRC = 4 No value was found in SAP memory under the specified key &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes&lt;/P&gt;&lt;P&gt;The global user-related SAP memory is available to each user for the entire duration of a terminal session. For this reason, set values are retained when you leave a program. &lt;/P&gt;&lt;P&gt;The SAP memory should not be used for intermediate storage, since a user's parallel sessions use the same global memory. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;Read the program name from SAP memory: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : REPID(8).&lt;/P&gt;&lt;P&gt;GET PARAMETER ID 'RID' FIELD REPID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID pid FIELD f. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Writes the contents of the field f to the global SAP memory under the key pid . If the key already contains a value, it is overwritten. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The key pid must consist of three characters. You can find a list of the keys (parameters) used in the SAP system description or in the ABAP/4 Development Workbench. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes&lt;/P&gt;&lt;P&gt;The global SAP memory remains available to the user during the entire terminal session. This means that set values are retained when you leave a program. &lt;/P&gt;&lt;P&gt;You should not use the SAP memory for temporary storage of values because other modes use the same global memory. &lt;/P&gt;&lt;P&gt;If you need a new key (parameter), you can create this in the ABAP/4 Development Workbench. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: REPID(8) VALUE 'RFSCHU01'.&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'RID' FIELD REPID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sets the program name, e.g. for transfer to another program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes&lt;/P&gt;&lt;P&gt;Runtime errors &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET_PARAMETER_ID_TOO_LONG : Key longer than 3 characters. &lt;/P&gt;&lt;P&gt;SET_PARAMETER_ID_WRONG_TYPE : Key neither type C nor type N. &lt;/P&gt;&lt;P&gt;SET_PARAMETER_VALUE_TOO_LONG : Value longer than 250 characters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like above ther will syntax for internal table .Use that&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 06:43:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-value-pass-with-set-get/m-p/4349827#M1035921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T06:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: internal table value pass with set/get</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-value-pass-with-set-get/m-p/4349828#M1035922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know it ios possible..but can u please explain me with simple coding, how to do it...&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 07:20:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-value-pass-with-set-get/m-p/4349828#M1035922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T07:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: internal table value pass with set/get</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-value-pass-with-set-get/m-p/4349829#M1035923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Instead of using SET/GET use EXPORT/IMPORT to transfer internal table. &lt;/P&gt;&lt;P&gt;Check this link, in this link I have posted two sample programs From program 1 I'm passing one internal table to another program by using EXPORT. and fetching that internal table in program 2 by using IMPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="6049607"&gt;&lt;/A&gt;&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;Abhijeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 07:24:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-value-pass-with-set-get/m-p/4349829#M1035923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T07:24:40Z</dc:date>
    </item>
  </channel>
</rss>

