<?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 BD52- change pointer in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bd52-change-pointer/m-p/8392456#M1644049</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;In BD52, we have a option for selecting the fields based on which the change pointers should be triggered&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However it needs the following 2 details -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Object -  how do i find this for a particular business process ( e.g. it is OK that for material i know that business object is MATERIAL...how do i find for others )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. table name - here for say material object , if i need to activate the change pointer on MAKTX the table is DMAKT&lt;/P&gt;&lt;P&gt;   where does this DMAKT come from? how do i find it ? cant i just use MAKT table instead&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Nov 2011 13:51:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-11-14T13:51:32Z</dc:date>
    <item>
      <title>BD52- change pointer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bd52-change-pointer/m-p/8392456#M1644049</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;In BD52, we have a option for selecting the fields based on which the change pointers should be triggered&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However it needs the following 2 details -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Object -  how do i find this for a particular business process ( e.g. it is OK that for material i know that business object is MATERIAL...how do i find for others )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. table name - here for say material object , if i need to activate the change pointer on MAKTX the table is DMAKT&lt;/P&gt;&lt;P&gt;   where does this DMAKT come from? how do i find it ? cant i just use MAKT table instead&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Nov 2011 13:51:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bd52-change-pointer/m-p/8392456#M1644049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-14T13:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: BD52- change pointer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bd52-change-pointer/m-p/8392457#M1644050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the object can be found using F4 search help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Technically, have a look into TBD62 table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Nov 2011 15:55:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bd52-change-pointer/m-p/8392457#M1644050</guid>
      <dc:creator>JL23</dc:creator>
      <dc:date>2011-11-14T15:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: BD52- change pointer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bd52-change-pointer/m-p/8392458#M1644051</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;Also see tables BDCP and BDCPS. For instance, if you have the relevant pointer in an internal table called I_BDCP, you can see the changes with this coding:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  select * from cdhdr
    into table i_cdhdr
    for all entries in i_bdcp
   where objectclas = i_bdcp-cdobjcl
     and objectid   = i_bdcp-cdobjid
     and changenr   = i_bdcp-cdchgno.


  select * from cdpos
    into table i_cdpos
    for all entries in i_bdcp
   where objectclas = i_bdcp-cdobjcl
     and objectid   = i_bdcp-cdobjid
     and changenr   = i_bdcp-cdchgno.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps you&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;Eduardo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PD: I forgot, see SAP Note 1139020 - Checklist: Change pointer in the material master&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: E_Hinojosa on Nov 15, 2011 3:30 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 14:28:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bd52-change-pointer/m-p/8392458#M1644051</guid>
      <dc:creator>eduardo_hinojosa</dc:creator>
      <dc:date>2011-11-15T14:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: BD52- change pointer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bd52-change-pointer/m-p/8392459#M1644052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Run SCDO, try to match the description. Then you will find the corresponding object. &lt;/P&gt;&lt;P&gt;also from &lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/0b/2a61f1507d11d18ee90000e8366fc2/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/0b/2a61f1507d11d18ee90000e8366fc2/content.htm&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Then activate the change pointer and change the records. You will find table names from CDPOS Table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Nov 2011 16:50:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bd52-change-pointer/m-p/8392459#M1644052</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-16T16:50:38Z</dc:date>
    </item>
  </channel>
</rss>

