<?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: Badi ME_PROCESS_REQ_CUST  Method SET_DATA not updating table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/13657017#M2027483</link>
    <description>&lt;P&gt;Aren't&amp;nbsp;CI_EBANDB and CI_EBANMEM already included in&amp;nbsp;&lt;SPAN&gt;MEREQ_ITEM_S_CUST_ALLOWED, did y&lt;/SPAN&gt;&lt;SPAN&gt;ou already read&amp;nbsp;&lt;A href="https://me.sap.com/notes/2542694/E" target="_self"&gt;KBA 2542694 - Field changed via BAdi ME_PROCESS_REQ_CUST or user exits EXIT_SAPLMEREQ_* not saved&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 03 Apr 2024 09:26:42 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2024-04-03T09:26:42Z</dc:date>
    <item>
      <title>Badi ME_PROCESS_REQ_CUST  Method SET_DATA not updating table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/9573649#M1755721</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;&amp;nbsp; &lt;/P&gt;&lt;P&gt;I am facing difficulty while trying to change BLCKD value on Purchase Requisition creation/change. In debugger value is getting changed but database table is not updating.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have checked much thread but not found anything suitable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me on this.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amrendra&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below code is written on the methods &lt;STRONG&gt;PROCESS_ITEM, POST and CHECK.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&lt;STRONG&gt;------------------------------------------------------------------&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;DATA: I_ITEMS &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;MMPUR_REQUISITION_ITEMS,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WA_ITEM &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;LIKE LINE OF &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;I_ITEMS,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LV_IF_ITEM &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;TYPE REF TO &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;IF_PURCHASE_REQUISITION_ITEM,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LT_ITM_DATA &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;MEREQ_ITEM,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LX_ITM_DATA &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;MEREQ_ITEMX.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;CALL METHOD &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;IM_HEADER-&amp;gt;GET_ITEMS&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RECEIVING&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RE_ITEMS = I_ITEMS.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;LOOP AT &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;I_ITEMS &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;INTO &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;WA_ITEM.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LV_IF_ITEM = WA_ITEM-ITEM.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;CALL METHOD &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;LV_IF_ITEM-&amp;gt;GET_DATA&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RECEIVING&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RE_DATA = LT_ITM_DATA.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;CALL METHOD &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;LV_IF_ITEM-&amp;gt;GET_DATAX&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RECEIVING&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RE_DATAX = LX_ITM_DATA.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;IF &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;LT_ITM_DATA-FRGGR &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;IS &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;INITIAL. " &lt;/SPAN&gt;If release code is not available&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LX_ITM_DATA-BLCKD = &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;'X'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;CALL METHOD &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;LV_IF_ITEM-&amp;gt;SET_DATAX&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;EXPORTING&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IM_DATAX = LX_ITM_DATA.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LT_ITM_DATA-BLCKD = &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;'1'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;CALL METHOD &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;LV_IF_ITEM-&amp;gt;SET_DATA&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;EXPORTING&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IM_DATA = LT_ITM_DATA.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&lt;BR /&gt;&amp;nbsp; ENDLOOP.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;----------------------------------------------------&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Aug 2013 14:53:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/9573649#M1755721</guid>
      <dc:creator>amrendra_tiwari</dc:creator>
      <dc:date>2013-08-02T14:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: Badi ME_PROCESS_REQ_CUST  Method SET_DATA not updating table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/9573650#M1755722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try your code in PROCESS_ITEM since the field is in Item line. Also the SET_DATAX needs to be called after SET_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if this helps.&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;swanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Aug 2013 17:56:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/9573650#M1755722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-02T17:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: Badi ME_PROCESS_REQ_CUST  Method SET_DATA not updating table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/9573651#M1755723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Swanand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But as I mentioned in first line that the code is already written in PROCESS_ITEM and tried with both the sequence of SET_DATA and SET_DATAX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In debugger mode I can see that its updating the field value, but out of it, its not passing the updated value to the screen field somehow.&lt;/P&gt;&lt;P&gt;Can't find that point where its getting replaced by old value again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Aug 2013 13:32:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/9573651#M1755723</guid>
      <dc:creator>amrendra_tiwari</dc:creator>
      <dc:date>2013-08-05T13:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: Badi ME_PROCESS_REQ_CUST  Method SET_DATA not updating table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/9573652#M1755724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tiwari ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has this issue resolved for you ? Kindly share what are the steps you followed as I am facing the same issue.&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;G.Gowri Sankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Mar 2015 11:55:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/9573652#M1755724</guid>
      <dc:creator>former_member790829</dc:creator>
      <dc:date>2015-03-10T11:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Badi ME_PROCESS_REQ_CUST  Method SET_DATA not updating table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/9573653#M1755725</link>
      <description>&lt;P&gt;Hi, Gowri, May I know if you have resolved this issue. I am also facing the same one. Please get me out of this issue as I got stuck&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 06:30:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/9573653#M1755725</guid>
      <dc:creator>pashasapcha</dc:creator>
      <dc:date>2023-11-08T06:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Badi ME_PROCESS_REQ_CUST  Method SET_DATA not updating table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/13656372#M2027473</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Did you solve this issue? We are also facing same problem. We are trying to update custom field.&lt;/P&gt;&lt;P&gt;looks like we need to enhance structure MEREQ_ITEM_S_CUST_ALLOWED. Only fields of this structure are updated via SET method.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2024 17:33:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/13656372#M2027473</guid>
      <dc:creator>rajpal_sehrawat</dc:creator>
      <dc:date>2024-04-02T17:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: Badi ME_PROCESS_REQ_CUST  Method SET_DATA not updating table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/13656373#M2027474</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Did you solve this issue? We are also facing same problem. We are trying to update custom field.&lt;/P&gt;&lt;P&gt;looks like we need to enhance structure MEREQ_ITEM_S_CUST_ALLOWED. Only fields of this structure are updated via SET method.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2024 17:33:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/13656373#M2027474</guid>
      <dc:creator>rajpal_sehrawat</dc:creator>
      <dc:date>2024-04-02T17:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Badi ME_PROCESS_REQ_CUST  Method SET_DATA not updating table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/13656374#M2027475</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Did you solve this issue? We are also facing same problem. We are trying to update custom field.&lt;/P&gt;&lt;P&gt;looks like we need to enhance structure MEREQ_ITEM_S_CUST_ALLOWED. Only fields of this structure are updated via SET method.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2024 17:34:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/13656374#M2027475</guid>
      <dc:creator>rajpal_sehrawat</dc:creator>
      <dc:date>2024-04-02T17:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Badi ME_PROCESS_REQ_CUST  Method SET_DATA not updating table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/13657017#M2027483</link>
      <description>&lt;P&gt;Aren't&amp;nbsp;CI_EBANDB and CI_EBANMEM already included in&amp;nbsp;&lt;SPAN&gt;MEREQ_ITEM_S_CUST_ALLOWED, did y&lt;/SPAN&gt;&lt;SPAN&gt;ou already read&amp;nbsp;&lt;A href="https://me.sap.com/notes/2542694/E" target="_self"&gt;KBA 2542694 - Field changed via BAdi ME_PROCESS_REQ_CUST or user exits EXIT_SAPLMEREQ_* not saved&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2024 09:26:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust-method-set-data-not-updating-table/m-p/13657017#M2027483</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2024-04-03T09:26:42Z</dc:date>
    </item>
  </channel>
</rss>

