<?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: BAPI for Order creation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-order-creation/m-p/3417534#M820786</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you absolutely need BAPI function module? If not then there is a funciton modlue :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'ALM_ME_ORDER_CREATE'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            order_header   = g_order_header&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            e_order_header = g_order_header&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            order_partner  = i_ordpartner&lt;/P&gt;&lt;P&gt;            return         = lt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all errors will be stored in lt_return. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Check for fatal errors&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'ALM_ME_CHECK_RETURN_TABLE'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            return          = lt_return&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            error_in_return = 1&lt;/P&gt;&lt;P&gt;            OTHERS          = 2.&lt;/P&gt;&lt;P&gt;if sy-subrc is zero then,  post the order using the funciton module:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  If no errors then post&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL FUNCTION 'CO_ZV_ORDER_POST'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              commit_flag        = 'X'&lt;/P&gt;&lt;P&gt;              ext_flg                = 'X'&lt;/P&gt;&lt;P&gt;              flg_wait               = ' '&lt;/P&gt;&lt;P&gt;              trans_typ            = 'H'&lt;/P&gt;&lt;P&gt;              no_gui_message = 'X'&lt;/P&gt;&lt;P&gt;              no_dialog            = 'X'&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;              caufvd_num_exp = l_caufvdn&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;              OTHERS         = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if useful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Feb 2008 11:51:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-08T11:51:25Z</dc:date>
    <item>
      <title>BAPI for Order creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-order-creation/m-p/3417532#M820784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do we have any BAPI's available in SAP to create orders using IW31 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;stock.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 11:32:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-order-creation/m-p/3417532#M820784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T11:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for Order creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-order-creation/m-p/3417533#M820785</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 believe the BAPI is &lt;STRONG&gt;BAPI_ALM_ORDER_MAINTAIN&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 11:36:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-order-creation/m-p/3417533#M820785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T11:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for Order creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-order-creation/m-p/3417534#M820786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you absolutely need BAPI function module? If not then there is a funciton modlue :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'ALM_ME_ORDER_CREATE'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            order_header   = g_order_header&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            e_order_header = g_order_header&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            order_partner  = i_ordpartner&lt;/P&gt;&lt;P&gt;            return         = lt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all errors will be stored in lt_return. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Check for fatal errors&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'ALM_ME_CHECK_RETURN_TABLE'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            return          = lt_return&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            error_in_return = 1&lt;/P&gt;&lt;P&gt;            OTHERS          = 2.&lt;/P&gt;&lt;P&gt;if sy-subrc is zero then,  post the order using the funciton module:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  If no errors then post&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL FUNCTION 'CO_ZV_ORDER_POST'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              commit_flag        = 'X'&lt;/P&gt;&lt;P&gt;              ext_flg                = 'X'&lt;/P&gt;&lt;P&gt;              flg_wait               = ' '&lt;/P&gt;&lt;P&gt;              trans_typ            = 'H'&lt;/P&gt;&lt;P&gt;              no_gui_message = 'X'&lt;/P&gt;&lt;P&gt;              no_dialog            = 'X'&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;              caufvd_num_exp = l_caufvdn&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;              OTHERS         = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if useful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 11:51:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-order-creation/m-p/3417534#M820786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T11:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for Order creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-order-creation/m-p/3417535#M820787</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;&lt;STRONG&gt;ALM_ME_ORDER_CREATE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CMOH_ORDER_CREATE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CO2H_PROD_ORDER_CREATE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;reward points if helpful&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 11:58:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-order-creation/m-p/3417535#M820787</guid>
      <dc:creator>Vijay</dc:creator>
      <dc:date>2008-02-08T11:58:21Z</dc:date>
    </item>
  </channel>
</rss>

