<?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: Submit with internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625846#M279628</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please refer to the below post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Eswar Rao  Boddeti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Sep 2006 08:54:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-15T08:54:30Z</dc:date>
    <item>
      <title>Submit with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625840#M279622</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 have a function module with a internal table. This internal table has 30 fields and i have to it to a program vis SUBMIT, furthemore this program will be executed inside a job. Im trying to pass tha internal table with export and import but it doesn´t go. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Anybody can help me???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 08:29:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625840#M279622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T08:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625841#M279623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use IMPORT/EXPORT in the following manner :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT REP1 NO STANDARD PAGE HEADING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ITAB TYPE I OCCURS 10,&lt;/P&gt;&lt;P&gt;      NUM TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT REP2 AND RETURN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT ITAB FROM MEMORY ID 'HK'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB INTO NUM.&lt;/P&gt;&lt;P&gt;  WRITE / NUM.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;WRITE 'Report 1'.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 08:33:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625841#M279623</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T08:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625842#M279624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This program calls the following executable program (report):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT REP2 NO STANDARD PAGE HEADING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: NUMBER TYPE I,&lt;/P&gt;&lt;P&gt;      ITAB TYPE I OCCURS 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'MYBACK'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 5 TIMES.&lt;/P&gt;&lt;P&gt;  NUMBER = SY-INDEX.&lt;/P&gt;&lt;P&gt;  APPEND NUMBER TO ITAB.&lt;/P&gt;&lt;P&gt;  WRITE / NUMBER.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;WRITE 'Report 2'.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;  CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN 'MBCK'.&lt;/P&gt;&lt;P&gt;      EXPORT ITAB TO MEMORY ID 'HK'.&lt;/P&gt;&lt;P&gt;      LEAVE.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 08:34:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625842#M279624</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T08:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625843#M279625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jorge&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Will try to answer basing on what i can understand &lt;/P&gt;&lt;P&gt;from you query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I guess you have an internal table in your FM with &lt;/P&gt;&lt;P&gt;some data. You are submitting a program within the FM&lt;/P&gt;&lt;P&gt;and you need the data in the internal table to be used&lt;/P&gt;&lt;P&gt;in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   If my understanding is right, you can do it via&lt;/P&gt;&lt;P&gt;EXPORT/IMPORT statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   EXPORT &amp;lt;int_tab&amp;gt; TO MEMORY ID 'MID'. --&amp;gt; In FM.&lt;/P&gt;&lt;P&gt;   IMPORT &amp;lt;int_tab&amp;gt; FROM MEMORY ID 'MID". --&amp;gt; In Program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Note that the internal table declaration should be &lt;/P&gt;&lt;P&gt;the same in FM and Program like name of the internal &lt;/P&gt;&lt;P&gt;table, all field names, data type everything should be&lt;/P&gt;&lt;P&gt;the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Check if you are handling the same way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 08:37:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625843#M279625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T08:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625844#M279626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi jorge,&lt;/P&gt;&lt;P&gt;&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;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 08:40:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625844#M279626</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T08:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625845#M279627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, all the syntax is correctly, the IMPORT statment is correctly but the IMPORT dosen´t go.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    I don´t know why is the reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 08:51:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625845#M279627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T08:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625846#M279628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please refer to the below post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Eswar Rao  Boddeti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 08:54:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625846#M279628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T08:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625847#M279629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post your code with the declarations, exporting, &lt;/P&gt;&lt;P&gt;importing and SUBMIT statements. Hope that can help to&lt;/P&gt;&lt;P&gt;propose a better solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 08:54:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625847#M279629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T08:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625848#M279630</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 think When you are executing the data from the program inside the background job the export and import will not work with memory as they are session based. Rather you need to export it to database INDX and import it from Database INDX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 08:58:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625848#M279630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T08:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625849#M279631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I'have tried with this option and it's OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Thank you very much!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 09:27:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/1625849#M279631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T09:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/13900280#M2031488</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;Can u explain how you did that.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2024 02:44:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/13900280#M2031488</guid>
      <dc:creator>kaviarasan</dc:creator>
      <dc:date>2024-10-16T02:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/13900547#M2031516</link>
      <description>&lt;P&gt;'Former User' are,&amp;nbsp;as their name implies, no longuer active.&lt;/P&gt;&lt;P&gt;Better ask your own question or perform some search.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;INDX is a database table, a data cluster, read&amp;nbsp;&lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/abendata_cluster.htm" target="_self"&gt;Abap online documentation on it&lt;/A&gt;&amp;nbsp;(used in &lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/abapexport_data_cluster.htm" target="_self"&gt;EXPORT&lt;/A&gt;/&lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/abapimport_data_cluster.htm" target="_self"&gt;IMPORT&lt;/A&gt; statements)&lt;/LI&gt;&lt;LI&gt;You could also use many kinds of data (An internal table for example) in a parameter as soon it's defined with&amp;nbsp;&lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/abapparameters_screen.htm#!ABAP_ADDITION_2@2@" target="_self"&gt;NO-DISPLAY&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Wed, 16 Oct 2024 07:12:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/13900547#M2031516</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2024-10-16T07:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/13901035#M2031526</link>
      <description>&lt;P&gt;Thanks for your valuable&amp;nbsp; concern. Already did some searching; after that, I asked here and now got those answers. Thanks man.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2024 10:02:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-internal-table/m-p/13901035#M2031526</guid>
      <dc:creator>kaviarasan</dc:creator>
      <dc:date>2024-10-16T10:02:53Z</dc:date>
    </item>
  </channel>
</rss>

