Log for changes in the SAP table

Hello All,
I have a SAP table in which we want to log all the changes being made by the number of users like modifying some record or adding a new record.
Now What I have done is in the SE11 under technical settings I have checked the checkbox which is "Log data changes", Needless to say I have the developer access key to the system.
Now I want to test whether changes being made by me in the SAP table are logged somewhere or not I want to know where can we see the changes being logged made by me.
Is there a tcode to see the changes being made in the table or a SAP table exists for this.
Thanks,
Mark

Hi,
BAL_OBJECT_SELECT --> To get the LOG for a object
You can use below Tables/Structures
DDPRT -->  Structure of ABAP/4 Dictionary logs
DDPRTXT
Regards
Sudheer

Similar Messages

  • VAT code mandatary status fileld for Account; from the sap tables

    Hi All,
    I need a big favour from you all on this FI requirement
    As you all know in SAP FI transactions (FB01), we enter account and some of them need VAT code as mandatory enrty;
    I need to write a sql to check whether VAT code is mandatary for account or not from the config sap tables;
    Can I know the table name and the filed names related to this
    Many Thanks
    Iver

    HI,
    No specific table tells you whether particular account requires VAT code or not.
    This is based on the GL account tax details maintained. In the FS00 - GL> in "Control tab" based on the tax category it will ask the VAT code.
    Without maintaing the details as said above , you can't use the tax code while doing FB01.
    VVR

  • Error: while configuring logs for changes in infotype data

    Hi All,
    I am configuring the following Tables for maintain logs for changes in infotype data.
    V_T585A, V_T585B and V_T585C
    While configuring V_T585B, when i input * in 'field name' column it gives me an warning message " All data fields in **** infotype 31 will be deleted.
    Please let me know, what does this warning message means?
    Also, How is the report RPUAUD00 read?
    Regards
    Simran

    Hi Simran,
    you are not suppose to give the IT 0031-Reference Personnel Numbers in these tables. why because this will done at the time of Employee hiring only and we don't change this. if you change you will lost the old data in the IT.
    Normally we assign only the IT which we change frequently for the master data. example like 0 1 2 7 8 9 27 582 - 589 2001 2006.
    if you are configuring today means from today on-wards any changes had made to these IT's you can see in the report. before changes will not be seen. in the report you have to choose either long-term document / short-term document and remaining fields as per the requirement.
    Regards,
    Praneeth kumar

  • Lock Role for Changes till the transport is released

    Issue : since roles are managed by multiple security administrators, changes are moving against the sequence.
    We have multiple security administrators, is there a way to lock a role for changes until the task/ req is released.
    Example Scenario :
    Security admin 1 : if there is a change request to add SU01 to the role: Z_TESTROLE, Security admin adds it and creates a Change request but does not release it.
    Security Admin 2 : the security admin 2 will get a Change req for the same role Z_TESTROLE to add a tcode PFCG to it. Security admin 2 does his job and moves his transport now even though the first transport does not move the change made by the first security admin moves with the transport for the second admin.
    We have multiple security administrators, is there a way to lock a role for changes until the task/ req is released.

    Hi all,
    Thanks for your responses.we follow a change procedure but I guess its just needs to be refined. Everybody figured out that this is a coordination issue but I was asked to research on any technical ability to handle this.
    Here is a brief overview of our process :
    1) BPO approves the change
    2) Role owner support manager approves the change
    then the Change request comes to 3)Security Manager for her approval.
    I feel from Sox prespective the 3rd approval in not manadatory.
    I'm I correct ??? where can I find Sox guide for SAP ?
    Recap of the incident:
    1)A change ticket is created for the t-code creation and a task is created for the role in which this report is to be added.
    State I role Z_TESTROLE  is with ZMMR0025
    After adding the new report ZMMR0055 the old report ZMMR0025 is removed.
    State II
    The role Z_TESTROLE has tcode ZMMR0055
    now this is tested in development system by the requestor.
    Before this goes into PRD via QA a newsflash is sent to all the endusers (so that they know which t-code to use)
    Meanwhile if another security administrator works (suppose adds a new tcode or changes an authorization)  on this while the role is in state II changes made by Admin 1 are transported along with the second change.
    State II + new changes = State III
    When the role reaches PRD in state III result is the end user losses access to the required functionality ZMMR0025 before ZMMR0055 is made available.
    I hope I’m clear , please let me know if I need to be more specific on any part.
    I appreciate your help.
    regards,
    Salman.

  • When trying to create connection using Contribute 6.5, get error message "Unknown error.  Please see the log for detail."  The log says "Network connection timed out."  What do I do now?

    Have been using Contribute 6.5, and earlier versions, for years with Hostway without any problems.  All of a sudden I cannot create a connection to our website.  Tried to chat with Adobe a twice now and got no help.  Yesterday they started a chat with me, then ended the session without any communication!  My problem has been going on for several weeks now.  I uninstalled Contribute, downloaded and installed again, but it did not help.  Hostway had me connect with Zilla and everything worked fine.  So, they say the problem is with Adobe.    The last attempt ended with "Unknown error. Please see the log for detail."  The log says "Network operation timed out."  Does anyone have any suggestions?

    Hi There,
    Can you please try using any other Internet connection outside your company's network and see if it is working? Alternatively, Can you please try the below settings from the Advanced... Menu while creating the connection using FTP details and try to create the connection again:
    Regards,
    Mayank

  • How do I listen for change in the global position of a Node

    Hi there,
    I want to create a Wire/Connection node between two scene nodes. I want this Wire node to be updated when one of the nodes is moving. In the common scenario I would listen for change events in the target nodes position and update the Wire :
    targetNode1.translateXProperty().addListener(new ChangeListener<Number>() {
    public void changed(ObservableValue value, Number oldValue, Number newValue) {             
    wire.setStartX(targetNode1.getTranslateX());
    wire.setStartX(targetNode1.getTranslateY());
    wire.setEndX(targetNode2.getTranslateX());
    wire.setEndY(targetNode2.getTranslateY());
    The problem is that the target nodes are children of another container nodes(that are actually moving). So listening for change events in the translate properties of the target nodes does not work(their parent nodes are actually moving)
    Is there way to listent for change in the global position of the target nodes relative to the Scene?

    It sounds very similar to a problem I posted about earlier...
    How to implement a UI similar to a UML Diagram with connections?
    I ended up making my own special bounds property, that updates when the parent's special bounds property changes.
    I also had to listen to the parentProperty change event to add/remove my listener on the parent node.
    All in all, a pain in the butt. There should be an easier way.
    The shortcoming of the solution is that all the nodes in the hierarchy must have my special bounds property implemented (ie. they're all classes under my codebase such that I can implement it), which for the moment is true... I'd like a cleaner solution however.

  • How to send  changes in the Database Table Periodically using Change Pointe

    Hi,
           How to send  changes in the Database Table to the external system Periodically using Change Pointers.
    Thanks & Regards,
    Gopi.

    That depends on what table you are referring to.

  • Log for changes

    Hi all,
    I'm in the need of log all the changes that have been done to a ztable. the log should be as fallow:
    username date/time field changed value and new value.
    How can I do that.
    your help will be appreciate it.
    Thanks in advanced,
    Fidel.

    Hi Fidel,
    I hope you must have found out the details as the post shows as solved. Just found this and thought you might be interested.
    <u><b> For a table to be logged, 2 requirements must be met:</b></u>
    1. In the technical settings of the table, checkbox "Log data changes" is marked.
                  You can go to the technical settings via Transaction SE13 or via the path "Tools --> ABAP Workbench --> Development --> Dictionary", enter the table name and click on "Change". On the next screen, click on "Technical settings" (CtrlShiftF9).
                  If you change the technical attributes of a table, make sure you save and also update these changes.
    1. Logging is also set in the system profile. To do this, set profile parameter rec/client (lower-case!) to one of the following values:
    OFF: Generally no recording (e.g. central system switch)
    nnn: Logging for client-specific tables only in client nnn
    mmm,nnn,ppp ...: Logging for client-specific tables in the clients listed (a maximum of ten).
    ALL: Logging always, for client-specific tables in all clients. Caution: This setting is sensible only in special cases. Note that with the "ALL" setting or when upgrading all test clients, (including SAP client 000) changes will be recorded in the log file.
                  The default settings is OFF - that means, no default logging takes place.
                  If rec/client is not OFF and logging is active in the dictionary, non-clientspecific tables are always logged. This setting is usually used in the period of the installation and test phase only.
                  Please make sure that the values for rec/client are the same on all servers of a system. Only then logging will work correctly.
                  With the production start, logging tables relevant to account reporting should be activated (obligation to prove due to national orderliness requirements)
    Hope this info is useful.
    Cheers
    VJ

  • Create a new entry for zfield in the CDHDR table when sales order is create

    Hi,
    We have some custom field added to table VBAP and that field need is updated thorugh transaction VA01 or VA02.
    The Function poeple is asking to Update the CDHDR table for the ztable when ever the field is updated ,and they want
    the changes to appear in the sales order changes Log.
    Prabhudas

    Problem solved.
    By using the ..
    Used this FM "VERKBELEG_WRITE_DOCUMENT" in MV45AFZZ in exit...DOCUMENT_SAVE.
    by passign the only VBAK and VBAP table structure of XVBAP and YVABP and field name as ZZFIELD.
    Prabhudas.

  • Log for changes done before posting LIV in Tcode MIRO

    Hi
    By default data will be fetched from PO/GR for LIV however our users are changing few details such as payment terms, tax code, vendor code, vendor invoice amount etc., before posting LIV in tcode MIRO. We don't have any log for these changes done by our users.
    We want to know what are fields which have been changed by our users at the time of doing LIV (i.e. before posting LIV).
    Can any one help us in this regard.
    Regards
    P Karthikeyan

    If you know those fields, you can find the differences for those field in table EKKO and EKPO for PO, the similar value will be available for IR in table RBKP and RSEG.
    Like as payment term, The payment term is saved in table RBKP - ZTERM for MIRO.
    The same will be available in table EKKO - ZTERM for PO.
    If the value for both fields are same, then user has not changed the field at the time of MIRO.
    If the value mismatched, then user has changes the value in MIRO.
    In this way, you can find the differences for other fields.

  • Not able to view/check the SAP tables in BI server

    Hi All,
    Actually i was trying to view/check some SAP tables in my BI server through SE11. For example CSKS, MARA.....etc.
    But i am unable to view any tables in my BI server. I have cross checked many other tables also. The same tables i can check in my ECC server. but in my BI server system shows the message " CSKS does not exit. Check name".....so please advise whether it is some authorization problem or some thing else?.....

    Hi,
    BI/BW = OLAP System for Ready only Data
    ECC    = OLTP System for Business Transactions Purpose , Read/Write/Delete/Update/Change Data.
    So you can't find ECC Business Related tables in BW. So please check in ECC.
    If we have MARA,VBAK,VBAP etc tables in BW, why we need BW Server seperatly, we can analyse the data directly without loading to Cube/DSO.
    Thanks
    Reddy

  • Not able to see all the SAP tables from CR 2008

    Hi All,
    1)I am not able to see all the SAP database tables(DEV server) from Database expert menu in CR 2008. Only tables those start with alphabet letters upto A & B are visible. I checked the database connection>right click>options> found no filters as well.
    We are using the CR 2008 trial version with SAP ECC.
    2) When i am trying with Production Server of SAP ECC, I am not able to logon to the SAP from CR 2008. It is giving error message
    as : LOGON FAILED : User USER1 has no RFC AUTHORIZATION for function group SYST
    Please help me to resolve these. Thanks in advance.

    Thank you very much ingo.
    You helped me a lot.
    One more question, when I am trying for SAP database connections say for ex: 10.57.410.70, again and again some times the connection is getting saved in my connections with as new versions/variants like
    10.57.410.70_1 or so. How to overcome this.
    Thanks in advance ingo
    Badari

  • Query a log for error in the last 30 minutes

    Hi,
    I'm trying to parse a plain text log file for errors and then send an email.
    The error code I'm looking for is "297 WARN". I only want to check the last 30 minutes of the log file and will run the PowerShell parsing script every 30 mins.
    I'm stuck at the bit where I make PowerShell only scan back the last 30 minutes. When I run the script below without the substring it works but parses the whole log file. How can I get it to stop parsing at the 30 minute timeline??
    The script I have so far is as follows:
    # Set Time Variable
    $Date = Get-Date
    $dateStr = $Date.AddMinutes(-30).ToString("yyyy-MM-dd HH:mm")
    #Set log file location
    $File = "C:\log.txt"
    # Get content from log to time
    $logfile = Get-Content $File | ? { $_.substring(0,11) -ge $datestr }  | Select-String "297 WARN"
    if ($logfile) {
      foreach ($line in $logfile){
        Write-Host $line
    <# 
      ###Send Email
        $mailMessage = New-Object System.Net.Mail.MailMessage
        $mailMessage.IsBodyHTML = $true
        $mailMessage.From = "$email"
        $mailMessage.Subject = "Log Checked with Error"
        $SMTPServer = "smtp.mailserver.com"
        $SMTPClient = New-Object Net.Mail.SmtpClient($SmtpServer, 25)
        $mailMessage.To.Add("[email protected]")
        $mailMessage.Body = $line
        $SMTPClient.Send($mailMessage)
        $LogAttachment.Dispose()
    #>
      } else {
       Write-Host "$($Date): no errors"
    The log file has the following format (two lines shown):
    2015-01-21 16:58:43,148 INFO  [ActivityInstanceBean] (CarnotApplicationQueueListenerContainer-1) State change for Activity instance 'Warten',  oid: 1853 (process instance = 259) (model oid = 2, version = 4.1.6, revision = 0): Created-->Hibernated.
    2015-01-21 16:59:00,297 WARN  [SQL] (CarnotDaemonQueueListenerContainer-4) Failed query: SELECT oid, type, code, stamp, state, partition FROM dbo.daemon_log WHERE (dbo.daemon_log.type = 'event.daemon' AND dbo.daemon_log.code = 0 AND dbo.daemon_log.partition
    = 1)
    Thanks very much fro any help!

    Hi Dforager,
    To parse the log file basd on the datatime, please refer to the script below to start:
    $file = "e:\log.txt"
    $Date = Get-Date
    Get-Content $file |
    Select-String "297 WARN" -SimpleMatch |
    select -expand line |
    foreach {
    if($_ -match '(.+),297 WARN\s(.+)'){
    new-object psobject -Property @{
    Date = [datetime]$matches[1]
    Error = $matches[2]}|
    where {$_.Date -gt $Date.AddMinutes(-30)}
    If there is anything else regarding this script, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • RV325 System Log Entries - Kernel - kernel: The MAC table overflow. (Neighbour table overflow.)

    Hello,
    I have a RV325 Router. Entries in the System Log are repeated over and over.
    The messages are:
    2015-01-20, 04:11:59
    Kernel
    kernel: The MAC table overflow. (Neighbour table overflow.)
    2015-01-20, 04:11:59
    Kernel
    last message repeated 8 times
    2015-01-20, 05:52:19
    Kernel
    kernel: The MAC table overflow. (Neighbour table overflow.)
    Packet traces point to thousands of ARP packets coming from the ISP to my WAN port. Most of the ARP packet sources/destinations are not even close to my ISP DHCP assigned IP.

    Hi, Mark.
    I'm not an Apache guru, but you may have two different issues here, depending on when the
    kernel[0]: file: table is full
    message is time-stamped relative to when you issue the
    sudo apachectl start command.
    1. Looking at the results of this Google search and some others tends to indicate that common causes for httpd could not be started are errors in the /etc/httpd/httpd.conf file.
    You might also want to take a look at some of these other Discussions threads and in these "Networking and the Web" Discussion threads.
    2. One explanation I've found for kernel[0]: file: table is full is here.
    Hope these ideas help.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • Log for Change of Real-Time Load Behavior

    Hi experts,
    is there a log for the change of the real-time load behavior?
    I checked SLG1, but I did not find any object / subobject that seemed to be helpful.
    Angie

    Firstly,
    How are you changing the real-time load behavior, are you using any process chain variant,in that case you can look at the process chain log..

Maybe you are looking for

  • Error reading Web application occurs when starting one server in the cluster

    Hi All,           I have configured two cluster servers in the win 2000. Admin server also win           2000. One cluster server joins the cluster while other gives following error           and starts. But it seems that it does not join to the clus

  • Shuttle Item Properties in Apex 3.0

    Hi, Hoping someone can assist with the new Shuttle item in Apex 3.0. Basically, can someone please let me know how I can perform the following: a) change the width of the shuttle as when I make a change to the width property, it doesn't seem to make

  • Using value of selected item list

    I'm working on existing code. I want to use the value of a selected item in a list to use it in a query. So, the corresponding records should be displayed in a subform when an item of the list is selected. This is the code i'm using: This is the code

  • Plug in AC or remove AC?

    hi my friends. I buy a macbook pro 13 inch. I have one important question. I don't know for ideal battery use when use macbook pro and battery is 100% keep plug in to AC or use battery and remove ac adapter.

  • Help!! my iphone just stuck on the contact page!

    I just wanted to call someone and it stuck on the contact page! i tried to shut it down but when i opened it , it steel on the that page and refuse to get back to the homepage , what should i do?