Tracking of changes - no change documents

Hi,
We have a case where we need to pass to another system changes to records that are stored/created/changed in SAP. The challenge we have is that standard SAP does not create a change document for us to use as a way to quickly find out what has changed. What approach do you recommend in a case where changes need to be identified and pass over to another process, yet SAP does not store changes documents (CDHDR, CDPOS). Is usage of DBTABLOG and table logging a preferred method? Perhaps designing our own change determination logic and storing these in CDHDR/CDPOS (not sure it is possible)?
Thank you,
Mike

>
Soumyaprakash Mishra wrote:
> even when the numebr of tables is small, you can do it easily with SCU3, what you need to check is if the tables are maintained for logging the change or not.
True. But: The problem with SCU3 is that more than 1000 tables have the flag set by default. So if you want to use this technique for only a few tables, some other 1000 tables will also be logged. Unless of course that you delete the flag in all not required tables.
P.S.: I just checked it in my development system: 2892 tables have the flag set by default. And this is just a small SAP_BASIS system. I guess it could be 5000 tables with the flag activated in a system with many applications installed.

Similar Messages

  • Tracking of changing document line item

    Hi,
    I have posted a customer noted item for bank gurantee through F-49. I have entered due date for bank guarantee.
    I have changed the due date in the line item. After changing the due date, i want to know the earlier due date. i want to keep the tracking of old due dates which i chaged.
    Is it possible in standard SAP which helps in tracking such document line item change

    S_ALR_87012293 - Display of Changed Documents

  • Change document in profit center change

    Hi guyz,
    I have created an upload program for 'change profit center' KE52 transaction.  I have used 'BAPI_PROFITCENTER_CHANGE' for this. Everything works fine, but the problem is on the history tab, when I track the history it's not displaying any change data, when i use this program to change profit center.
    So i need the track the change documents also. Can any body tell me how to resolve it. Should i use any bapi for change docs. Any suggestion?
    Thanks,

    BAPI_PROFITCENTER_CHANGE calls PROFITCENTER_CHANGE and inside this function module, change documents are created (see below).
            PERFORM profitcenter_save   USING    prctr_data-prctr
                                                 prctr_data-kokrs
                                        CHANGING gl_rc.
    Inside this perform, you will find this
    * write change documents
      PERFORM change_documents_prepare.
      PERFORM change_documents_save USING lt_ccodes[]
                                          profitcenter
                                          controllingarea.
    Check in debugging why it is not coming here. Also, make sure you have commit work after the call to this function module is successful.

  • Problem with Change Document FM  - Not all fields are tracked in CDPOS

    Hello everybody,
    Using transaction SCDO and following necessary steps described in forum, I have created a change document ZFBR to track changes of a table ZFBR. The problem is, the generated FM ZFBR_WRITE_DOCUMENT does not track changes of some fields of the table (inserts are always ok, problem is with updates). After some debugging I realized that the FM DDIF_NAMETAB_GET was returning the table DFIES_TAB where the LOGFLAG was empty for some fields (which are not tracked) so that changes of these fields were not visible in table CDPOS. However, fields with LOGFLAG = 'X' are tracked succesfully (changes are visible in table CDPOS).
    I did not specify any fields to be get logged or not during the steps in SCDO (can we do such a specification anywhere?), does anyone know why the field LOGFLAG has the value '' (space)?
    Best regards;
    Ozcan.

    Hi again,
    The problem has been solved.
    The data elements used in a table are the reason for the problem I have described above. When displaying the details of a data element, under tab "Further Characteristics" , the "Change Document" checkbox has to be selected to enable change document tracking. I have copied the problematic data elements with Z prefix and made the necessary enabling. I have replaced the data elements with their Z equivalents.
    Best regards.
    Ozcan.

  • Track a field by using Change Documents

    Hello,
    Does anyone knows how to get the history changes of an Equipment Classification? (IE02 -> Click on Classification tab).
    We have a requirement that needs to fetch an equipment number based on a classification change. Everytime a value changes on a particular classification (TEST_ID) we need to populate the corresponding equipment number affected in this update.
    We are using "Change Documents" to track changes from the equipment master information but I have no idea how to track changes from the Classification information.
    Any ideas would be highly appreciate it.
    Thanks in advance,
    -C

    CarstenDD wrote:
    Hello,
    I assume it is quite easy but I don't get it.
    I have 2 tables ANTRAG and PERSON and I want to update
    UPDATE ANTRAG SET SysKD = (SELECT DISTINCT PERSON.SysPERSON FROM PERSON WHERE PERSON.SysVM = ANTRAG.SysVK AND PERSON.SysVM > 0) WHERE ANTRAG.SysLS IN (11,12);
    This delivers the error "subquery returns more than one row". I assume due to the fact that I have more than one record in ANTRAG which fullfills ANTRAG.SysLS IN (11,12).
    PERSON.SysVM > 0 is needed because there are records in PERSON and ANTRAG with PERSON.SysVM = 0 and ANTRAG.SysVK = 0 (but not where ANTRAG.SysLS is in 11 or 12, these have all ANTRAG.SysVK > 0).
    I have no clue how to get a single returnvalue out of the select statement.
    Thanks for help
    Regards
    CarstenIt means that your subquery is returning more than one row of data so it can't set SysKD to just a single value.
    That implies you have more than one distinct PERSON.sysPERSON value that matches the where clause.
    Without your data, we can't help you any more than that.

  • Need to create a Change document for tracking Purpose on standard table

    Hi Experts,
    I am updating a field in standard table so need to create a change document for tracking the changes being done on the field.
    I created the change Document with transaction SCDO but I am stuck at point - How to call that in the report program to enable the change document.
    Please advice.
    Thanks!!

    Hi
    U can assign your transaction to Z-report like this:
    PARAMETERS: TAB1 RADIOBUTTON GROUP R1 DEFAULT 'X',
                TAB2 RADIOBUTTON GROUP R1,
                TAB3 RADIOBUTTON GROUP R1.
    DATA: TABNAME TYPE TABNAME.
    START-OF-SELECTION.
      CASE 'X'.
        WHEN TAB1. TABNAME = 'BSID'.
        WHEN TAB2. TABNAME = 'BSAD'.
        WHEN TAB3. TABNAME = 'BKPF'.
      ENDCASE.
      CALL FUNCTION 'RS_TABLE_LIST_CREATE'
        EXPORTING
          TABLE_NAME               = TABNAME
    *   ACTION                   = 'ANZE'
    *   WITHOUT_SUBMIT           = ' '
    *   GENERATION_FORCED        =
    *   NEW_SEL                  =
    *   NO_STRUCTURE_CHECK       = ' '
    *   DATA_EXIT                = ' '
    * IMPORTING
    *   PROGNAME                 =
    * TABLES
    *   SELTAB                   =
       EXCEPTIONS
         TABLE_IS_STRUCTURE       = 1
         TABLE_NOT_EXISTS         = 2
         DB_NOT_EXISTS            = 3
         NO_PERMISSION            = 4
         NO_CHANGE_ALLOWED        = 5
         OTHERS                   = 6
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.

  • HT6084 Since upgrading to OS X Mavericks I have not been able to work on any MS Word tracked changes documents (works fine if no tracked changes), as every time upon opening such a word file the word processor closes / crashes. What can be done in this ca

    Since upgrading to OS X Mavericks I have not been able to work on any MS Word tracked changes documents (works fine if no tracked changes or comments in the doc). Every time upon opening such a word file with tr.changes the word processor closes / crashes.
    What can be done in this case?

    I just discovered that by turning off in tracked changes balloons in Word preferences prevents the software from crashing, but from then on I need to use only the review pane.

  • Custom change document is not tracking changes for SAP tables

    Hi gurus,
    I have created a custom change document for tables EKBE and KONV. But the change document is not tracking changes in BDCP table for changes in EKBE or KONV.
    Please help me out.........

    HI,
    Use this link for change pointers concept.
    change pointers
    let me know if u have any issue.
    ~linganna

  • How to Track the changes made to the custom table field value

    I want to track the changes made to the custom table field value in table maintenance generator.please help me it is very urgent
    Thanks & Regards,
    Kranti

    Hi Satya,
    These are the steps you've to do.
    1. Enable the change document flag in the data element level for the fields of the tables you want to monitor.
    2. Go to transaction SCDO. Create a new change object, and add your table to this object. After generation, you'll get a function module.
    3. Call this function module in the table maintainence generator screen, after the data is saved to the database table. This function module automaticallly writes the changes, with the old and new values, and the fields that were changed to the tables CDHDR and CDPOS.
    4. You can keep track of the changes made to the table by monitoring these tables.
    Regards
    Anil Madhavan

  • ChaRM Scenario: Workbench and Customizing CR in the same Change Document

    We use the ChaRM scenario of Solution Manager 3.2 to manage the transport request for the R/3 landscape.
    We have two different project with two different landscape:
    - the first one is used for customizing purpose ED1/010 - EQ1/010 - EP1/010
    - the second one is for workbench purpose ED1/011 - EQ1/010 - EP1/010
    We usually assign a Change Request each Change Document.
    Assigning the Change Document to a maintenance cycle (owned by a SolMan Project) to assigne the CD/CR to the right source client.
    Sometime we need to create a Change Document that contains two CR one for customizing purpose the other one for workbench purpose.
    Is this possible using ChaRM standard features ?
    Regards,
    Giampaolo

    Hi Martin,
    Solmaniacs' assumptions are correct. You can have as many source clients as you want.
    As long as
    - STMS configuration (transport routes, and domain links) are consistent
    - SMSY configuration (logical components are declared properly with assigning the right role types to systems/clients)
    - Project declaration are done correctly (so that from Solman solar_project_admin you can read the STMS as confiured in the distant STMS domain)
    - IMPORTANT: those configuration GO ALONG with each other !! (SMSY should nt contradict STMS for example...)
    The tasklist that is generated for each Solman project will be as follow
    - Node 1: Header Tasks (commun to all systems)
    - Node x: Corresponding to track x declared in Project (each Source System will have his own node with the corresponding track under)
    - Node x+1
    - Node ...
    - Last Node : Tasks for Tasklist closure - checks on scma consistancy and CTS projects closure
    So you'll always have n+2 nodes in your tasklist; n beeing the number of declared source (=dev) systems in project
    For each action launched from change docuemnts like creation of TR, release of TR or Retrofit (as Solmaniac said) you'll have an additional pop-up that will appears letting you choose the system you want to use for the action
    Hope its helpful
    Regards
    Khalil

  • Change documents or logs for Analysis authorisation access changes

    Is there a way to review the change history or table logs in BI 7.0 to show who assigned analysis authorizations and when it was assigned or removed?  I presume there should be a SUIM change document that shows the Analysis authorization access changes that are assigned directly to users via RSU01 or RESEADMIN when these analysis authorizations are not included in roles.
    An example area of concern is with the assignment of 0BI_ALL, having an accurate log or mechanism to track the assignments to users.

    Hi Srinivas,
    you can activate in DDIC that your entry changes will be logged.
    Go to SE11 -> Your Tablenname -> CHANGE
    Button TechnicalSettings -> Activate checkbox Log data changes.
    From now on any chenge will be logged in table DBTABLOG.
    Kind Regards
    Henner

  • FM to fill outbound IDOC with change document details.

    Hi ,
    I am working on an enhancement EXIT_SAPLMGMU_001 for an interface to track the changes to the material master.
    Can someone please let me know if there is a FM to populate outbound IDOC with change document details like when a material is
    created /changed. Thanks much.
    Regards,
    Sanjeev
    Edited by: sanjeev.s on Apr 14, 2010 3:32 PM

    Call the function module "MASTER_IDOC_DISTRIBUTE" to create idoc.  Use function module "CHANGEDOCUMENT_READ_HEADERS" to get the change document details.
    Regards
    Vinod

  • How to track data changes in SAP

    Hello experts,
    Iu2019m working on a project with a team of NON SAP architects and weu2019ve been asked to come up with some idea to keep a track of all the changes happened in SAP system by any user. So for instance let say if use makes a change and save it then this change should be gets recorded somewhere in SAP with the use, date, time, new data and pervious data. Also it should only happen when a change is made. So let say of there any change happens in SAP regardless of any t-code it should get save. Iu2019m not certain how to accomplish it. I need your expert advice please.
    Thanks a lot in advance

    In addition to the information given by  Krishnendu Laha you can evaluate every change document with one of the reports the names of which start with RSSCD* (SA38) as well as in the causing transaction.
    Keep in mind, though - not all transactions create change documents, some use other kinds of histories and some don't even do that.
    You should gather the team that has been demanding those change-documentation and have them specify the business processes (or -steps) where change-documents are a conditio-sine-qua-non and check what SAP standard has in to offer you. Evaluate the gaps (if there are any) and then you can define how to bridge them.

  • Send a Change Document entry when an equipment change its status (IE02)

    Hello experts,
    In the transaction IE02 (Change Equipment), when a user changes the equipment status, for instance, from Active (ACTV) -> Inactive (INAC) when the SAVE button is pressed I need to post a Change Document entry (CDHDR and CDPOS).
    I've already identified the user exit EXIT_SAPMIEQ0_002 which is triggered when the SAVE button is pressed in IE02 transaction. I cannot read the new status value.
    At that moment I can read the old status (which has been change until the user exit finalized) but I don't find a way to check if that old_value <> new_value.
    Does anybody knows a way to achieve this?
    Thanks in advance,
    CL

    Stauts changes are tracked in the table JCDS and not in CDHDR and CDPOS.
    You will have to check the box for Change documents in the configuration for equipment status ( this is done on equipment type's status profile ). The status change tracking will not happen until it has been set there.
    Thanks,
    Srihari

  • Not able to release normal change document for development

    Hello All
    We have Implemented ChaRM in SolMan 7.1 SP10
    Have created the Project and activated Charm with required DEV/QA/PRD logical component and before creating the Maintenance cycle, we did a check in the project which showed all green..
    We are able to create a request for Change and go till the approval, when we try to change the status to release for development, it is throwing the below error and not letting us go further.
    We have checked the MC phase, and it is in phase Dev with release.
    Project is in IN PROCESS state.
    IBASE and Component details are correct.
    Tried to put back to Validation and re tried for Development and this did not work.
    Until unless change document created successfully, we cannot go ahead even though MC phase is in DEV with release.
    I have seen few blogs and I have checked below steps
    system roles in SMSY
    Landscape system info
    Changed MC phase to DEV with release
    Strange why it is not allowing to create change document ???
    Please assist
    Thanks
    Sateesh.

    Hello,
    Three consistency checks are performed when you choose action "release for development" (resulting in the SMCR's status "being implemented"):
    PROJECT_ASSIGNED: Project is Assigned
    SYSTEM_EXIST: System assigned to collective change request
    FOLLOW_ON_GEN_OK: Change Documents Can be Created
    In case any of these checks fails, the SMCR's status returns to "approved".
    These same consistency check are also checked when the SMCR status is set to "approved". The behavior for a failed check, however, is different in this case. Just a warning message is shown on the top of the screen and the "approved" status can be set.
    Question 1: When you set the SMCR to "approved", those warnings are shown too?
    Perhaps there is something wrong with the assigned project.
    Check if the assigned logical component has the correct systems/clients.
    Check if the transport tracks between the systems listed in the logical component are working.
    Question 2: When you assign the scope (change type, in your case, Normal Change), some system data from the production system defined in the logical component are automatically filled (System, Client, Configuration Item, etc). Is this happening?
    Regards,
    Daniel

Maybe you are looking for

  • DOCUMNET WISE REPORT

    eXPERTS:-- I requsted to u, plz my requiremnt is see DOCUMENT TYPE WISE;---- REPROT   Eg:---- document type G/L       Vendor payment  VENOR INVOICE                   SA                           KZ                           KR SAME WISE CUSTOMER HOW

  • POD error in SUS system

    Hi, we are working on SUS implementation. we are sending Proof of Delivery from MM system to SUS system after creating GR in MM system using STPPOD message type. In SUS system we are getting the below error An error occured within an XI interface: Th

  • Oracle Linux 5.6 kernel  in OVM VM Template OVM_OL5U6_X86_64_PVM_10GB.tgz

    I am trying to understand the results I see on an OVM Oracle Linux Guest built from the Template == OVM_OL5U6_X86_64_PVM_10GB.tgz When I execute an rpm -qa | grep "^kernel" I obtain rpm -qa | grep "^kernel" kernel-uek-headers-2.6.32-100.26.2.el5 kern

  • No refund as yet... This is quite unbelievable!!!

    Hi, I had signed up for BT Infinity moving from VM but VM came back and "matched" BT's offer and my order with BT got cancelled automatically. But I have still not received my £120 which I had paid as the yearly line rental and I had contacted the CS

  • Re: Foreign key-type constraints

    The methodology my company has defined and uses to attack this problem is based upon looking for large grain 'business components' within the business model. When translating the functionality of the 'business component' to a physical design we end u