<?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: Problem using BAPI_ALM_ORDER_MAINTAIN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667372#M1097986</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Can you please tell me how you solved this issue ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have given few parameters for which the Return parameter says the Order xxxxxxx is saved but when i check in IW33 it says Order does not exist . Kindly advise.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Jun 2011 06:11:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-06-07T06:11:36Z</dc:date>
    <item>
      <title>Problem using BAPI_ALM_ORDER_MAINTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667365#M1097979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to create a new sevice message(transaction IW51) and an order for the service message(transaction IW31). I am trying to use the bapi BAPI_ALM_ORDER_MAINTAIN. As far as I can see the bapi only creates, changes orders and does not create both. If the bapi can do both then please someone send me a code example. Below is my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am presently using batch input to create the message and the bapi BAPI_ALM_ORDER_MAINTAIN to create the order. After I have run the program I read the message table out of the bapi. There are some warnings and info but ne errors. The message table also tell's me that the order XXXX was succesfully created. When I go to transaction IW33 it tell's me the order does not exist? Where can I see the order&lt;/P&gt;&lt;P&gt;the bapi created?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated, thanks&lt;/P&gt;&lt;P&gt;sven&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; loop at ximport into wximport.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  zeile = zeile + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    REFRESH: it_methods, it_header, it_header_srv, it_partner,&lt;/P&gt;&lt;P&gt;             it_operation, return, return1.&lt;/P&gt;&lt;P&gt;    CLEAR:   wit_methods, wit_header, wit_header_srv, wit_partner,&lt;/P&gt;&lt;P&gt;             wit_operation, wreturn, wreturn1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wit_methods-refnumber  = '000001'.&lt;/P&gt;&lt;P&gt;    wit_methods-objecttype = 'HEADER'.&lt;/P&gt;&lt;P&gt;    wit_methods-method     = 'CREATE'.&lt;/P&gt;&lt;P&gt;    wit_methods-objectkey  = wximport-aufnr.&lt;/P&gt;&lt;P&gt;    APPEND wit_methods to it_methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wit_methods-objecttype = 'PARTNER'.&lt;/P&gt;&lt;P&gt;    APPEND wit_methods to it_methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wit_methods-objecttype = 'OPERATION'.&lt;/P&gt;&lt;P&gt;    APPEND wit_methods to it_methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CLEAR wit_methods.&lt;/P&gt;&lt;P&gt;    wit_methods-method = 'SAVE'.&lt;/P&gt;&lt;P&gt;    APPEND wit_methods to it_methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wit_header-orderid        = wximport-aufnr.&lt;/P&gt;&lt;P&gt;    wit_header-order_type     = 'SM01'.&lt;/P&gt;&lt;P&gt;    wit_header-planplant      = wximport-werks.&lt;/P&gt;&lt;P&gt;    wit_header-calc_motive    = wximport-qmart.&lt;/P&gt;&lt;P&gt;    wit_header-mn_wk_ctr      = wximport-aplatz.&lt;/P&gt;&lt;P&gt;    wit_header-plant          = wximport-werks.&lt;/P&gt;&lt;P&gt;    wit_header-pmacttype      = 'GM'.&lt;/P&gt;&lt;P&gt;    wit_header-equipment      = wximport-equnr.&lt;/P&gt;&lt;P&gt;    wit_header-loc_wk_ctr     = wximport-aplatz.&lt;/P&gt;&lt;P&gt;    wit_header-loc_comp_code  = wximport-bukrs.&lt;/P&gt;&lt;P&gt;    wit_header-salesorg       = wximport-vkorg.&lt;/P&gt;&lt;P&gt;    wit_header-distr_chan     = wximport-vtweg.&lt;/P&gt;&lt;P&gt;    wit_header-start_date     = wximport-sdate.&lt;/P&gt;&lt;P&gt;    wit_header-basicstart     = wximport-stime.&lt;/P&gt;&lt;P&gt;    wit_header-short_text     = wximport-ltext.&lt;/P&gt;&lt;P&gt;    wit_header-priority       = wximport-priok.&lt;/P&gt;&lt;P&gt;    wit_header-calc_motive    = 'NO'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND wit_header to it_header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wit_header_srv-salesorg      = wximport-vkorg.&lt;/P&gt;&lt;P&gt;    wit_header_srv-distr_chan    = wximport-vtweg.&lt;/P&gt;&lt;P&gt;    wit_header_srv-quantity      = 1.&lt;/P&gt;&lt;P&gt;    wit_header_srv-base_uom      = 'LE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    append wit_header_srv to it_header_srv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wit_partner-orderid = wximport-aufnr.&lt;/P&gt;&lt;P&gt;    wit_partner-partn_role = 'AG'.&lt;/P&gt;&lt;P&gt;    wit_partner-partner = wximport-kunum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND wit_partner to it_partner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wit_partner-orderid = wximport-aufnr.&lt;/P&gt;&lt;P&gt;    wit_partner-partn_role = 'VW'.&lt;/P&gt;&lt;P&gt;    wit_partner-partner = wximport-PERNR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND wit_partner to it_partner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wit_partner-orderid = wximport-aufnr.&lt;/P&gt;&lt;P&gt;    wit_partner-partn_role = 'VW'.&lt;/P&gt;&lt;P&gt;    wit_partner-partner = wximport-PERNR2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND wit_partner to it_partner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wit_operation-activity        = '0010'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   wit_operation-sub_activity    = '0020'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    wit_operation-work_cntr       =  wximport-aplatz.&lt;/P&gt;&lt;P&gt;    wit_operation-plant           =  wximport-werks.&lt;/P&gt;&lt;P&gt;    wit_operation-description     =  wximport-ltext.&lt;/P&gt;&lt;P&gt;    wit_operation-acttype         = 'ARBEIT'.&lt;/P&gt;&lt;P&gt;    wit_operation-work_activity   = '1'.&lt;/P&gt;&lt;P&gt;    wit_operation-un_work         = 'STD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND wit_operation to it_operation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wit_operation-activity        = '0020'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   wit_operation-sub_activity    = '0030'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    wit_operation-work_cntr       =  wximport-aplatz.&lt;/P&gt;&lt;P&gt;    wit_operation-plant           =  wximport-werks.&lt;/P&gt;&lt;P&gt;    wit_operation-description     = 'Fahrzeit'.&lt;/P&gt;&lt;P&gt;    wit_operation-acttype         = 'FAHRZ'.&lt;/P&gt;&lt;P&gt;    wit_operation-work_activity   = '1'.&lt;/P&gt;&lt;P&gt;    wit_operation-un_work         = 'STD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND wit_operation to it_operation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wit_operation-activity        = '0030'.&lt;/P&gt;&lt;P&gt;    wit_operation-work_cntr       =  wximport-aplatz.&lt;/P&gt;&lt;P&gt;    wit_operation-plant           =  wximport-werks.&lt;/P&gt;&lt;P&gt;    wit_operation-description     = 'Kilometer'.&lt;/P&gt;&lt;P&gt;    wit_operation-acttype         = 'KM'.&lt;/P&gt;&lt;P&gt;    wit_operation-work_activity   = '1'.&lt;/P&gt;&lt;P&gt;    wit_operation-un_work         = 'STD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND wit_operation to it_operation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;BAPI-Aufruf:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_ALM_ORDER_MAINTAIN'&lt;/P&gt;&lt;P&gt;      DESTINATION 'NONE'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        it_methods    = it_methods&lt;/P&gt;&lt;P&gt;        it_header     = it_header&lt;/P&gt;&lt;P&gt;        it_header_srv = it_header_srv&lt;/P&gt;&lt;P&gt;        it_partner    = it_partner&lt;/P&gt;&lt;P&gt;        it_operation  = it_operation&lt;/P&gt;&lt;P&gt;        return        = return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    clear ERROR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    loop at return into wreturn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      move zeile           to wmessages-zeile.&lt;/P&gt;&lt;P&gt;      move wximport-aufnr  to wmessages-aufnr.&lt;/P&gt;&lt;P&gt;      move wximport-qmart  to wmessages-qmart.&lt;/P&gt;&lt;P&gt;      move wximport-kunum  to wmessages-kunum.&lt;/P&gt;&lt;P&gt;      move wximport-equnr  to wmessages-equnr.&lt;/P&gt;&lt;P&gt;      move wreturn-type    to wmessages-type.&lt;/P&gt;&lt;P&gt;      move wreturn-message to wmessages-message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      append wmessages TO imessages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      if wreturn-type = 'E'.&lt;/P&gt;&lt;P&gt;        error = 'E'.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if ERROR = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WAIT = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Verbuchung:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      REFRESH return1.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          wait = wait.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 11:42:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667365#M1097979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T11:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using BAPI_ALM_ORDER_MAINTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667366#M1097980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;don't use Wait and see...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to Debug and see the return table , what are the values present inside the return table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 12:00:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667366#M1097980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T12:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using BAPI_ALM_ORDER_MAINTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667367#M1097981</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 am not sure, why BAPI_TRANSACTION_COMMIT is called with in loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead you can try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table return into wreturn with key type = 'E'.&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Madhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 12:04:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667367#M1097981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T12:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using BAPI_ALM_ORDER_MAINTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667368#M1097982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your help. I want to add 1 order per time. Create - run bapi - commit - next record.&lt;/P&gt;&lt;P&gt;That is why the commit is in the loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 13:34:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667368#M1097982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T13:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using BAPI_ALM_ORDER_MAINTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667369#M1097983</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;Try the logic below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at ximport into wximport.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at return into wreturn.&lt;/P&gt;&lt;P&gt;move zeile to wmessages-zeile.&lt;/P&gt;&lt;P&gt;move wximport-aufnr to wmessages-aufnr.&lt;/P&gt;&lt;P&gt;move wximport-qmart to wmessages-qmart.&lt;/P&gt;&lt;P&gt;move wximport-kunum to wmessages-kunum.&lt;/P&gt;&lt;P&gt;move wximport-equnr to wmessages-equnr.&lt;/P&gt;&lt;P&gt;move wreturn-type to wmessages-type.&lt;/P&gt;&lt;P&gt;move wreturn-message to wmessages-message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append wmessages TO imessages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table return into wreturn with key type = 'E'.&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH return1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 13:43:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667369#M1097983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T13:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using BAPI_ALM_ORDER_MAINTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667370#M1097984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below are the messages. There are quite a few but none are errors and it does say the order was saved.&lt;/P&gt;&lt;P&gt;Cannot find order number AA117249 with transaction IW33.&lt;/P&gt;&lt;P&gt;                                                                                Auftragsnum.             Meldung        Art       Kunde          Equipment      Art Mess.      Message                                                                                &lt;/P&gt;&lt;P&gt;AA117249                 M117249        S3        3254701        A000289        S              Credit limit check not possible                                                                                &lt;/P&gt;&lt;P&gt;AA117249                 M117249        S3        3254701        A000289        I              The organization data is determined again                                                                                &lt;/P&gt;&lt;P&gt;AA117249                 M117249        S3        3254701        A000289        S              No batch input data for screen SAPLIPAR 0320                                                                                &lt;/P&gt;&lt;P&gt;AA117249                 M117249        S3        3254701        A000289        I              Order AA117249 with external number changed during creation                                                                                &lt;/P&gt;&lt;P&gt;AA117249                 M117249        S3        3254701        A000289        W              Start date is in the past                                                                                &lt;/P&gt;&lt;P&gt;AA117249                 M117249        S3        3254701        A000289        S              Calculation executed                                                                                &lt;/P&gt;&lt;P&gt;AA117249                 M117249        S3        3254701        A000289        I              Order AA117249 with external number changed during creation                                                                                &lt;/P&gt;&lt;P&gt;AA117249                 M117249        S3        3254701        A000289        W              Start date is in the past                                                                                &lt;/P&gt;&lt;P&gt;AA117249                 M117249        S3        3254701        A000289        S              Calculation executed                                                                                &lt;/P&gt;&lt;P&gt;AA117249                 M117249        S3        3254701        A000289        S              Order saved with number AA117249                                                                                &lt;/P&gt;&lt;P&gt;AA117249                 M117249        S3        3254701        A000289        S              BAPI control is ended&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 14:08:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667370#M1097984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T14:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using BAPI_ALM_ORDER_MAINTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667371#M1097985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everyone for your help. I managed to sort it out. Does anyone have an example where &lt;/P&gt;&lt;P&gt;there is more than 1 position?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 14:28:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667371#M1097985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T14:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using BAPI_ALM_ORDER_MAINTAIN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667372#M1097986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Can you please tell me how you solved this issue ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have given few parameters for which the Return parameter says the Order xxxxxxx is saved but when i check in IW33 it says Order does not exist . Kindly advise.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 06:11:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-bapi-alm-order-maintain/m-p/4667372#M1097986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-07T06:11:36Z</dc:date>
    </item>
  </channel>
</rss>

