<?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: Transaction CO13 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-co13/m-p/2257750#M489077</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why don't you go in all screen mode to check and see what actually is the error? and then post the error, i can help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 May 2007 21:49:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-17T21:49:51Z</dc:date>
    <item>
      <title>Transaction CO13</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-co13/m-p/2257749#M489076</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 am using BDC on Transaction CO13 in the interface for the reverse /cancel confirmation. When only one entry is coming for the Order in the file then it works fine i.e material document is created, but when multiple entries comes in the file then only for the last entry it creates the Material document. For the others it either show Incorrect GM or Int. Goods Mvts, But call transaction(No screen / Synchronous mode) gives success message for all the line item. In AFRU Table also  the revarsal flags get cheked for all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Please tell me what could be the reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Shweta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 21:46:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-co13/m-p/2257749#M489076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T21:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction CO13</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-co13/m-p/2257750#M489077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why don't you go in all screen mode to check and see what actually is the error? and then post the error, i can help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 21:49:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-co13/m-p/2257750#M489077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T21:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction CO13</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-co13/m-p/2257751#M489078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you use BAPI FM : BAPI_PRODORDCONF_CANCEL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 21:52:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-co13/m-p/2257751#M489078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T21:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction CO13</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-co13/m-p/2257752#M489079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I run the interface in All screen mode then it works fine. I mean it creates the material document for all the entries.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 22:21:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-co13/m-p/2257752#M489079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T22:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction CO13</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-co13/m-p/2257753#M489080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First see Production order status :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'STATUS_READ'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              client           = sy-mandt&lt;/P&gt;&lt;P&gt;              objnr            = i_porders-objnr&lt;/P&gt;&lt;P&gt;              only_active      = 'X'&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;              status           = t_jstat&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;              object_not_found = 1&lt;/P&gt;&lt;P&gt;              OTHERS           = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;everything is okay then proceed with Co13 Transaction otherwise do the other validation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 22:22:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-co13/m-p/2257753#M489080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T22:22:47Z</dc:date>
    </item>
  </channel>
</rss>

