<?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: Issue with subroutine calling  &amp; Memory Export &amp; Import in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584167#M1756757</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 best solution would be to more your select option definition before the include statement,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program ztest1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_werks for pa0001-werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include ztest2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now your select option is accessible in include ztest2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another option would be to pass your select option as a parameter to the subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kartik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Jul 2013 09:42:42 GMT</pubDate>
    <dc:creator>Kartik2</dc:creator>
    <dc:date>2013-07-17T09:42:42Z</dc:date>
    <item>
      <title>Issue with subroutine calling  &amp; Memory Export &amp; Import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584166#M1756756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I have created a sample code with select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have&amp;nbsp; a include in the program... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This include contains the sub-routines of the main program...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program ztest1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include ztest2.&lt;/P&gt;&lt;P&gt;select-options: s_werks for pa0001-werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;perform start.&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;perform end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;___________________________________-&lt;/P&gt;&lt;P&gt;In the ztest2 Include &lt;/P&gt;&lt;P&gt;form start.&lt;/P&gt;&lt;P&gt;write: 'sample end'.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form end.&lt;/P&gt;&lt;P&gt;if pa0001-werks in S_WERKS.&lt;/P&gt;&lt;P&gt;WRITE: 'SELECT-OPTIONS is calling'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;write: 'Select-options is not calling'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here report is trigerring error S_WERKS is not available.....................................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I modified the code to export import ...But no luck still...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program ztest1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include ztest2.&lt;/P&gt;&lt;P&gt;select-options: s_werks for pa0001-werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;Export S_WERKS to memory id 'SAS'.&lt;/P&gt;&lt;P&gt;perform start.&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;perform end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;___________________________________-&lt;/P&gt;&lt;P&gt;In the ztest2 Include &lt;/P&gt;&lt;P&gt;form start.&lt;/P&gt;&lt;P&gt;write: 'sample end'.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form end.&lt;/P&gt;&lt;P&gt;ranges: s_werks1 for pa0001-werk.s&lt;/P&gt;&lt;P&gt;import S_WERKS1 from memory id 'SAS'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if pa0001-werks in S_WERKS.&lt;/P&gt;&lt;P&gt;WRITE: 'SELECT-OPTIONS is calling'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;write: 'Select-options is not calling'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I can see no export import happening...&lt;/P&gt;&lt;P&gt;Please throw some light if any idea???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 09:34:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584166#M1756756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-17T09:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with subroutine calling  &amp; Memory Export &amp; Import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584167#M1756757</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 best solution would be to more your select option definition before the include statement,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program ztest1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_werks for pa0001-werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include ztest2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now your select option is accessible in include ztest2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another option would be to pass your select option as a parameter to the subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kartik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 09:42:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584167#M1756757</guid>
      <dc:creator>Kartik2</dc:creator>
      <dc:date>2013-07-17T09:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with subroutine calling  &amp; Memory Export &amp; Import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584168#M1756758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Place your select options above the include statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 09:48:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584168#M1756758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-17T09:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with subroutine calling  &amp; Memory Export &amp; Import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584169#M1756759</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;program ztest1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: pa0001.&lt;/P&gt;&lt;P&gt;select-options: s_werks for pa0001-werks.&lt;/P&gt;&lt;P&gt;Include ztest2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;perform start.&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;perform end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;___________________________________-&lt;/P&gt;&lt;P&gt;In the ztest2 Include &lt;/P&gt;&lt;P&gt;form start.&lt;/P&gt;&lt;P&gt;write: 'sample end'.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form end.&lt;/P&gt;&lt;P&gt;if pa0001-werks in S_WERKS.&lt;/P&gt;&lt;P&gt;WRITE: 'SELECT-OPTIONS is calling'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;write: 'Select-options is not calling'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Place select-option before include and add tables : pa0001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Azhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 10:00:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584169#M1756759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-17T10:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with subroutine calling  &amp; Memory Export &amp; Import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584170#M1756760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saslove,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program ztest1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008000;"&gt;&lt;STRONG&gt;select-options: s_werks for pa0001-werks.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include ztest2.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;select-options: s_werks for pa0001-werks.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;perform start.&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;perform end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;___________________________________-&lt;/P&gt;&lt;P&gt;In the ztest2 Include &lt;/P&gt;&lt;P&gt;form start.&lt;/P&gt;&lt;P&gt;write: 'sample end'.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form end.&lt;/P&gt;&lt;P&gt;if pa0001-werks in S_WERKS.&lt;/P&gt;&lt;P&gt;WRITE: 'SELECT-OPTIONS is calling'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;write: 'Select-options is not calling'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here report is trigerring error S_WERKS is not available.....................................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I modified the code to export import ...But no luck still...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program ztest1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #008000;"&gt;select-options: s_werks for pa0001-werks.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; " Make change like this&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include ztest2.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;select-options: s_werks for pa0001-werks.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;Export S_WERKS to memory id 'SAS'.&lt;/P&gt;&lt;P&gt;perform start.&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;perform end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;___________________________________-&lt;/P&gt;&lt;P&gt;In the ztest2 Include &lt;/P&gt;&lt;P&gt;form start.&lt;/P&gt;&lt;P&gt;write: 'sample end'.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form end.&lt;/P&gt;&lt;P&gt;ranges: s_werks1 for pa0001-werk.s&lt;/P&gt;&lt;P&gt;import S_WERKS1 from memory id 'SAS'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if pa0001-werks in S_WERKS.&lt;/P&gt;&lt;P&gt;WRITE: 'SELECT-OPTIONS is calling'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;write: 'Select-options is not calling'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 10:03:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584170#M1756760</guid>
      <dc:creator>former_member209120</dc:creator>
      <dc:date>2013-07-17T10:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with subroutine calling  &amp; Memory Export &amp; Import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584171#M1756761</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 MEMORY ID addition expects flat character type data object. Here the ranges act as more of a table with the usual fields of SIGN, OPTION, HIGH, LOW as row fields. Try INTERNAL TABLE alternative of the IMPORT.. EXPORT keywords. Check the link below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/abapdocu_702/en/abapexport_data_cluster_medium.htm" title="http://help.sap.com/abapdocu_702/en/abapexport_data_cluster_medium.htm"&gt;http://help.sap.com/abapdocu_702/en/abapexport_data_cluster_medium.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Arindam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 10:04:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584171#M1756761</guid>
      <dc:creator>arindam_m</dc:creator>
      <dc:date>2013-07-17T10:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with subroutine calling  &amp; Memory Export &amp; Import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584172#M1756762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Put&amp;nbsp; Export statement -&amp;nbsp; after end-of-selection&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; Put SELECT-OPION before INCLUDE statement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 10:10:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584172#M1756762</guid>
      <dc:creator>venkateswaran_k</dc:creator>
      <dc:date>2013-07-17T10:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with subroutine calling  &amp; Memory Export &amp; Import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584173#M1756763</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 line, where you include ZTEST2 is the location, where the FORM routines are positioned in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore S_WERKS is undefined in the form routines. You have to place the definition of select-option&amp;nbsp; S_WERKS before the include, where you access this definition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You don't need to EXPORT or IMPORT it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's the same issue as in the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;report xyz.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;write field1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data: field1 type c.&lt;/STRONG&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;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 10:12:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584173#M1756763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-17T10:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with subroutine calling  &amp; Memory Export &amp; Import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584174#M1756764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BTW: Please check, if you need a &lt;STRONG&gt;&lt;EM&gt;report&lt;/EM&gt;&lt;/STRONG&gt; or a &lt;EM&gt;&lt;STRONG&gt;program&lt;/STRONG&gt;&lt;/EM&gt; line in your code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 10:15:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584174#M1756764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-17T10:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with subroutine calling  &amp; Memory Export &amp; Import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584175#M1756765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saslove,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ABAP compiler will check the Include first as it is the first statement in the Program.While compiling it encounters S_WERKS which is not declared prior to it. So you have to place SELECT-OPTIONS statement first and then INCLUDE statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 10:19:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584175#M1756765</guid>
      <dc:creator>NagaPrakashT</dc:creator>
      <dc:date>2013-07-17T10:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with subroutine calling  &amp; Memory Export &amp; Import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584176#M1756766</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 declare the TABLES&lt;SPAN style="color: #333333; font-size: 11.818181991577148px; background-color: #ffffff;"&gt;: pa0001.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 08:06:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-subroutine-calling-memory-export-import/m-p/9584176#M1756766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-23T08:06:28Z</dc:date>
    </item>
  </channel>
</rss>

