<?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 pointers in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900539#M935966</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;1.Whenever we add the new fields,then we can add that field in BD52.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change pointers is the one of the IDOC processing method in ALE.&lt;/P&gt;&lt;P&gt;In this once we make the config to any of messages type , if any changes are made in sending system then IDOC will be posted directly to destination with user interation.&lt;/P&gt;&lt;P&gt;Changes pointers are configured using BD50,BD51,BD53,BD61.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change pointers are stored in tables BDCP and BDCPS (or BDCP2 in case of high-performance setting) - like CDHDR and CDPOS for change documents (but this is not a controlling table!).&lt;/P&gt;&lt;P&gt;1. Do you really need change pointers?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need change pointers to distribute changes with the ALE SMD tool. If you do not use this tool, you do not need to write change pointers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can deactivate change pointers and activate them again with the transaction BD61.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Do you really need to activate change pointers for this messages type?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If some messages types are no longer to be distributed by change pointers, you can&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;deactivate change pointers for this message type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can deactivate change pointers for the message type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and reactivate them again in transaction BD50.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For reduced message types, deactivate the change pointer with the&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reduction tool (transaction BD53).&lt;/P&gt;&lt;P&gt;Applications which write change documents will also try to write change pointers for ALE operations. These are log entries to remember all modified data records relevant for ALE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Most applications write change documents. These are primarily log entries in the&lt;/P&gt;&lt;P&gt;tables CDHDR and CDPOS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change documents remember the modified fields made to the database by an&lt;/P&gt;&lt;P&gt;application. They also remember the user name and the time when the modification&lt;/P&gt;&lt;P&gt;took place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The decision whether a field modification is relevant for a change document is&lt;/P&gt;&lt;P&gt;triggered by a flag of the modified field?s data element. You can set the flag with&lt;/P&gt;&lt;P&gt;SE11 by modifying the data element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the purpose of distributing data via ALE to other systems, you may want to&lt;/P&gt;&lt;P&gt;choose other fields, which shall be regarded relevant for triggering a distribution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore R/3 introduced the concept of change pointers, which are nothing else&lt;/P&gt;&lt;P&gt;than a second log file specially designed for writing the change pointers which are&lt;/P&gt;&lt;P&gt;meant to trigger IDoc distribution via ALE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the change pointers will remember the key of the document every time when a&lt;/P&gt;&lt;P&gt;relevant field has changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change pointers are then evaluated by an ABAP which calls the IDoc creation, for&lt;/P&gt;&lt;P&gt;every modified document found in the change pointers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Change pointers are written from the routine CHANGEDOCUMENT_CLOSE&lt;/P&gt;&lt;P&gt;when saving the generated change document. So change pointers are automatically&lt;/P&gt;&lt;P&gt;written when a relevant document changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following function is called from within CHANGEDOCUMENT_CLOSE in order to write the change pointers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CHANGE_POINTERS_CREATE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;change_document_header = cdhdr&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;change_document_position = ins_cdpos.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Activation of change pointer update :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change pointers are log entries to table BDCP which are written every time a transaction modifies certain fields. The change pointers are designed for ALE distribution and written by the function CHANGE_DOCUMENT_CLOSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change pointers are written for use with ALE. There are ABAPs like RBDMIDOC&lt;/P&gt;&lt;P&gt;which can read the change pointers and trigger an IDoc for ALE distribution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The change pointers are mainly the same as change documents. They however can&lt;/P&gt;&lt;P&gt;be set up differently, so fields which trigger change documents are not necessarily&lt;/P&gt;&lt;P&gt;the same that cause change pointers to be written.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to work with change pointers there are two steps to be performed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Turn on change pointer update generally&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Decide which message types shall be included for change pointer update&lt;/P&gt;&lt;P&gt;R3 allows to activate or deactivate the change pointer update. For this purpose it&lt;/P&gt;&lt;P&gt;maintains a table TBDA1. The decision whether the change pointer update is active&lt;/P&gt;&lt;P&gt;is done with a Function Ale_Component_Check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This check does nothing else than to check, if this table has an entry or not. If there is an entry in TBDA1, the ALE change pointers are generally active. If this table is empty, change pointers are turned off for everybody and everything, regardless of the other settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The two points read like you had the choice between turning it on generally or&lt;/P&gt;&lt;P&gt;selectively. This is not the case: you always turn them on selectively. The switch to&lt;/P&gt;&lt;P&gt;turn on generally is meant to activate or deactivate the whole mechanism.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The change pointers which have not been processed yet, can be read with a function&lt;/P&gt;&lt;P&gt;module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call Function 'CHANGE_POINTERS_READ'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ABAP RBDMIDOC will process all open change pointers and distribute the&lt;/P&gt;&lt;P&gt;matching IDocs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you want to send out an IDoc unconditionally every time a transaction&lt;/P&gt;&lt;P&gt;updates, you better use the workflow from the change documents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shiva Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 May 2008 10:30:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-28T10:30:07Z</dc:date>
    <item>
      <title>Change pointers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900535#M935962</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;By Default all the R/3 fields will capture the changes or any extra modification needed for any  change to capture and write it to BDCP tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have read somewhere that for capturing the changes all fields shoulb be added in BD62 or adding the field names in BD52 is compulsory?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishnu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vishnuvadhan K on May 28, 2008 11:43 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vishnuvadhan K on May 28, 2008 11:49 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 09:42:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900535#M935962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T09:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Change pointers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900536#M935963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  It is not compulsory.  The changes will be automatically updated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Vamshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 09:53:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900536#M935963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T09:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: Change pointers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900537#M935964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi by default changes of all fields will capture.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For standard master data objects such as cost centers, material, customers and vendor objects SAP already provides list of fileds for which change poiters are written, if u feel u don`t want all fields, u can deselect or new entries can also add in BD52.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDCP -- for change pointers&lt;/P&gt;&lt;P&gt;BDCPS --- for cahnge pointers status&lt;/P&gt;&lt;P&gt;CDHDR -- change doc. header&lt;/P&gt;&lt;P&gt;CDPOS -- change doc. item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward pts if it helps....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 10:22:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900537#M935964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T10:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: Change pointers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900538#M935965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then in what cases we add fields in BD52 ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishnu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 10:23:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900538#M935965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T10:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: Change pointers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900539#M935966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;1.Whenever we add the new fields,then we can add that field in BD52.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change pointers is the one of the IDOC processing method in ALE.&lt;/P&gt;&lt;P&gt;In this once we make the config to any of messages type , if any changes are made in sending system then IDOC will be posted directly to destination with user interation.&lt;/P&gt;&lt;P&gt;Changes pointers are configured using BD50,BD51,BD53,BD61.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change pointers are stored in tables BDCP and BDCPS (or BDCP2 in case of high-performance setting) - like CDHDR and CDPOS for change documents (but this is not a controlling table!).&lt;/P&gt;&lt;P&gt;1. Do you really need change pointers?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need change pointers to distribute changes with the ALE SMD tool. If you do not use this tool, you do not need to write change pointers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can deactivate change pointers and activate them again with the transaction BD61.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Do you really need to activate change pointers for this messages type?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If some messages types are no longer to be distributed by change pointers, you can&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;deactivate change pointers for this message type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can deactivate change pointers for the message type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and reactivate them again in transaction BD50.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For reduced message types, deactivate the change pointer with the&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reduction tool (transaction BD53).&lt;/P&gt;&lt;P&gt;Applications which write change documents will also try to write change pointers for ALE operations. These are log entries to remember all modified data records relevant for ALE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Most applications write change documents. These are primarily log entries in the&lt;/P&gt;&lt;P&gt;tables CDHDR and CDPOS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change documents remember the modified fields made to the database by an&lt;/P&gt;&lt;P&gt;application. They also remember the user name and the time when the modification&lt;/P&gt;&lt;P&gt;took place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The decision whether a field modification is relevant for a change document is&lt;/P&gt;&lt;P&gt;triggered by a flag of the modified field?s data element. You can set the flag with&lt;/P&gt;&lt;P&gt;SE11 by modifying the data element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the purpose of distributing data via ALE to other systems, you may want to&lt;/P&gt;&lt;P&gt;choose other fields, which shall be regarded relevant for triggering a distribution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore R/3 introduced the concept of change pointers, which are nothing else&lt;/P&gt;&lt;P&gt;than a second log file specially designed for writing the change pointers which are&lt;/P&gt;&lt;P&gt;meant to trigger IDoc distribution via ALE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the change pointers will remember the key of the document every time when a&lt;/P&gt;&lt;P&gt;relevant field has changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change pointers are then evaluated by an ABAP which calls the IDoc creation, for&lt;/P&gt;&lt;P&gt;every modified document found in the change pointers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Change pointers are written from the routine CHANGEDOCUMENT_CLOSE&lt;/P&gt;&lt;P&gt;when saving the generated change document. So change pointers are automatically&lt;/P&gt;&lt;P&gt;written when a relevant document changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following function is called from within CHANGEDOCUMENT_CLOSE in order to write the change pointers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CHANGE_POINTERS_CREATE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;change_document_header = cdhdr&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;change_document_position = ins_cdpos.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Activation of change pointer update :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change pointers are log entries to table BDCP which are written every time a transaction modifies certain fields. The change pointers are designed for ALE distribution and written by the function CHANGE_DOCUMENT_CLOSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change pointers are written for use with ALE. There are ABAPs like RBDMIDOC&lt;/P&gt;&lt;P&gt;which can read the change pointers and trigger an IDoc for ALE distribution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The change pointers are mainly the same as change documents. They however can&lt;/P&gt;&lt;P&gt;be set up differently, so fields which trigger change documents are not necessarily&lt;/P&gt;&lt;P&gt;the same that cause change pointers to be written.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to work with change pointers there are two steps to be performed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Turn on change pointer update generally&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Decide which message types shall be included for change pointer update&lt;/P&gt;&lt;P&gt;R3 allows to activate or deactivate the change pointer update. For this purpose it&lt;/P&gt;&lt;P&gt;maintains a table TBDA1. The decision whether the change pointer update is active&lt;/P&gt;&lt;P&gt;is done with a Function Ale_Component_Check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This check does nothing else than to check, if this table has an entry or not. If there is an entry in TBDA1, the ALE change pointers are generally active. If this table is empty, change pointers are turned off for everybody and everything, regardless of the other settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The two points read like you had the choice between turning it on generally or&lt;/P&gt;&lt;P&gt;selectively. This is not the case: you always turn them on selectively. The switch to&lt;/P&gt;&lt;P&gt;turn on generally is meant to activate or deactivate the whole mechanism.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The change pointers which have not been processed yet, can be read with a function&lt;/P&gt;&lt;P&gt;module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call Function 'CHANGE_POINTERS_READ'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ABAP RBDMIDOC will process all open change pointers and distribute the&lt;/P&gt;&lt;P&gt;matching IDocs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you want to send out an IDoc unconditionally every time a transaction&lt;/P&gt;&lt;P&gt;updates, you better use the workflow from the change documents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shiva Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 10:30:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900539#M935966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T10:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: Change pointers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900540#M935967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If u hav any customization fields u added by enhancement, those fields will not available, so in that case u can add fields in BD 52.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 10:42:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900540#M935967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T10:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Change pointers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900541#M935968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By default are there any fields in BD52 or TBD62 table. I can find some fileds in this table, are they added by default or someone has added them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishnu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 10:47:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900541#M935968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T10:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Change pointers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900542#M935969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By default SAP provided all these fields for standard objects in BD52.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 10:56:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900542#M935969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T10:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Change pointers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900543#M935970</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;We have requirement to segregate employees based on a particular infotype value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the employee has the value '0001' in that infotype then the employee needs to be distributed to another system through ALE, else should not be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are employing change pointers .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we acheive this ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jun 2008 09:36:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900543#M935970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-28T09:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Change pointers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900544#M935971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 07:23:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-pointers/m-p/3900544#M935971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T07:23:46Z</dc:date>
    </item>
  </channel>
</rss>

