<?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 updating EKKO table using E1BPPAREX in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-ekko-table-using-e1bpparex/m-p/7051930#M1502089</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;My requirement is to update ekko table using E1BPPAREX segement. I have gone through so many posts regarding this.&lt;/P&gt;&lt;P&gt;In my case, PO number is not yet created. I am using BAPI_PO_CREATE1 for creating this . From PI side, if they pass the custom field value in the appropriate postion of VALUEPART field of E1BPPAREX, will it get updated to the ekko table automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sajith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Jul 2010 06:28:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-07-12T06:28:17Z</dc:date>
    <item>
      <title>updating EKKO table using E1BPPAREX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-ekko-table-using-e1bpparex/m-p/7051930#M1502089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;My requirement is to update ekko table using E1BPPAREX segement. I have gone through so many posts regarding this.&lt;/P&gt;&lt;P&gt;In my case, PO number is not yet created. I am using BAPI_PO_CREATE1 for creating this . From PI side, if they pass the custom field value in the appropriate postion of VALUEPART field of E1BPPAREX, will it get updated to the ekko table automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sajith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jul 2010 06:28:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updating-ekko-table-using-e1bpparex/m-p/7051930#M1502089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-12T06:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: updating EKKO table using E1BPPAREX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-ekko-table-using-e1bpparex/m-p/7051931#M1502090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sajith,&lt;/P&gt;&lt;P&gt;  you have to do is populate structure extensionin. You'll have to implement the fm DDIF_NAMETAB_GET to look for the right place (offset) in order to add the field on the structure extension in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DDIF_NAMETAB_GET'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      tabname   = c_ext_table   --&amp;gt; ''BAPI_TE_MEPOHEADER&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dfies_tab = lt_tab&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      not_found = 1&lt;/P&gt;&lt;P&gt;      OTHERS    = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR l_offset.&lt;/P&gt;&lt;P&gt;  LOOP AT lt_tab.&lt;/P&gt;&lt;P&gt;    CASE lt_tab-fieldname.&lt;/P&gt;&lt;P&gt;      WHEN c_yourfield.&lt;/P&gt;&lt;P&gt;        w_extin-valuepart1+l_offset = p_yourfield.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;    ADD lt_tab-leng TO l_offset.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MOVE c_ext_table TO w_extin-structure.&lt;/P&gt;&lt;P&gt;  APPEND w_extin TO p_i_extin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Carlos.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jul 2010 10:15:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updating-ekko-table-using-e1bpparex/m-p/7051931#M1502090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-12T10:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: updating EKKO table using E1BPPAREX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-ekko-table-using-e1bpparex/m-p/7051932#M1502091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;My requirement is to update EKKO table while creating the PO number itself. So I dont want to do any coding in ABAP other than calling the BAPI 'BAPI_PO_CRATE1'. We have one value in PI side which we need to update into the EKKO table along with PO number. How to proceed?&lt;/P&gt;&lt;P&gt;Any pointers on this will be highly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sajith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jul 2010 06:03:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updating-ekko-table-using-e1bpparex/m-p/7051932#M1502091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-15T06:03:21Z</dc:date>
    </item>
  </channel>
</rss>

