<?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: change_pointer_read issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255271#M145986</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;P&gt;         Maybe you can help me with this ....I have created a ZDEBMAS msg type and included a limited number of customer tables ( under class DEBI ) and want to track changes only to those customer master fields. I have made entries for ZDEBMAS in BD50, BD52 and WE81 ( I am not interested in using IDOCs ) . When I change customers, the change ptr objects get generated for ZDEBMAs. But when I create customers , I do not see change ptr objects for ZDEBMAS. Would you know if I am missing anything else ? ( The CD docs are generated for the customer create action and the change pointer objects do get generated for DEBMAS msg type )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help !!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Jun 2006 18:10:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-01T18:10:37Z</dc:date>
    <item>
      <title>change_pointer_read issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255266#M145981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing a problem with change_pointer_read function module. i am not using idocs but using this function module to select all the changes and then i send the data using flat file transfer. now this worked ok in development and testing environment but it is taking lot of time to read change pointers in preproduction environment. there are 187 million entries in bdcp table in that environment. it took almost 45 min to read change pointers for matmas...i am supplying parameters like message type , object class, not processed pointers (yes),&lt;/P&gt;&lt;P&gt;and time frame ( creation date - high low and creation time high low)...am i doing any mistake? now sap processes the pointers once it creates the idocs and the parameter supplied to this FM are only message type and read not processed pointers (yes)...here i am not processing change pointers ( because we are in shared environment) but reading for a time frame ( from date/time to date/time)...even if i process my pointers and keep on reading not processed pointers then i will also be reading pointers for other projects for previous period thats why i dont want to process, but instead i read for a time frame&lt;/P&gt;&lt;P&gt;please suggest...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2006 15:12:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255266#M145981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-12T15:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: change_pointer_read issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255267#M145982</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 general: you have too much pointers in the system. Plan regularly the report of transaction BD22 delete unecessary pointers (older than 1-2 weeks and marked as 'processed').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To your task: create an own message type, assign (just) the fields you are interested in. Then you can mark the pointers after file creation as 'processed' (-&amp;gt; no one else is using this message type) and you will get only exactly the relevant pointers by only reading 'not processed' pointers (without additional time-frame selection). This is even easier, you don't have to struggle to select correct time-frame since last interface run.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Back to general: check, if some messages are not marked 'processed' at all -&amp;gt; probably no process is using these pointers any longer and they can be deactivated / deleted with option 'obsolete' in BD22.&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, 13 Apr 2006 11:05:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255267#M145982</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2006-04-13T11:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: change_pointer_read issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255268#M145983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Christian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You rock ! perfect ! I have not implemented this solutions yet but sounds perfect to me. Now I am sending material master, BOM, Routing and classification in this interface. So i am planning to group all the tables and fields under new message type and then read pointers at once and then analyze them based on the table names. But here is my question, how do i get the functionality of CLFMAS ( classification ) in this custom message ? becuase i am surprised to see no field under CLFMAS in BD52 and it still write change pointer entries...how do i make SAP behave the same way for my custom message...and one more question is if i just create a new msg type in we81 and add it in BD50 / BD52...is this much config sufficient?...i think i dont have to link it in we82 as i am not using idocs...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your help is highly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Apr 2006 20:18:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255268#M145983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-13T20:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: change_pointer_read issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255269#M145984</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;WE81, BD50, BD52 should be enough, no IDOC link is necessary (this you do 'hardcoded' in your program...). Just make a test and look with SE16, if you get some new pointers after a change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For CLFMAS, it's a different story. SAP made some hardcoding here (maybe classification isn't so easy linked to tables with change documents). Have a look at this &lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="117289"&gt;&lt;/A&gt;, here the question was already discussed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you will get a MUCH faster solution!&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>Mon, 17 Apr 2006 16:56:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255269#M145984</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2006-04-17T16:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: change_pointer_read issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255270#M145985</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;Ninad Are you working in sap?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 20:43:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255270#M145985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-24T20:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: change_pointer_read issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255271#M145986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;P&gt;         Maybe you can help me with this ....I have created a ZDEBMAS msg type and included a limited number of customer tables ( under class DEBI ) and want to track changes only to those customer master fields. I have made entries for ZDEBMAS in BD50, BD52 and WE81 ( I am not interested in using IDOCs ) . When I change customers, the change ptr objects get generated for ZDEBMAs. But when I create customers , I do not see change ptr objects for ZDEBMAS. Would you know if I am missing anything else ? ( The CD docs are generated for the customer create action and the change pointer objects do get generated for DEBMAS msg type )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help !!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Jun 2006 18:10:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255271#M145986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-01T18:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: change_pointer_read issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255272#M145987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi karthik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In creation mode, SAP does not necessarily write the change pointers for all the fields. It actually inserts a key record in a table with fieldname as KEY. So try to incorporate key fields for customer master tables in addition to the other fields that you have used. This should be helpful in identifying when customer is created and when a customer changes SAP wont make any changes to KEY fields but then you will have a change pointer written for other fields. So you are all covered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Christian: I forgot to say thank you to you. Thanks a lot for your answer was really helpful in solving my issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ninad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Jun 2006 19:00:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255272#M145987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-01T19:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: change_pointer_read issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255273#M145988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ninad&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for that tip... that worked !!!I really appreciate your timely response&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Jun 2006 21:14:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointer-read-issue/m-p/1255273#M145988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-01T21:14:49Z</dc:date>
    </item>
  </channel>
</rss>

