<?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>Question Re: Thanks christophe... in Spend Management Q&amp;A</title>
    <link>https://community.sap.com/t5/spend-management-q-a/thanks-christophe/qaa-p/1372924#M11106</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;i must call the BBP_PO_INBOUND. I have same information custom (two fields added into ekko customer include). &lt;/P&gt;&lt;P&gt;What structures and table i must fill in BBP_PO_INBOUND interface ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How i must fill the structure CUSTOMER_FIELDS? &lt;/P&gt;&lt;P&gt;How i must fill the structure Extensionin?&lt;/P&gt;&lt;P&gt;How i must fill the structure Extensionout?&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;what contain the fields?&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;by&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Apr 2008 16:12:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-29T16:12:01Z</dc:date>
    <item>
      <title>Thanks christophe...</title>
      <link>https://community.sap.com/t5/spend-management-q-a/thanks-christophe/qaq-p/1372923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi christophe,&lt;/P&gt;&lt;P&gt;I have done the debugging using FM BBP_PD_PO_TRANSFER_EXEC...the FM stopped at the breakpoint i kept in the implementation of BADI in SRM for BBP_ECS_PO_OUT_BADI...&lt;/P&gt;&lt;P&gt;In R3 BADI also it is showing the catalogid field is populated..i think but it is not populated into database..how to do that one...&lt;/P&gt;&lt;P&gt;In R3 i have kept code as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;method IF_EX_BBP_PO_INBOUND_BADI~BBP_MAP_BEFORE_BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data :  wa_customer_fields type bbps_if_customer_fields,&lt;/P&gt;&lt;P&gt;          wa_bapi_te_mepoitem type bapi_te_mepoitem,&lt;/P&gt;&lt;P&gt;          wa_bapi_te_mepoitemx type bapi_te_mepoitemx,&lt;/P&gt;&lt;P&gt;          wa_extensionin type bapiparex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data :  txt_960(960) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  read table bbp_customer_fields into wa_customer_fields with key&lt;/P&gt;&lt;P&gt;   refobject = 'POITEM' fieldname = 'CATALOGID'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;    move wa_customer_fields-container TO&lt;/P&gt;&lt;P&gt;    wa_bapi_te_mepoitem-zsrmcatalogid.&lt;/P&gt;&lt;P&gt;    wa_bapi_te_mepoitemx-zsrmcatalogid = 'X'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; clear txt_960.&lt;/P&gt;&lt;P&gt;  clear wa_extensionin.&lt;/P&gt;&lt;P&gt;  write wa_bapi_te_mepoitem to txt_960 left-justified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_extensionin-structure = 'BAPI_TE_MEPOITEM'.&lt;/P&gt;&lt;P&gt;  wa_extensionin-valuepart1 = txt_960(240).&lt;/P&gt;&lt;P&gt;  wa_extensionin-valuepart2 = txt_960+240(240).&lt;/P&gt;&lt;P&gt;  wa_extensionin-valuepart3 = txt_960+480(240).&lt;/P&gt;&lt;P&gt;  wa_extensionin-valuepart4 = txt_960+720(240).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  append wa_extensionin to bapi_extensionin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear txt_960.&lt;/P&gt;&lt;P&gt;  clear wa_extensionin.&lt;/P&gt;&lt;P&gt;  write wa_bapi_te_mepoitemx to txt_960 left-justified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_extensionin-structure = 'BAPI_TE_MEPOITEMX'.&lt;/P&gt;&lt;P&gt;  wa_extensionin-valuepart1 = txt_960(240).&lt;/P&gt;&lt;P&gt;  wa_extensionin-valuepart2 = txt_960+240(240).&lt;/P&gt;&lt;P&gt;  wa_extensionin-valuepart3 = txt_960+480(240).&lt;/P&gt;&lt;P&gt;  wa_extensionin-valuepart4 = txt_960+720(240).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  append wa_extensionin to bapi_extensionin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 May 2006 09:48:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/spend-management-q-a/thanks-christophe/qaq-p/1372923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-30T09:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Thanks christophe...</title>
      <link>https://community.sap.com/t5/spend-management-q-a/thanks-christophe/qaa-p/1372924#M11106</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;i must call the BBP_PO_INBOUND. I have same information custom (two fields added into ekko customer include). &lt;/P&gt;&lt;P&gt;What structures and table i must fill in BBP_PO_INBOUND interface ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How i must fill the structure CUSTOMER_FIELDS? &lt;/P&gt;&lt;P&gt;How i must fill the structure Extensionin?&lt;/P&gt;&lt;P&gt;How i must fill the structure Extensionout?&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;what contain the fields?&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;by&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 16:12:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/spend-management-q-a/thanks-christophe/qaa-p/1372924#M11106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T16:12:01Z</dc:date>
    </item>
  </channel>
</rss>

