<?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 BAPI_PRODORDCONF_CREATE_HDR in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-prodordconf-create-hdr/m-p/1298928#M157742</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why is this function not failed when I am locking one of the material ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;It's a contradiction&amp;lt;/b&amp;gt;, when I did prod. order confirmation using CO15. CO15 failed the confirmation when one of the components is locked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What's wrong with this function ? Please help me...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;Sandi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 May 2006 05:55:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-22T05:55:42Z</dc:date>
    <item>
      <title>BAPI_PRODORDCONF_CREATE_HDR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-prodordconf-create-hdr/m-p/1298928#M157742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why is this function not failed when I am locking one of the material ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;It's a contradiction&amp;lt;/b&amp;gt;, when I did prod. order confirmation using CO15. CO15 failed the confirmation when one of the components is locked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What's wrong with this function ? Please help me...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;Sandi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 May 2006 05:55:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-prodordconf-create-hdr/m-p/1298928#M157742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-22T05:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PRODORDCONF_CREATE_HDR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-prodordconf-create-hdr/m-p/1298929#M157743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Sandi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : CO_TAB LIKE BAPI_PP_HDRLEVEL OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;GM_TAB LIKE BAPI2017_GM_ITEM_CREATE OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;LI_TAB LIKE BAPI_LINK_CONF_GOODSMOV OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;RE_TAB LIKE BAPI_CORU_RETURN OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;E_RETURN LIKE  BAPIRET1 STRUCTURE  BAPIRET1,&lt;/P&gt;&lt;P&gt;I_FLG_REFRESH LIKE  RC27X-FLG_SEL OPTIONAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_PRODORDCONF_CREATE_HDR'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              POST_WRONG_ENTRIES = I_FLG_POST_WRONG_ENTRIES&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;            TESTRUN            =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;              RETURN             = E_RETURN&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;              ATHDRLEVELS        = CO_TAB&lt;/P&gt;&lt;P&gt;              GOODSMOVEMENTS     = GM_TAB&lt;/P&gt;&lt;P&gt;              LINK_CONF_GOODSMOV = LI_TAB&lt;/P&gt;&lt;P&gt;              DETAIL_RETURN      = RE_TAB.&lt;/P&gt;&lt;P&gt;    IF NOT RE_TAB[] IS INITIAL.&lt;/P&gt;&lt;P&gt;      READ TABLE RE_TAB WITH KEY TYPE = 'E'.&lt;/P&gt;&lt;P&gt;      IF SY-SUBRC IS INITIAL.&lt;/P&gt;&lt;P&gt;        E_DETAIL_RETURN = RE_TAB.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        READ TABLE RE_TAB WITH KEY TYPE = 'I'.&lt;/P&gt;&lt;P&gt;        E_DETAIL_RETURN = RE_TAB.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  posting!&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    COMMIT WORK AND WAIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Sreeni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 May 2006 06:01:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-prodordconf-create-hdr/m-p/1298929#M157743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-22T06:01:04Z</dc:date>
    </item>
  </channel>
</rss>

