<?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 BAPI Custom field updation problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045556#M1611340</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am using BAPI_SALEORDER_CHANGE to update the two Custom fields, &lt;/P&gt;&lt;P&gt;Below added components in BAPE_VBAP&lt;/P&gt;&lt;P&gt;1.ZZSERIALNO       ZZSERIALNO       CHAR             18&lt;/P&gt;&lt;P&gt;2.ZZKNO                ZZKNO                  CHAR             30&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below added components in BAPE_VBAPX&lt;/P&gt;&lt;P&gt;1.ZZSERIALNO       BAPIUPDATE       CHAR             1&lt;/P&gt;&lt;P&gt;2.ZZKNO                 BAPIUPDATE       CHAR             1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Table VBAP, the two custom fields are appended with name ZAVBAP as structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is my existing code:&lt;/P&gt;&lt;P&gt;  data:return         type  bapiret2   occurs 0 with header line,&lt;/P&gt;&lt;P&gt;          order_item_in  type  bapisditm  occurs 0 with header line,&lt;/P&gt;&lt;P&gt;          order_item_inx type  bapisditmx occurs 0 with header line,&lt;/P&gt;&lt;P&gt;          conditions_in  type  bapicond   occurs 0 with header line,&lt;/P&gt;&lt;P&gt;         conditions_inx type  bapicondx  occurs 0 with header line,&lt;/P&gt;&lt;P&gt;          i_extensionin  type  table of bapiparex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data:k_extensionin  type  bapiparex,&lt;/P&gt;&lt;P&gt;          k_bape_vbap    type  bape_vbap,&lt;/P&gt;&lt;P&gt;          k_bape_vbapx   type  bape_vbapx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  constants:    c_bape_vbap(9)   value 'BAPE_VBAP',&lt;/P&gt;&lt;P&gt;                       c_bape_vbapx(10) value 'BAPE_VBAPX',&lt;/P&gt;&lt;P&gt;                       c_flag_x(1)      value 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code to append the structure and internal table I_extension&lt;/P&gt;&lt;P&gt;      k_bape_vbap-vbeln       = wa_vbap-vbeln.&lt;/P&gt;&lt;P&gt;      k_bape_vbap-posnr       = wa_vbap-posnr.&lt;/P&gt;&lt;P&gt;      k_bape_vbap-zzserialno  = wa_vbap-zzserialno.&lt;/P&gt;&lt;P&gt;      k_bape_vbap-zzkno       = wa_vbap-zzkno.&lt;/P&gt;&lt;P&gt;      k_extensionin-structure = c_bape_vbap.&lt;/P&gt;&lt;P&gt;      k_extensionin+30        = k_bape_vbap.&lt;/P&gt;&lt;P&gt;      append k_extensionin to i_extensionin.&lt;/P&gt;&lt;P&gt;      clear k_extensionin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      k_bape_vbapx-vbeln      = wa_vbap-vbeln..&lt;/P&gt;&lt;P&gt;      k_bape_vbapx-posnr      = wa_vbap-posnr.&lt;/P&gt;&lt;P&gt;      k_bape_vbapx-zzserialno = c_flag_x.&lt;/P&gt;&lt;P&gt;      k_bape_vbapx-zzkno      = c_flag_x.&lt;/P&gt;&lt;P&gt;      k_extensionin-structure = c_bape_vbapx.&lt;/P&gt;&lt;P&gt;      k_extensionin+30        = k_bape_vbapx.&lt;/P&gt;&lt;P&gt;      append k_extensionin to i_extensionin.&lt;/P&gt;&lt;P&gt;      clear k_extensionin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI FM called and value passed as below:&lt;/P&gt;&lt;P&gt;    call function 'BAPI_SALESORDER_CHANGE'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        salesdocument    = wa_vbap-vbeln&lt;/P&gt;&lt;P&gt;        order_header_inx = order_header_inx&lt;/P&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;        return           = return&lt;/P&gt;&lt;P&gt;        order_item_in    = order_item_in&lt;/P&gt;&lt;P&gt;        order_item_inx   = order_item_inx&lt;/P&gt;&lt;P&gt;        conditions_in    = conditions_in&lt;/P&gt;&lt;P&gt;        conditions_inx   = conditions_inx&lt;/P&gt;&lt;P&gt;        extensionin      = i_extensionin.               &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        call function 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;          exporting&lt;/P&gt;&lt;P&gt;            wait = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My ISSUE:&lt;/P&gt;&lt;P&gt;1. The two custom field is not getting updated through extension&lt;/P&gt;&lt;P&gt;2. Please suggest if there needs to be any code change.&lt;/P&gt;&lt;P&gt;3. This is real time issue, I hope many faced the same prob and got it solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all in Advance!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishwa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jul 2011 18:20:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-07-11T18:20:47Z</dc:date>
    <item>
      <title>BAPI Custom field updation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045556#M1611340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am using BAPI_SALEORDER_CHANGE to update the two Custom fields, &lt;/P&gt;&lt;P&gt;Below added components in BAPE_VBAP&lt;/P&gt;&lt;P&gt;1.ZZSERIALNO       ZZSERIALNO       CHAR             18&lt;/P&gt;&lt;P&gt;2.ZZKNO                ZZKNO                  CHAR             30&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below added components in BAPE_VBAPX&lt;/P&gt;&lt;P&gt;1.ZZSERIALNO       BAPIUPDATE       CHAR             1&lt;/P&gt;&lt;P&gt;2.ZZKNO                 BAPIUPDATE       CHAR             1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Table VBAP, the two custom fields are appended with name ZAVBAP as structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is my existing code:&lt;/P&gt;&lt;P&gt;  data:return         type  bapiret2   occurs 0 with header line,&lt;/P&gt;&lt;P&gt;          order_item_in  type  bapisditm  occurs 0 with header line,&lt;/P&gt;&lt;P&gt;          order_item_inx type  bapisditmx occurs 0 with header line,&lt;/P&gt;&lt;P&gt;          conditions_in  type  bapicond   occurs 0 with header line,&lt;/P&gt;&lt;P&gt;         conditions_inx type  bapicondx  occurs 0 with header line,&lt;/P&gt;&lt;P&gt;          i_extensionin  type  table of bapiparex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data:k_extensionin  type  bapiparex,&lt;/P&gt;&lt;P&gt;          k_bape_vbap    type  bape_vbap,&lt;/P&gt;&lt;P&gt;          k_bape_vbapx   type  bape_vbapx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  constants:    c_bape_vbap(9)   value 'BAPE_VBAP',&lt;/P&gt;&lt;P&gt;                       c_bape_vbapx(10) value 'BAPE_VBAPX',&lt;/P&gt;&lt;P&gt;                       c_flag_x(1)      value 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code to append the structure and internal table I_extension&lt;/P&gt;&lt;P&gt;      k_bape_vbap-vbeln       = wa_vbap-vbeln.&lt;/P&gt;&lt;P&gt;      k_bape_vbap-posnr       = wa_vbap-posnr.&lt;/P&gt;&lt;P&gt;      k_bape_vbap-zzserialno  = wa_vbap-zzserialno.&lt;/P&gt;&lt;P&gt;      k_bape_vbap-zzkno       = wa_vbap-zzkno.&lt;/P&gt;&lt;P&gt;      k_extensionin-structure = c_bape_vbap.&lt;/P&gt;&lt;P&gt;      k_extensionin+30        = k_bape_vbap.&lt;/P&gt;&lt;P&gt;      append k_extensionin to i_extensionin.&lt;/P&gt;&lt;P&gt;      clear k_extensionin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      k_bape_vbapx-vbeln      = wa_vbap-vbeln..&lt;/P&gt;&lt;P&gt;      k_bape_vbapx-posnr      = wa_vbap-posnr.&lt;/P&gt;&lt;P&gt;      k_bape_vbapx-zzserialno = c_flag_x.&lt;/P&gt;&lt;P&gt;      k_bape_vbapx-zzkno      = c_flag_x.&lt;/P&gt;&lt;P&gt;      k_extensionin-structure = c_bape_vbapx.&lt;/P&gt;&lt;P&gt;      k_extensionin+30        = k_bape_vbapx.&lt;/P&gt;&lt;P&gt;      append k_extensionin to i_extensionin.&lt;/P&gt;&lt;P&gt;      clear k_extensionin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI FM called and value passed as below:&lt;/P&gt;&lt;P&gt;    call function 'BAPI_SALESORDER_CHANGE'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        salesdocument    = wa_vbap-vbeln&lt;/P&gt;&lt;P&gt;        order_header_inx = order_header_inx&lt;/P&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;        return           = return&lt;/P&gt;&lt;P&gt;        order_item_in    = order_item_in&lt;/P&gt;&lt;P&gt;        order_item_inx   = order_item_inx&lt;/P&gt;&lt;P&gt;        conditions_in    = conditions_in&lt;/P&gt;&lt;P&gt;        conditions_inx   = conditions_inx&lt;/P&gt;&lt;P&gt;        extensionin      = i_extensionin.               &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        call function 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;          exporting&lt;/P&gt;&lt;P&gt;            wait = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My ISSUE:&lt;/P&gt;&lt;P&gt;1. The two custom field is not getting updated through extension&lt;/P&gt;&lt;P&gt;2. Please suggest if there needs to be any code change.&lt;/P&gt;&lt;P&gt;3. This is real time issue, I hope many faced the same prob and got it solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all in Advance!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishwa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 18:20:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045556#M1611340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-11T18:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Custom field updation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045557#M1611341</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;Refer to the post below and check the BAPI documentantion - field extensionin:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="183351"&gt;&lt;/A&gt;|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="183351"&gt;&lt;/A&gt;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Felipe Simionatto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 20:04:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045557#M1611341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-11T20:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Custom field updation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045558#M1611342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishwa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Check it is not there in loop.&lt;/P&gt;&lt;P&gt;check this thread [&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1990873"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do the same code for this bapi. Post if need help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: madhurao123 on Jul 12, 2011 9:09 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 03:38:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045558#M1611342</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-07-12T03:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Custom field updation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045559#M1611343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply Madhu!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please suggest me the right way to solve this issue since am handling the VBAP table alone and also I didnt appended the two custom fields to the structure VBAPKOZ and to structure VBAPKOZX. If i append the two ZZ fields to both these structure then how should i build the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me out here!!!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishwa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 08:22:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045559#M1611343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-12T08:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Custom field updation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045560#M1611344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishwa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;DATA: wa_extensionin TYPE bapiparex,&lt;/P&gt;&lt;P&gt;wa_bape_vbap   TYPE bape_vbap,&lt;/P&gt;&lt;P&gt;wa_bape_vbapx  TYPE bape_vbapx,&lt;/P&gt;&lt;P&gt;wa_bape_vbak   TYPE bape_vbak,&lt;/P&gt;&lt;P&gt;wa_bape_vbakx  TYPE bape_vbakx,&lt;/P&gt;&lt;P&gt;lv_posnr       TYPE posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;header extension&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CLEAR wa_bape_vbak.&lt;/P&gt;&lt;P&gt;wa_bape_vbak-ZZFIELD     = 'HeaderDRTEST'.&lt;/P&gt;&lt;P&gt;wa_extensionin-structure = 'BAPE_VBAK'.&lt;/P&gt;&lt;P&gt;wa_extensionin+30(960)   = wa_bape_vbak.&lt;/P&gt;&lt;P&gt;append wa_extensionin to lt_extensionin.&lt;/P&gt;&lt;P&gt;clear wa_extensionin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Processing the line extension&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOOP AT line_items INTO wa_lineitems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ADD 10 TO lv_posnr.   &lt;/P&gt;&lt;P&gt;CLEAR wa_bape_vbap.&lt;/P&gt;&lt;P&gt;wa_bape_vbap-ZZFIELD     = 'item'.&lt;/P&gt;&lt;P&gt;wa_extensionin-structure = 'BAPE_VBAP'.&lt;/P&gt;&lt;P&gt;wa_bape_vbap-posnr       = lv_posnr.&lt;/P&gt;&lt;P&gt;wa_extensionin+30(960)   = wa_bape_vbap.&lt;/P&gt;&lt;P&gt;append wa_extensionin to lt_extensionin.&lt;/P&gt;&lt;P&gt;clear wa_extensionin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR wa_bape_vbapx.&lt;/P&gt;&lt;P&gt;wa_bape_vbapx-ZZFIELD    = 'X'.&lt;/P&gt;&lt;P&gt;wa_extensionin-structure = 'BAPE_VBAPX'.&lt;/P&gt;&lt;P&gt;wa_bape_vbapx-posnr      = lv_posnr.&lt;/P&gt;&lt;P&gt;wa_extensionin+30(960)   = wa_bape_vbapx.&lt;/P&gt;&lt;P&gt;append wa_extensionin to lt_extensionin.&lt;/P&gt;&lt;P&gt;clear wa_extensionin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: madhurao123 on Jul 12, 2011 1:58 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 08:27:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045560#M1611344</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-07-12T08:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Custom field updation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045561#M1611345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually I dindt add any Z fields to structure BAPE_VBAK and BAPE_VBAKX, why because my requirement is to update the line item Z fileds under SO Additional data B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks! &lt;/P&gt;&lt;P&gt;Vishwa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 09:11:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045561#M1611345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-12T09:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI Custom field updation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045562#M1611346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishwa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thant is fine.Here we are not adding any new fields. Here we added custom fields to vbap (Item ) table.We are updating those fields.Post if i am wrong.I think your requirement is to update custom fields using bapi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case only updation of those fields . &lt;/P&gt;&lt;P&gt;Add the custom field in VBAP through append structure&lt;/P&gt;&lt;P&gt;Modify the screen 8459 of SAPMV45A to add your custom fields&lt;/P&gt;&lt;P&gt;Write the logic in subroutine 'USEREXIT_MOVE_FIELD_TO_VBAP' of include MV45AFZZ to populate the value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In both of subroutine global internal table and structures are available,where you can pass the values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: madhurao123 on Jul 12, 2011 3:15 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 09:43:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-custom-field-updation-problem/m-p/8045562#M1611346</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-07-12T09:43:24Z</dc:date>
    </item>
  </channel>
</rss>

