<?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: Function Module to update Serial Numbers in Delivery in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498462#M231132</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The most probable reason for that dialog box coming up is that, the delivery item does not get updated in FM and corresponding call of SERIAL_LISTE_POST_LS. The field LIPS-ANZSN is not updated, therefore you get the message that "Serial Numbers are not present". if you do MODIFY LIPS with count of serial numbers in field ANZSN, you should be able PGI w/o any problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know that we can make serial number entry optional at delivery item level in IMG? If there is no purpose of having those serial numbers, you can as well do away with it. We are planning to do this in our system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you are packing the delivery, HU must also contain the serial numbers. If you need serial numbers further down(like invoice), you can get them from HU instead of delivery.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Bhavani.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Aug 2006 19:06:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-04T19:06:45Z</dc:date>
    <item>
      <title>Function Module to update Serial Numbers in Delivery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498455#M231125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello there,&lt;/P&gt;&lt;P&gt;I am attempting to update serial numbers in an outbound delivery using function module SERNR_ADD_TO_LS followed by a perform of serial_liste_post_ls IN PROGRAM saplipw1. However I am struggle with error messages of inconsistancies in status management of the serial numbers. I have verified that the serial numbers I'm using are valid and available. Has anyone had any experience with this FM or others to post serial numbers into an outbound delivery?&lt;/P&gt;&lt;P&gt;Many thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 20:25:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498455#M231125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T20:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to update Serial Numbers in Delivery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498456#M231126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I saw your other post in the other similar topic. &lt;/P&gt;&lt;P&gt;Can you check the settings of serial number creation in IMG? &lt;/P&gt;&lt;P&gt;We are presently using BDC to update serial numbers into Delivery in 46C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How exactly are you trying to update the delivery? Are you using the FM in the custom program? &lt;/P&gt;&lt;P&gt;What is the system status of the serial numbers you are trying to update?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: B P&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 00:24:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498456#M231126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T00:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to update Serial Numbers in Delivery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498457#M231127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SORT lt_serials BY rfpos.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'WS_DELIVERY_UPDATE'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        vbkok_wa              = lwa_vbkok&lt;/P&gt;&lt;P&gt;        delivery              = i_vbeln&lt;/P&gt;&lt;P&gt;        commit                = 'X'&lt;/P&gt;&lt;P&gt;        it_sernr_update       = lt_serials&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        ef_error_sernr_update = l_sernr_update&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        OTHERS                = 99.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ensure you do the sort before calling the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hith&lt;/P&gt;&lt;P&gt;Sunil Achyut&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 00:32:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498457#M231127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T00:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to update Serial Numbers in Delivery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498458#M231128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sunil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I looked at this FM in our system (46C) and can not find the importing parameter it_sernr_update (see below). Is this FM sample from a later version of SAP then 46C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;VALUE(VBKOK_WA) LIKE  VBKOK STRUCTURE  VBKOK&lt;/P&gt;&lt;P&gt;VALUE(SYNCHRON) LIKE  RVSEL-XFELD DEFAULT ' '&lt;/P&gt;&lt;P&gt;VALUE(NO_MESSAGES_UPDATE) LIKE  RVSEL-XFELD DEFAULT SPACE&lt;/P&gt;&lt;P&gt;VALUE(COMMIT) LIKE  RVSEL-XFELD DEFAULT SPACE&lt;/P&gt;&lt;P&gt;VALUE(DELIVERY) LIKE  LIKP-VBELN&lt;/P&gt;&lt;P&gt;VALUE(UPDATE_PICKING) LIKE  RVSEL-XFELD DEFAULT SPACE&lt;/P&gt;&lt;P&gt;VALUE(NICHT_SPERREN) LIKE  RVSEL-NO_SP DEFAULT ' '&lt;/P&gt;&lt;P&gt;VALUE(IF_CONFIRM_CENTRAL) LIKE  RVSEL-XFELD DEFAULT SPACE&lt;/P&gt;&lt;P&gt;VALUE(IF_WMPP) LIKE  RVSEL-XFELD DEFAULT SPACE&lt;/P&gt;&lt;P&gt;VALUE(IF_GET_DELIVERY_BUFFERED) TYPE  RVSEL-XFELD DEFAULT SPACE&lt;/P&gt;&lt;P&gt;VALUE(IF_NO_GENERIC_SYSTEM_SERVICE) LIKE  RVSEL-XFELD DEFAULT SPACE&lt;/P&gt;&lt;P&gt;VALUE(IF_DATABASE_UPDATE) TYPE  LESHP_DATABASE_UPDATE DEFAULT '1'&lt;/P&gt;&lt;P&gt;VALUE(IF_NO_INIT) TYPE  XFELD DEFAULT SPACE&lt;/P&gt;&lt;P&gt;VALUE(IF_NO_READ) TYPE  XFELD DEFAULT SPACE&lt;/P&gt;&lt;P&gt;VALUE(IF_ERROR_MESSAGES_SEND_0) TYPE  XFELD DEFAULT 'X'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 13:46:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498458#M231128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T13:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to update Serial Numbers in Delivery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498459#M231129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;B P -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am doing is taking the serial numbers from the DELVRY03 IDoc which is being supplied by a decentralized WMS system for outbound delivery pick/pack. The IDOC process code for WHSCON message DELS process code does not update serial numbers. I'm passing the serial numbers to this FM and running a BDC to post goods issue (PGI) the delivery, when I capture the error messages of the PGI BDC I get errors like 'Exactly 2 serial numbers are required for the asset 00010'. I check the delivery and the serial numbers are there however I have hit the green check mark on the serial dialogue and the I can PGI the delivery. I thought maybe the asynchronous update might be lagging from the FM so I put a 2 minute sleep route between the serial FM and the PGI BDC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 13:50:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498459#M231129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T13:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to update Serial Numbers in Delivery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498460#M231130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So the FM is working and your are able to update the serial numbers, but you dont like a 2 minute delay?..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why dont you use COMMIT WORK and WAIT. I think 2 min is a very long delay.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Bhavani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 17:15:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498460#M231130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T17:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to update Serial Numbers in Delivery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498461#M231131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bhavani&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not really.. allow me to elaborate some.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FM's SERNR_ADD_TO_LS and the corresponding call of serial_liste_post_ls in program saplipw1 does populate serial numbers into outbound deliveries that are picked and packed (via a DELVRY03 IDoc interface) however when my PGI BDC runs I receive errors that the serial numbers still need to be entered. If I manually go into the delivery via VL02N, highlight the line, the select Extras/Serial Numbers I see my serial numbers, however I need to hit the green checkmark then I'm able to PGI the delivery. So answer it's working partially, the serial numbers are entered however they don't seem to be properly posted or updated in the delivery. I put a commit work statement in the application at the end of each delivery update and I instituted a 2 minute wait in the application to allow for all asynchronous updates to happen before running my PGI BDC. I hope this explains a bit more.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 17:23:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498461#M231131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T17:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to update Serial Numbers in Delivery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498462#M231132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The most probable reason for that dialog box coming up is that, the delivery item does not get updated in FM and corresponding call of SERIAL_LISTE_POST_LS. The field LIPS-ANZSN is not updated, therefore you get the message that "Serial Numbers are not present". if you do MODIFY LIPS with count of serial numbers in field ANZSN, you should be able PGI w/o any problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know that we can make serial number entry optional at delivery item level in IMG? If there is no purpose of having those serial numbers, you can as well do away with it. We are planning to do this in our system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you are packing the delivery, HU must also contain the serial numbers. If you need serial numbers further down(like invoice), you can get them from HU instead of delivery.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Bhavani.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 19:06:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498462#M231132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T19:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to update Serial Numbers in Delivery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498463#M231133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is very helpful and turns out to be true, the delivery is updated with the serial numbers however LIPS is not. I have started to write a routine to correct this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On another note in my application I'm noticing that the when I call FM serial_liste_post_ls IN PROGRAM saplipw1 that the internal tables being passed that were built in the FM SERNR_ADD_TO_LS contain serial data from all deliveries and consequently I'm getting errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My program loops at the delivery then the item and for each item I call the FM SERNR_ADD_TO_LS and then I call the serial_liste_post_ls IN PROGRAM saplipw1 once all lines have been passed and the first delivery updates fine. However the subsequent delivery receives an error of " Inconsitancy in status management for serial ". I have confirmed that the serials are good and when I go into debug I see the first delivery goes fine and then I noticed on the FM call of serial_liste_post_ls IN PROGRAM saplipw1 that the internal tables contains data from that delivery and the previous one. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is psuedo code replicating how I call the FM's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_likp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_lips&lt;/P&gt;&lt;P&gt;       where vbeln = i_likp-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'SERNR_ADD_TO_LS'&lt;/P&gt;&lt;P&gt;           EXPORTING&lt;/P&gt;&lt;P&gt;                profile               = 'Z002'&lt;/P&gt;&lt;P&gt;                material              = i_lips-matnr&lt;/P&gt;&lt;P&gt;                quantity              = i_lips-anzahl&lt;/P&gt;&lt;P&gt;                j_vorgang             = 'PMS3'&lt;/P&gt;&lt;P&gt;                document              = i_likp-vbeln&lt;/P&gt;&lt;P&gt;                item                  = i_lips-posnr&lt;/P&gt;&lt;P&gt;                debitor               = i_likp-kunnr&lt;/P&gt;&lt;P&gt;                vbtyp                 = i_lips-vgtyp&lt;/P&gt;&lt;P&gt;                bwart                 = '601'&lt;/P&gt;&lt;P&gt;           IMPORTING&lt;/P&gt;&lt;P&gt;                anzsn                 = anzsn&lt;/P&gt;&lt;P&gt;                zeilen_id             = l_zeile&lt;/P&gt;&lt;P&gt;                serial_commit         = serial_commit&lt;/P&gt;&lt;P&gt;           TABLES&lt;/P&gt;&lt;P&gt;                sernos                = sernr&lt;/P&gt;&lt;P&gt;           EXCEPTIONS&lt;/P&gt;&lt;P&gt;                konfigurations_error  = 1&lt;/P&gt;&lt;P&gt;                serialnumber_errors   = 2&lt;/P&gt;&lt;P&gt;                serialnumber_warnings = 3&lt;/P&gt;&lt;P&gt;                no_profile_operation  = 4&lt;/P&gt;&lt;P&gt;                OTHERS                = 5.&lt;/P&gt;&lt;P&gt;&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;    PERFORM serial_liste_post_ls IN PROGRAM saplipw1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    COMMIT WORK.&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;Any help is very much appreciated!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2006 20:18:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498463#M231133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-07T20:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to update Serial Numbers in Delivery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498464#M231134</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;Below is the function module which u can used to update the serial numbers for each delivery line item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM serial_no_update TABLES p_it_returns STRUCTURE ztpi_dlvreturn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_OUTB_DELIVERY_CHANGE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      header_data             = it_header_data   (delivery number alone is sufficient)&lt;/P&gt;&lt;P&gt;      header_control          = it_header_control    (delivery number alone is sufficient)&lt;/P&gt;&lt;P&gt;      delivery                = v_delivery   (delivery number alone is sufficient)&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TECHN_CONTROL             =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  HEADER_PARTNER            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  HEADER_PARTNER_ADDR       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  HEADER_DEADLINES          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ITEM_DATA                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ITEM_CONTROL              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      item_serial_no          = it_item_serial_no&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SUPPLIER_CONS_DATA        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXTENSION1                =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXTENSION2                =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      return                  = it_return&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TOKENREFERENCE            =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;  READ TABLE it_return WITH KEY type = 'E'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;&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 = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2006 13:18:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498464#M231134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-10T13:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to update Serial Numbers in Delivery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498465#M231135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Joseph, &lt;/P&gt;&lt;P&gt;Could you please tell me how did you write the routine to update the table LIPS for field ANZSN.&lt;/P&gt;&lt;P&gt;I am also Facing same issue.&lt;/P&gt;&lt;P&gt;did you directly used modify/update command on tale LIPS or used some other Fm or BAP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;YG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jul 2010 17:41:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498465#M231135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-19T17:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to update Serial Numbers in Delivery</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498466#M231136</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;You can use this  parameter to update serial numbers&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FM- &lt;/STRONG&gt;WS_DELIVERY_UPDATE&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Importing parameters&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;VBKOK_WA- VBELN&lt;/P&gt;&lt;P&gt;COMMIT-X&lt;/P&gt;&lt;P&gt;IF_DATABASE_UPDATE-1&lt;/P&gt;&lt;P&gt;IF_ERROR_MESSAGES_SEND_0-X&lt;/P&gt;&lt;P&gt;IT_SERNR_UPDATE- RFBEL(delivery number),RFPOS(item),SERNR&lt;/P&gt;&lt;P&gt;IF_LATE_DELIVERY_UPD-X&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;surya&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 13:33:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-update-serial-numbers-in-delivery/m-p/1498466#M231136</guid>
      <dc:creator>surykumar158</dc:creator>
      <dc:date>2021-12-20T13:33:00Z</dc:date>
    </item>
  </channel>
</rss>

