<?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: HELP BAPI OUTBOUND DELIVERY in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-bapi-outbound-delivery/m-p/2635639#M606346</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks, but I need to place data of texts of head to the delivery and bapi BAPI_DELIVERYPROCESSING_EXEC does not fulfill this, must exist another one bapi to create delivery and to assign head text data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Aug 2007 15:35:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-01T15:35:29Z</dc:date>
    <item>
      <title>HELP BAPI OUTBOUND DELIVERY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-bapi-outbound-delivery/m-p/2635636#M606343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how  fill the input/output tables TEXT_HEADER and TEXT_LINES to create a header text for a newly created delivery by function module BAPI_DELIVERYPROCESSING_EXEC  or other function module?.   appreciating much its collaboration&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2007 15:16:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-bapi-outbound-delivery/m-p/2635636#M606343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-01T15:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: HELP BAPI OUTBOUND DELIVERY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-bapi-outbound-delivery/m-p/2635637#M606344</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;You can write code similar to below. I am able to create using the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:lt_request like bapideliciousrequest&lt;/P&gt;&lt;P&gt;occurs 0 with header line,&lt;/P&gt;&lt;P&gt;lt_createditems like bapideliciouscreateditems&lt;/P&gt;&lt;P&gt;occurs 0 with header line,&lt;/P&gt;&lt;P&gt;lt_return like bapiret2&lt;/P&gt;&lt;P&gt;occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if px_infile-type = 'PO' .&lt;/P&gt;&lt;P&gt;lt_request-document_type = 'B'.&lt;/P&gt;&lt;P&gt;lt_request-document_numb = x_infile-ebeln.&lt;/P&gt;&lt;P&gt;lt_request-document_item = x_infile-posnr.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;lt_request-document_type = 'A'.&lt;/P&gt;&lt;P&gt;lt_request-document_numb = x_infile-vbeln.&lt;/P&gt;&lt;P&gt;lt_request-document_item = x_infile-posnr.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;lt_request-material = x_infile-matnr.&lt;/P&gt;&lt;P&gt;lt_request-plant = x_infile-werks.&lt;/P&gt;&lt;P&gt;lt_request-stge_loc = x_infile-lgort.&lt;/P&gt;&lt;P&gt;lt_request-quantity_base__uom = x_infile-base_uom_qty.&lt;/P&gt;&lt;P&gt;lt_request-delivery_date = sy-datum.&lt;/P&gt;&lt;P&gt;append lt_request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'BAPI_DELIVERYPROCESSING_EXEC'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DELIVERY_EXTEND =&lt;/P&gt;&lt;/LI&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;P&gt;request = lt_request&lt;/P&gt;&lt;P&gt;createditems = lt_createditems&lt;/P&gt;&lt;P&gt;return = lt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;ravish&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;plz dont forget to reward points if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2007 15:24:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-bapi-outbound-delivery/m-p/2635637#M606344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-01T15:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: HELP BAPI OUTBOUND DELIVERY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-bapi-outbound-delivery/m-p/2635638#M606345</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;follow these links it is help full to you&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="187909"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="486414"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.ittoolbox.com/groups/technical-functional/sap-interfaces/bapiidocfm-for-outbound-delivery-vl01n-49914#" target="test_blank"&gt;http://sap.ittoolbox.com/groups/technical-functional/sap-interfaces/bapiidocfm-for-outbound-delivery-vl01n-49914#&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2007 15:34:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-bapi-outbound-delivery/m-p/2635638#M606345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-01T15:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: HELP BAPI OUTBOUND DELIVERY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-bapi-outbound-delivery/m-p/2635639#M606346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks, but I need to place data of texts of head to the delivery and bapi BAPI_DELIVERYPROCESSING_EXEC does not fulfill this, must exist another one bapi to create delivery and to assign head text data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2007 15:35:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-bapi-outbound-delivery/m-p/2635639#M606346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-01T15:35:29Z</dc:date>
    </item>
    <item>
      <title>Re: HELP BAPI OUTBOUND DELIVERY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-bapi-outbound-delivery/m-p/2635640#M606347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as I create a delivery in base an order and simultaneously I assign a  text head&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2007 16:04:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-bapi-outbound-delivery/m-p/2635640#M606347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-01T16:04:24Z</dc:date>
    </item>
  </channel>
</rss>

