Change log in HR (Table PCL4 Cluster LA)

Hi @ all,
when infotype logging is activated changes made in infotypes are logged into table PCL4 cluster LA.
We have the following problem:
HR masterdata is stored into our system from an external system via ALE. But the problem is that no change logs are written. But we absolutely need this information!!!
Now I have coded a RFC function module which reads the log data from the external system. This also works fine. But how do I have to store the data into <b>our</b> PCL4(LA)???

nope - I didn't try this because I don't know about the data which is needed to store the change log correct.
Other question: I've found the function module "HR_INFOTYPE_LOG_CREATE" which seems to do what I want. But the problem is that there is no documentation available. The FM has four table parameters - does anyone how how to fill them? Has anyone used this FM? It is not used within standard programs - the "where used" function does not report any hits.
Thx in advance

Similar Messages

  • Difference between Delta "Change Log" and "Active Table (Without Archive)"?

    In BI7.0 environment, we perform our Delta loads (the DTP settings under the Extraction tab, there is a field called Extraction Mode and it's value is selected as "Delta") every day among all our DSOs.
    There is a section called "Delta Init. Extraction From..." under the same tab in DTP, there are four radio buttons:
    Active Table (With Archive)
    Active Table (Without Archive)
    Archive (Full Extraction Only)
    Change Log
    Then what is the difference between "Change Log" and "Active Table (Without Archive)" if both Extraction Mode is "Delta" for two Delta loads?
    Thanks!

    Hi ,
    The new options SP16 has are:(Chk Note 1096771)
    Active Table (with Archive)
    The data is read from the active table and from the archive or from a near-line storage if one exists. You can choose this option even if there is no active data archiving process yet for the DataStore object.
    Active Table (Without Archive)
    The data is only read from the active table. If there is data in the archive or in a near-line storage at the time of extraction, this data is not extracted.
    Archive (Only Full Extraction)
    The data is only read from the archive or from a near-line storage. Data is not extracted from the active table.
    Change Log
    The data is read from the change log of the DataStore object.
    Delta will always be picked from change log table.Only during intialization you can choose between getting data from change log or active table.If you are doing the load first time and are initializzing delta in subsequent data targets, then pulling data from active table will get lesse volume of data then it would have got from change log table....All subsequent deltas will be picked up from the change log.  And when we need to reload data into the data target (which would be a full load) - we use active table.
    From change log : you can take below ones as targets
    1) Cube 2) DSO with Addition as the update for the Keyfigures
    From Active table: you can take below ones as targets
    1) Cube ,if and only if, the records are never changes in the source once after creation
    2) DSO with Addition as the update for the Keyfigures ,if and only if, the records are never changes in the source once after creation
    3) DSO with Overwrite as the update for the Keyfigures ( incase deletions is not happening in the source system)
    Pls check this link
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/47/e8c56ecd313c86e10000000a42189c/frameset.htm
    Regards,
    CSM Reddy

  • Activate change logs for the table V_T007K

    Hi,
    Change log check box is activated in table and change logs is activated in system. But still I am not able to view any change logs recorded for the table V_T007K using SCU3 transaction.
    I tried by changing some data and than checked the SCu3 transaction. nothing is recorded against the table.
    Please let me know what needs to be done to capture the change logs for the changes done to the data in the table V_T007k table.
    Thanks in Advance.
    Thanks & Regards,
    Madhuri.

    Hi
    The table u mentioned V_T007k  is not a transparent table
    .its a view only for views u cant track changes.
    But only for transparent tables u can only track changes thru SCU3
    Also u can find the changes in a table from SAP TABLE
    CDHDR and CDPOS.
    if helpful reward me points.
    Regards
    Manas Ranjan Panda

  • Change logs for Z table.

    Hi All,
    I am trying  to fetch the old value and new value for the z table field.Change log is activated for the Z table. but i dont know how to fetch the change logs.
    SCU3 is the standard transaction to see the change logs for all the tables.
    Is there any table where the change logs values are maintained?
    Does anyone know how to get the change log value?
    Thanks in advance.
    Regards,
    Amruta.

    Hello,
    If for a specific set of tables no change documents are triggered by SAP you can always setup your own Change Document Object with transaction SCDO.
    Of course you need to be careful with this transactions (how big is the table data, how many changes, etc...).
    Table logging is something else, they are stored in table DBTABLOG and can be analysed via SCU3.
    For table logging you need extra system parameters to be set, they are explained in SAP Note:
    Note 1916 - Logging table changes in R/3
    Pay attention with table logging because a lot of tables are logged in DBTABLOG once you activate the parameter, this can have a major impact on performance.
    To have an idea what other tables will be logged, check tcode SE16 on table DD09L and put an 'X' in field PROTOKOLL, result will be thousands of tables.
    In your specific scenario I think it is best you go for the change documents with SCDO.
    Wim Van den Wyngaert

  • RPUAUD00 Change Log Issue on Table T585B

    I added some new infotypes to the RPUAUD00 change log on tables:
    t585a
    t585b
    t585c
    Everything seems to be working as expected, but I received soft errors on t585b:
    "! All data fields 0006 01 will be deleted"
    when I used * (all fields).
    This did not happen when I used actual field names.
    Does anyone know what that means?
    thanks!

    It's just a warning for this specific view if you put '*' in field name. What it means is that if you currently configure audit changes
    for specific fields of this infotype, all of these entries will automatically be deleted by SAP when you use '*' (all fields are marked for audit). Therefore, there should not be a concern on the message.

  • Maintain Change log between two tables

    Hi,
    I have input data as below in two tables temp1,temp2.
    I need to find the difference then maintain a change log as below;
    so I need query to get output in this way;
    Thanks
    Please Mark This As Answer or vote for Helpful Post if this helps you to solve your question/problem.

    you cannot have same name for two coloumns in a single select statment .
    so name its with alias name such as colName and colName1
    select T.colName as colName, T1.colName as ColName1 ,T.TableName as tableName, T1.TableName as tableName1 ,T.dataType as datatype, T1.Datatype as datatype1 , T.ColLength as column Lenghth, T1.colLength as Collength1,
    (IF (T.colName = T1.colName  and T.TableName and ...compare rest of the columns)  THEN match
    ELSE IF (T.colName <> T1.colName) THEN ColumNamechanged
    ELSE IF (next colunm name) THEN changedcolname
    ELSE
    FROM temp1 T ,temp2 T1)
    AS change
    FROM temp1 T ,temp2 T1) as chages
    from temp1 T ,temp2 T1 where T.colName = T1.colName  ;

  • How To See Change Log For A Table Entry

    Hi Experts,
    One entry is created in a table. I want to know, when that entry was created/ changed.
    Is there a way to find it out.
    PLZ NOTE: Table doesn't contain any DATE field.
    Regards

    Hi,
    or else do like this...
    In order to maintain the log changes the main pre reuisite is to checkmark the checkbox in dataelement of table filed.
    To do this...
    goto transaction SE11>enter ur table name>cleck on fields tab>cleick on dataelement->click on Furthercharacterstics tab-->select the checkbox'Change Document'.
    If u dont select dis the u cannot see the log entry of the particuylar field..Do like this for each dataelement for each table field...selecting all the fields is not mandatory..u can choose the table field u want to see the log report..
    Once u done with dat...
    Goto SCDO transaction> click on create>give a name change doc startwith Z or Y only>Follow the prodedure and in-->name of table field>enter u r TABLE NAME->click on individual field checkbox.--->insertentries..
    Once u done with dis..
    Goto SE16->enter CHDIR or CDPOS->press ENTER->enter u r object id>F8
    U can see the new and old value of a table entry.....

  • Create change log for Z tables in XD02/XD03

    I have added a new tab, to customer master screen. The new screen under that tab has 4 fields,
    those 4 fields are inserted into Z table.
    Can you please give me the sequence of steps so that system will show change history with Z fields?
    I checked that fields are set for change document.
    I have created change document using SCDO.
    How to use method GET_FIELDNAME_FOR_CHANGEDOC of CL_IM_V_CUSTOMER_ADD_D_CS class and method GET_CHANGEDOC_FOR_OWN_TABLES of CL_IM_V_CUSTOMER_ADD_DATA class?

    Hi,
    I have a similar problem with MK02 (vendor master).
    I tried with appending a user field to LFA1.
    I hand over the table and fieldname (LFA1-Z....) in parameter E_FIELDNAME of method VENDOR_ADD_DATA_CS.GET_FIELDNAME_FOR_CHANGEDOC .
    With method GET_CHANGEDOC_FOR_OWN_TABLES of BAdI VENDOR_ADD_DATA I provide the objectclass 'KRED' to the standard program.
    However, there is no change document created for changes on the appended field. If I change one of the standard fields the change document is created.
    Do I have to put my own coding for change document creation somewhere in the BADI methods?
    Any idea?
    Thanks,
    Holger
    Edited by: Holger Probst on Apr 28, 2010 1:30 PM

  • Function to create change log for any table

    Hi
    There is some FM which give me information what was changed in ztable for actually process.

    I got.
    It is BAL

  • New entries in table TSTC not capturing in scu3 change logs

    Hi ,
    We have TSTC table log enabled.
    New Entries which comes through transport in the table TSTC are not capturing in change logs.
    We have created a new Z T-code and transported it to Quality and then to Production.
    But in the change logs of the tbale TSTC it is not captured both in quality and Production.
    In the table TSTC t-code is present.
    But the change log for the table doesnot show any new entry created.
    In development change log of TSTC, the change is present but in Quality and Production it is not present.
    Development client : 400
    Quality Client         : 600
    Production Client    : 600
    Can any one spill some beans on it...
    Thanks & Regards
    Kiran

    You need to add "recclient = ALL" (or same client value as "rec/client" profile parameter in RZ10) to the transport profile as well in the STMS.
    Search SAP notes and the forum here for "recclient" (without "/")
    Cheers,
    Julius

  • How to capture - Custom tables change log

    Hi,
    I need to maintain the change logs for Cutom tables. But, my custom table contains the fields with data type DEC. So, i am getting the record as "####" for DEC fields.
    These values, i have captured in Table Maintenance generator Flow Logic Editor - In the loop of EXTRACT or TOTAL.
    PROCESS AFTER INPUT.
    MODULE LISTE_EXIT_COMMAND AT EXIT-COMMAND.
    MODULE LISTE_BEFORE_LOOP.
    LOOP AT EXTRACT.
    ENDLOOP.
    So, can you please help me to find the solution?
    Regards,
    Srinivas
    200AR99#u200C######   MUKKAVILLI  20090728
    200AT02###u200C####   MUKKAVILLI  20090731

    Hi,
    Please refer to the following link
    http://www.saptechies.com/how-to-activate-the-img-change-log/
    Track Table chnages
    Hope this helps.
    Regards,
    Swetha

  • Change has to be made in cleani up change log/PSA tables from Process chain

    I need to clean up the Change Logs and PSA tables from  the Process chains. Currently the change logs and PSA are deleting 90 days and 60 days from the  PCu2019s. I need to change this to 7 days.
    I took one PC first. It has DELETE PSA REQUEST. when i double click ..under 'Selection pattern for pattern-based deletion' - there are so many data sources listed (older than - 60days). Now i need to change this to 7 days . how do i do it?
    Please guide me stepwise.

    When I searched with this I got this document...
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a02ba9e7-bb6f-2c10-09b4-e86b9fcbad41?QuickLink=index&overridelayout=true
    Please search forum to get your solution faster
    Regards
    Anindya

  • Change Log of Table

    Hi,
    How do you display Change Log of  a table in the Report.
    Answers will be rewarded with points.
    Thanks,
    Bluesh

    hi check the table..
    from menu select Utilities--> Change log.
    or tables DBTABLOG or V_T585A
    Regarding  Log changes in table
    regards,
    venkat

  • Change Logs for TCODE -- FILE

    Hi Friends,
        Please help me in finding the change logs  for the TCODE  FILE,
        i.e  The changes made to the Logical paths
       I had tried  Utilities---->change logs , but unfortunately i cannot find any changes logs
       But there are changes made to the logical paths in my system but i cannot see them in change logs
    thanks
    chandrasekhar j

    rec/client is a profile parameter, you can view the settings in transaction RZ10.  However I find program RSPARAM more useful, the report lists all system parameters with their default and altered value.  Also if you double-click on a parameter you can get to the full help text for its meaning.
    The parameter essentially switches on table change logging for configuration tables (based on the technical settings of the table) and has to be set before the changes are made.
    Hope this helps.
    Nick

  • Need of change log

    Hi
        we delete one sales office from the settings,few days after when I look for the change log for the sales office ,
         system shows Logging is switched off.
       Moreover I checked in the TR table also.It doesnt show any deletion of that particular sales office.
       Suggest me in what way I can find the log for this

    Hello,
    You have to activate the Table TVBUR inorder to display the change logs.
    For this you have to goto SE11 in change mode  ( it will ask for the Access key) then click on the  GOTO --TECHNICAL SETTINGS
    There in the below you can find one field LOG DATA CHANGES. Please check it and Activate.
    Then you can see the change logs for the table in  SE16.
    If you dont have access to do the above settings ask your abaper to follow the same steps.
    Hope it is clear,
    santosh

Maybe you are looking for

  • Mac Os X 10.6.8 Java update

    Hi, Recently I cannot run Java applications for my work. Where it worked before, it doesn't anymore. It shows the message inactive Plug-in. When I click on it Mac start searching for updates but says everything is up-to-date, so that doesn't resolve

  • Rating Widget - Update afterRating following rateHandler

    In the rating widget I am implementing, I want to fade the stars out onclick, then fade them back in with the updated "average" value showing. I am using the rateHandler to call my fade function, and then the fade function calls another fade to handl

  • Error in PR,PO

    Hi All, We had  submitted PR 111111 back in February.    It showed up in the buyer's queue and he generated the PO.   Since then it has shown up two more times. We need to stop this . Please help me how to  fix this. Thanks.

  • Searching java sdk documentation

    My question is: "Is there a way to search the Java 2 SDK, Standard Edition Documentation using JDeveloper?" I know how to browse it, using either browse javadoc or through the help file, but when I do a search using the Help Navigator it does not go

  • How to ...Urgent !

    Assume index.html has querylot.jsp to query the oracle database to list 2 info. ; Lot_ID & Lot_Date. After it lists the information, users should be able to click on Lot_ID and take them to another (.jsp) page where it extracts more info about that l