<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust/m-p/1437342#M208396</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your replay.&lt;/P&gt;&lt;P&gt;The function exit EXIT_SAPLMEREQ_005 doesn't work as the BADI. I try this: after the statement "set_data" &lt;/P&gt;&lt;P&gt;I insert a new statement "get_data", but, in debug mode, I see that the field BLCKD is empty again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What does it mean "Check the data type...."?&lt;/P&gt;&lt;P&gt;Federica&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Jun 2006 14:12:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-15T14:12:30Z</dc:date>
    <item>
      <title>BADI ME_PROCESS_REQ_CUST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust/m-p/1437339#M208393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have implemented BADI "ME_PROCESS_REQ_CUST", within the method PROCESS_ITEM I tried to update two standard fields. &lt;/P&gt;&lt;P&gt;In the following, the code that I implemented:&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;    l_mereq_item = im_item-&amp;gt;get_data( ).&lt;/P&gt;&lt;P&gt;    MOVE '1'   TO l_mereq_item-blckd.&lt;/P&gt;&lt;P&gt;    MOVE '999' TO l_mereq_item-afnam.&lt;/P&gt;&lt;P&gt;    CALL METHOD im_item-&amp;gt;set_data( l_mereq_item ).&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field AFNAM was update correctly, but this didn't happen for the field  BLCKD. How can I do?&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jun 2006 09:27:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust/m-p/1437339#M208393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-15T09:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: BADI ME_PROCESS_REQ_CUST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust/m-p/1437340#M208394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Federica,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the data type of BLCKD as your method might reject the type mismatch..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jun 2006 09:32:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust/m-p/1437340#M208394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-15T09:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: BADI ME_PROCESS_REQ_CUST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust/m-p/1437341#M208395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Federica,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code which u have put in should update both the fields. However what u can do is set break point just after this BADI and confirm if the data is properly updated and then set a watchpoint for the blckd if it gets reset anywhere else in the program.&lt;/P&gt;&lt;P&gt;if this doesn't work u can use user exit EXIT_SAPLMEREQ_005 which is fired just after the BADI is called.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jun 2006 09:44:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust/m-p/1437341#M208395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-15T09:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: BADI ME_PROCESS_REQ_CUST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust/m-p/1437342#M208396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your replay.&lt;/P&gt;&lt;P&gt;The function exit EXIT_SAPLMEREQ_005 doesn't work as the BADI. I try this: after the statement "set_data" &lt;/P&gt;&lt;P&gt;I insert a new statement "get_data", but, in debug mode, I see that the field BLCKD is empty again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What does it mean "Check the data type...."?&lt;/P&gt;&lt;P&gt;Federica&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jun 2006 14:12:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-me-process-req-cust/m-p/1437342#M208396</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-15T14:12:30Z</dc:date>
    </item>
  </channel>
</rss>

