<?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 Regarding Call Transaction for FTXP tcode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-call-transaction-for-ftxp-tcode/m-p/3184834#M758333</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     I have a problem while loading some 50000 data to transaction FTXP. I am using Call transaction methodology in my code with options&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;wa_opt-dismode  = 'N'.&lt;/P&gt;&lt;P&gt;wa_opt-updmode  = 'S'.&lt;/P&gt;&lt;P&gt;wa_opt-defsize  = 'X'.&lt;/P&gt;&lt;P&gt;wa_opt-nobinpt  = 'X'.&lt;/P&gt;&lt;P&gt;wa_opt-nobiend  = 'X'.&lt;/P&gt;&lt;P&gt;wa_opt-racommit = 'X'.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am inserting the bdcdata for each lineitem into it_bdcdata and outside the loop i am using the &lt;/P&gt;&lt;P&gt;CALL Transaction 'FTXP' using it_bdcdata &lt;/P&gt;&lt;P&gt;             options wa_opt messages into it_msgtab.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;when scheduling the code i am getting a dump with 'MEMORY_NO_MORE_PAGING'. Can anyone tell me how to solve this issue? is there any problem in setting the RACOMMIT to 'X' in the options. is there any BAPI for this tcode(Maintain TAX code)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Dec 2007 11:06:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-21T11:06:08Z</dc:date>
    <item>
      <title>Regarding Call Transaction for FTXP tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-call-transaction-for-ftxp-tcode/m-p/3184834#M758333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     I have a problem while loading some 50000 data to transaction FTXP. I am using Call transaction methodology in my code with options&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;wa_opt-dismode  = 'N'.&lt;/P&gt;&lt;P&gt;wa_opt-updmode  = 'S'.&lt;/P&gt;&lt;P&gt;wa_opt-defsize  = 'X'.&lt;/P&gt;&lt;P&gt;wa_opt-nobinpt  = 'X'.&lt;/P&gt;&lt;P&gt;wa_opt-nobiend  = 'X'.&lt;/P&gt;&lt;P&gt;wa_opt-racommit = 'X'.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am inserting the bdcdata for each lineitem into it_bdcdata and outside the loop i am using the &lt;/P&gt;&lt;P&gt;CALL Transaction 'FTXP' using it_bdcdata &lt;/P&gt;&lt;P&gt;             options wa_opt messages into it_msgtab.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;when scheduling the code i am getting a dump with 'MEMORY_NO_MORE_PAGING'. Can anyone tell me how to solve this issue? is there any problem in setting the RACOMMIT to 'X' in the options. is there any BAPI for this tcode(Maintain TAX code)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 11:06:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-call-transaction-for-ftxp-tcode/m-p/3184834#M758333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-21T11:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Call Transaction for FTXP tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-call-transaction-for-ftxp-tcode/m-p/3184835#M758334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This dump means that you ran out of memory, you can't pass all 50000 items to the transaction at once because you don't have enough memory on your system. Try to do it in packages. Call the transaction e.g. five times with 10000 each. If you are still running out of memory reduce the package size until it runs through.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 13:40:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-call-transaction-for-ftxp-tcode/m-p/3184835#M758334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-21T13:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Call Transaction for FTXP tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-call-transaction-for-ftxp-tcode/m-p/3184836#M758335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;split data into multiple records and pass a set of records at a time to call  transaction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 14:38:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-call-transaction-for-ftxp-tcode/m-p/3184836#M758335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-21T14:38:43Z</dc:date>
    </item>
  </channel>
</rss>

