<?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_INCOMINGINVOICE_CREATE for MIRO posting in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-incominginvoice-create-for-miro-posting/m-p/6921747#M1484408</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to find field RM08M-XWARE_BNK in BAPI_INCOMINGINVOICE_CREATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can not see additional hearder data in this BAPI. Can someone help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this field is not there then does it need to be created if so then how I can create it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 May 2011 16:19:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-05-10T16:19:07Z</dc:date>
    <item>
      <title>BAPI_INCOMINGINVOICE_CREATE for MIRO posting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-incominginvoice-create-for-miro-posting/m-p/6921745#M1484406</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;Im using BAPI_INCOMINGINVOICE_CREATE for posting the Incoming Invoice through MIRO.I populated related fields into header and item tables .The problem is , i want to select the PLANNED DELIVERY COSTS from the dropdown (extreme right) in the PO reference tab of Miro.The field for this is XWARE_BNK.To which field in the header/item i need to MAP this field ?&lt;/P&gt;&lt;P&gt;Since i have'nt mapped this yet,the system by default takes the first from the drop down i.e.(Goods/Service Items) and the flow is going wrong...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help resolve...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 07:40:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-incominginvoice-create-for-miro-posting/m-p/6921745#M1484406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T07:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_INCOMINGINVOICE_CREATE for MIRO posting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-incominginvoice-create-for-miro-posting/m-p/6921746#M1484407</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;the main problem is, that this field is not saved 1:1 to the database. the field XWARE_BNK control the fields &lt;/P&gt;&lt;P&gt;XWARE and XBNK in table RBKPB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example coding &lt;/P&gt;&lt;P&gt;  CASE RM08M-XWARE_BNK.&lt;/P&gt;&lt;P&gt;    WHEN 1.&lt;/P&gt;&lt;P&gt;      RBKPV-XWARE = 'X'.&lt;/P&gt;&lt;P&gt;      RBKPV-XBNK  = SPACE.&lt;/P&gt;&lt;P&gt;    WHEN 2.&lt;/P&gt;&lt;P&gt;      RBKPV-XWARE = SPACE.&lt;/P&gt;&lt;P&gt;      RBKPV-XBNK  = 'X'.&lt;/P&gt;&lt;P&gt;    WHEN 3.&lt;/P&gt;&lt;P&gt;      RBKPV-XWARE = 'X'.&lt;/P&gt;&lt;P&gt;      RBKPV-XBNK  = 'X'.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried to find the filelds in the BAPI:    --&amp;gt; FOUND !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   ADDITIONALHEADERDATA-sel_goods            TO e_rbkpv-xware,&lt;/P&gt;&lt;P&gt;   ADDITIONALHEADERDATA-sel_deliv_costs    TO e_rbkpv-xbnk,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, accordingly the example coding you have to fill the two fields to get the respective XWARE_BNK value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; sel_goods = 'X'         and sel_deliv_costs  = SPACE   -&amp;gt;  XWARE_BNK = '1'&lt;/P&gt;&lt;P&gt; sel_goods = SAPCE and sel_deliv_costs  = 'X'           -&amp;gt;  XWARE_BNK = '2'&lt;/P&gt;&lt;P&gt; sel_goods = 'X'         and sel_deliv_costs  = 'X'           -&amp;gt;  XWARE_BNK = '3'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, Mike&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;removed by moderator&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on May 20, 2010 3:59 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 08:43:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-incominginvoice-create-for-miro-posting/m-p/6921746#M1484407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T08:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_INCOMINGINVOICE_CREATE for MIRO posting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-incominginvoice-create-for-miro-posting/m-p/6921747#M1484408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to find field RM08M-XWARE_BNK in BAPI_INCOMINGINVOICE_CREATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can not see additional hearder data in this BAPI. Can someone help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this field is not there then does it need to be created if so then how I can create it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2011 16:19:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-incominginvoice-create-for-miro-posting/m-p/6921747#M1484408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-10T16:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_INCOMINGINVOICE_CREATE for MIRO posting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-incominginvoice-create-for-miro-posting/m-p/6921748#M1484409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear &lt;STRONG&gt;ramdass_abap&lt;/STRONG&gt; and &lt;STRONG&gt;jeet S&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had the same situation and here is the way I solved it by using the BAPI_INCOMING_INVOICE create. The field in MIRO that defines the planned delivery costs is the result of the combination of the fields COND_TYPE, COND_ST_NO and COND_COUNT in the function. You can see below what is the rule to use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Posting purchase order items or planned delivery costs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1.&lt;/STRONG&gt; If the fields Condition Type (COND_TYPE), Level Number (COND_ST_NO), and Condition Counter (COND_COUNT) are blank, the system creates an invoice for a purchase order item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2.&lt;/STRONG&gt; If the fields Level Number (COND_ST_NO field) and Condition Counter (COND_COUNT field) or Condition Type (COND_TYPE field) are populated, the system creates an invoice for a purchase order item with planned delivery costs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you do not enter any data in the following fields, the system determines the data according to the priorities specified. If the system cannot determine any data, it returns appropriate return messages from the method call. These are listed in the return parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had the same situation and that was the way I solve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Rafael Verediano&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2011 20:08:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-incominginvoice-create-for-miro-posting/m-p/6921748#M1484409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-19T20:08:53Z</dc:date>
    </item>
  </channel>
</rss>

