<?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 CHANGE POINTERS DEBI  XD06 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096591#M1182832</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDCP table is getting updated with object class 'DEBI' when I create or change the customer using XD01 and XD02 transaction. How to make this table updated when transaction XD06 (mark a customer for delete) is exectued? I have checked on SE11 , that KNA1-LOEVM is marked for change document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: The tables CDHDR and CDPOS are updated with object class 'DEBI' for XD01, XD02 and XD06.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Grace&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 01 Feb 2009 21:19:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-01T21:19:22Z</dc:date>
    <item>
      <title>CHANGE POINTERS DEBI  XD06</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096591#M1182832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDCP table is getting updated with object class 'DEBI' when I create or change the customer using XD01 and XD02 transaction. How to make this table updated when transaction XD06 (mark a customer for delete) is exectued? I have checked on SE11 , that KNA1-LOEVM is marked for change document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: The tables CDHDR and CDPOS are updated with object class 'DEBI' for XD01, XD02 and XD06.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Grace&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Feb 2009 21:19:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096591#M1182832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-01T21:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: CHANGE POINTERS DEBI  XD06</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096592#M1182833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Grace,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you checked table TBD62 (trans BD52) for your message type?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case you did not know then the way change pointers normally get written is:&lt;/P&gt;&lt;P&gt;- FM CHANGEDOCUMENT_CLOSE get called (this get called for every change doucment)&lt;/P&gt;&lt;P&gt;- Towards the end of this FM it writes out change pointers (via FM CHANGE_POINTERS_CREATE_LONG in my system)&lt;/P&gt;&lt;P&gt;- Within this it performs the following checks:&lt;/P&gt;&lt;P&gt;   - Check ALE active (table TBDA1)&lt;/P&gt;&lt;P&gt;   - Read all messages that are flagged as active (table TBDA2)&lt;/P&gt;&lt;P&gt;   - Read all fields for messages active (table TBD62)&lt;/P&gt;&lt;P&gt;- Evaluate match against CDPOS changes and prepare for writing to table BDCP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Normally table TBD62 is already delivered with KNA1-LOEVM so the changes should be written (i.e. confirmed as CDPOS is updated - therefore it is going through CHANGEDOCUMENT_CLOSE  for trans XD06).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would place an update debugging breakpoint around the code in form tbd62_getrelevantentries(LSCP1F01) to check what is happening.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Pete&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Feb 2009 12:32:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096592#M1182833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-03T12:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: CHANGE POINTERS DEBI  XD06</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096593#M1182834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pete,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your through answer!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have made tha change TBDA2-ACTIVE = 'X' to message type FRE_LOC_SITE  and the change to field LOEVM has been captured in BDCP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Details:&lt;/P&gt;&lt;P&gt;According to BD62 table on my system, Field KNA1-LOEVM is part of the following Message Types:&lt;/P&gt;&lt;P&gt;   FRE_LOC_SITE&lt;/P&gt;&lt;P&gt;  DEBMAS&lt;/P&gt;&lt;P&gt;  DEBCOR&lt;/P&gt;&lt;P&gt;I have checked for these Message Types in TBDA2 table:&lt;/P&gt;&lt;P&gt;  FRE_LOC_SITE  - shows (TBDA2-ACTIVE = space) and I can change to  TBDA2-ACTIVE = 'X'.&lt;/P&gt;&lt;P&gt;  DEBMAS u2013 does not exist &lt;/P&gt;&lt;P&gt;  DEBCOR u2013 does not exist.&lt;/P&gt;&lt;P&gt;So, I concluded the field  LOEVM was Not marked for Change Pointers.&lt;/P&gt;&lt;P&gt;However, the table CDHDR and CDPOS was capturing the change (via Xd06) of this field, while BDCP did  not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Grace&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 12:57:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096593#M1182834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T12:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: CHANGE POINTERS DEBI  XD06</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096594#M1182835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pete,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your through answer!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have made tha change TBDA2-ACTIVE = 'X' to message type FRE_LOC_SITE  and the change to field LOEVM has been captured in BDCP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Details:&lt;/P&gt;&lt;P&gt;According to BD62 table on my system, Field KNA1-LOEVM is part of the following Message Types:&lt;/P&gt;&lt;P&gt;   FRE_LOC_SITE&lt;/P&gt;&lt;P&gt;  DEBMAS&lt;/P&gt;&lt;P&gt;  DEBCOR&lt;/P&gt;&lt;P&gt;I have checked for these Message Types in TBDA2 table:&lt;/P&gt;&lt;P&gt;  FRE_LOC_SITE  - shows (TBDA2-ACTIVE = space) and I can change to  TBDA2-ACTIVE = 'X'.&lt;/P&gt;&lt;P&gt;  DEBMAS u2013 does not exist &lt;/P&gt;&lt;P&gt;  DEBCOR u2013 does not exist.&lt;/P&gt;&lt;P&gt;So, I concluded the field  LOEVM was Not marked for Change Pointers.&lt;/P&gt;&lt;P&gt;However, the table CDHDR and CDPOS was capturing the change (via Xd06) of this field, while BDCP did  not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Grace&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 12:58:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096594#M1182835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T12:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: CHANGE POINTERS DEBI  XD06</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096595#M1182836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Grace,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Glad you got it sorted.  Just to clarify - the entries in CDHDR/CDPOS as part of change document processing (using the flag on the data element) is a separate process to that of change pointers.  ALE change pointers therefore 'piggy back' on change documents and are user configurable via tables above -i.e. you could create your own Z/Y message type and just add the fields that you want to watch for changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Pete&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 14:26:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096595#M1182836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T14:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: CHANGE POINTERS DEBI  XD06</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096596#M1182837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Pete,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the additional info regarding CDHDR/POS tables, ALE and  Z/Y message type.&lt;/P&gt;&lt;P&gt;This will allow me to capture changes on my Z* tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I very greatful and hope that by marking your answer has solved my problem, your are rewareded with the 'points'. It is the first time on SDN that  I got a  really good anwer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards, &lt;/P&gt;&lt;P&gt;Grace&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2009 01:57:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096596#M1182837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-05T01:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: CHANGE POINTERS DEBI  XD06</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096597#M1182838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Pete,&lt;/P&gt;&lt;P&gt;i think u have analyzed lot in CDHDR table and related FM's. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using FM: BAPI_MATERIAL_SAVEDATA for chang material plant status in basic data 2. but after save the data , if i go MM03, environment-&amp;gt;display changes, here change number field is blank. &lt;/P&gt;&lt;P&gt;i debug this FM , this FM is calling MATERIAL_MAINTAIN_DARK and then MATERIAL_UPDATE_ALL and then CHANGEDOCUMENT_OPEN , here PLANNED_CHANGE_NUMBER field is blank.&lt;/P&gt;&lt;P&gt;could you please guide me how to solve this problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;P&gt;srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 11:40:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096597#M1182838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T11:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: CHANGE POINTERS DEBI  XD06</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096598#M1182839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure on what you are trying to achieve but planned future changes to materials are made in the GUI via transaction MM12.  I am guessing you are changing the material immediately via the BAPI call so I would not expect anything in parameter PLANNED_CHANGE_NUMBER of FM CHANGEDOCUMENT_OPEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you able to confirm entries for CDHDR are created if you change the same material data via the GUI in MM02?  I would initially concentrate on FM MATERIAL_WRITE_DOCUMENT as this is specific to the material master (see generation info in trans SCDO for object MATERIAL). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know how this goes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pete&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2009 12:43:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers-debi-xd06/m-p/5096598#M1182839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-07T12:43:36Z</dc:date>
    </item>
  </channel>
</rss>

