<?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 WS_DELIVERY_UPDATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703142#M1578191</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can try to call fm RV_DELIVERY_INIT in error case of WS_DELIVERY_UPDATE and test it with several options (STATUS_BUFF_INIT = 'X', ...)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Mar 2011 09:13:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-03-02T09:13:20Z</dc:date>
    <item>
      <title>Function Module WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703136#M1578185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the function Module 'WS_DELIVERY_UPDATE' in LOOP to save the deliveries. While testing we found out following issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One of the delivery can not be saved due to some error. This error is given in the form of popup. As program runs in bacground, program is not able to handle this popup. So it comes out of the FM. &lt;/P&gt;&lt;P&gt;Now when this FM tries to update next delivery in the loop, it gives the same error(although that delivery is correct). We believe this is happening because internal tables, structure or error logs were not cleared/refreshed in the previous loop pass. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I handle this situation? I am not sure if commit, rollback or flush command will work. Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 05:35:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703136#M1578185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T05:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703137#M1578186</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;did you set one or both of the parameters IF_NO_INIT or IF_NO_BUFFER_REFRESH to 'X' ? That may be the reason!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 05:55:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703137#M1578186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T05:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703138#M1578187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you uncomment all the error exception in IMPORTING Field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 06:35:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703138#M1578187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T06:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703139#M1578188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not passing any of the parameter as suggested by you. I am passing the following parameters to the FM&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                    = wa_vbkok&lt;/P&gt;&lt;P&gt;                        commit                      = c_x&lt;/P&gt;&lt;P&gt;                        delivery                    = wa_delivery-refnum&lt;/P&gt;&lt;P&gt;                   IMPORTING&lt;/P&gt;&lt;P&gt;                        ef_error_any_0              = v_err1&lt;/P&gt;&lt;P&gt;                        ef_error_in_item_deletion_0 = v_err2&lt;/P&gt;&lt;P&gt;                        ef_error_in_pod_update_0    = v_err3&lt;/P&gt;&lt;P&gt;                        ef_error_in_interface_0     = v_err4&lt;/P&gt;&lt;P&gt;                        ef_error_in_goods_issue_0   = v_err5&lt;/P&gt;&lt;P&gt;                        ef_error_in_final_check_0   = v_err6&lt;/P&gt;&lt;P&gt;                   TABLES&lt;/P&gt;&lt;P&gt;                        vbpok_tab                   = it_vbpok&lt;/P&gt;&lt;P&gt;                   EXCEPTIONS&lt;/P&gt;&lt;P&gt;                        error_message               = 99.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know which parameter can I use?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 06:37:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703139#M1578188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T06:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703140#M1578189</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;parameters are ok. Didi you refresh VBPOK_TAB for each call, or are there some data remaining from last call?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 06:47:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703140#M1578189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T06:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703141#M1578190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Klaus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes all the exporting parameters are refreshed at the start of each loop pass.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 08:11:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703141#M1578190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T08:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703142#M1578191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can try to call fm RV_DELIVERY_INIT in error case of WS_DELIVERY_UPDATE and test it with several options (STATUS_BUFF_INIT = 'X', ...)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 09:13:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-ws-delivery-update/m-p/7703142#M1578191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T09:13:20Z</dc:date>
    </item>
  </channel>
</rss>

