<?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: Implementing BADI BUPA_GENERAL_UPDATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911069#M57083</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;It's too late for using BUPA_GENERAL_UPDATE &lt;/P&gt;&lt;P&gt;because before being in your BADI, the system has launch in update task the module function BUP_BUPA_UPDATE with BUT000 (before your modification)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my case I have used BADI BUPA_GENERAL_EXPORT, and after module function BUP_MEMORY_BUT000_FILL to update structure but000. In function group BUD_MEM, you can find others MF....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 May 2005 09:21:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-05-19T09:21:04Z</dc:date>
    <item>
      <title>Implementing BADI BUPA_GENERAL_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911064#M57078</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;&lt;/P&gt;&lt;P&gt;I'm trying to implement the BADI BUPA_GENERAL_UPDATE in CRM. I'm using the Function Module BUP_BUPA_MEMORY_GET_ALL for getting the data but after make changes how i can set it to the buffer ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2005 14:37:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911064#M57078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-28T14:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing BADI BUPA_GENERAL_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911065#M57079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Armando!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure, which data you like to change (what's buffer in this circumstance?), but checking interface definition of your BADI I found following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Method CHANGE_BEFORE_UPDATE has just on &amp;lt;i&amp;gt;import&amp;lt;/i&amp;gt; parameter. So SAP hasn't allowed changes before saving, they just give you the chance to make some own stuff before saving (e.g. insert into Z-table...).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2005 14:55:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911065#M57079</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2005-04-28T14:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing BADI BUPA_GENERAL_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911066#M57080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying to take some data from BUT000 and make a mapping with BU_SORT1 and BU_SORT2, i can take the corresponding table from the buffer with the function module that i mentioned before, make changes but after how i cant put it in the buffer ? does is it possible ? do i need use user exit for this case ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2005 19:27:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911066#M57080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-28T19:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing BADI BUPA_GENERAL_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911067#M57081</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;If you like to change data, which was not defined by coding of the exit in beforehand, have a look at statement assign, part dynamical assign. But be careful, it's as bad as making a modification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead I searched some minutes function modules of group BUD0. If there is any standard way to change global memory (buffer), then it's using parts of same function group. Up to now my search was without success (BUP_BUPA_EVENT_DSAVE would make changes, but also to the database).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just go on!&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2005 05:39:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911067#M57081</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2005-04-29T05:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing BADI BUPA_GENERAL_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911068#M57082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe i have not been explicit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to set some information when a BP is being created or modified. I need an user-exit or BADI for using before update where i can fill BU_SORT1 and BU_SORT2 with predefined texts. I was trying with the BADI mentioned before and the function module BUP_BUPA_MEMORY_GET_ALL but how i can put the modified data in memory after make changes ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying with the BADI BUPA_UPDATE where the BP is in Data Base but is waiting for a COMMIT, when i call the BAPI_BUPA_CHANGE it is raising an exception.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas ? What i need to do ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Armando Rodríguez&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Armando Rodríguez&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2005 22:53:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911068#M57082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-29T22:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing BADI BUPA_GENERAL_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911069#M57083</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;It's too late for using BUPA_GENERAL_UPDATE &lt;/P&gt;&lt;P&gt;because before being in your BADI, the system has launch in update task the module function BUP_BUPA_UPDATE with BUT000 (before your modification)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my case I have used BADI BUPA_GENERAL_EXPORT, and after module function BUP_MEMORY_BUT000_FILL to update structure but000. In function group BUD_MEM, you can find others MF....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2005 09:21:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911069#M57083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-19T09:21:04Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing BADI BUPA_GENERAL_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911070#M57084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am just searching for updating Customer include fields of BUT000 into BUT000. I have found this messsage, not sure whether is this the right one!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could any help me in the logic to update the Z included fields in Business master table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am looking for events in BDT whether they can help me out in this series..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ISSTA Initialize &lt;/P&gt;&lt;P&gt;ISDST Distribute data &lt;/P&gt;&lt;P&gt;XCHNG Were changes made? &lt;/P&gt;&lt;P&gt;DSAVB Collect data &lt;/P&gt;&lt;P&gt;DLVE1 Initialize current memory&lt;/P&gt;&lt;P&gt;if anyone has already done pls let me know whether am on right track or which BADI is the right one.&lt;/P&gt;&lt;P&gt;Thanks for your valuable inputs..&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Manohar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Manohar Reddy KALLEM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2005 14:51:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911070#M57084</guid>
      <dc:creator>Manohar2u</dc:creator>
      <dc:date>2005-05-25T14:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing BADI BUPA_GENERAL_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911071#M57085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Armando Rodríguez, &lt;/P&gt;&lt;P&gt;Seems this problem was solved. Can you pls help in solving this problem.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Manohar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Manohar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2005 18:19:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implementing-badi-bupa-general-update/m-p/911071#M57085</guid>
      <dc:creator>Manohar2u</dc:creator>
      <dc:date>2005-05-26T18:19:32Z</dc:date>
    </item>
  </channel>
</rss>

