Log/history for users' activities.

Hi all,
I just started my job as basis consultant and currently doing some system check as my daily routine and having some questions and confusion regarding to:
Is there a way to check users' daily activities (including developers)? eg: what programs are they running, etc.(besides SM21)
Besides that, in SM37, where can i find the description for every jobs, means what is the purpose of the specific job? is there any table that contained the information ?
Any advise is kindly appreciate.
Thanks.
Rgs,
Nicholas.

I've tried to search but couldn't get my answer.
For the Job description, can i knw what is the function and task for the job ?
For eg, SAP_APPLICATION_STAT_COLLECTOR. How i knw what is the exact feature does this job doing ? Meanwhile, is there any Tcode or table that allow me to check for the feature of every SAP jobs, including Abap program. Besides going through the logic of the program.
Message was edited by:
        Nicholas Chang

Similar Messages

  • Portal Activirty Reporting and logs tracing for user activities

    We operate under a WAS JAVA 6.40 SP19 environment portal...
    Can the portal generate reports base on users activities … can the portal report on users’ login attempts with any of the followings:
    Login attempts by numbers of tries
    Login attempts by date
    Login attempts by fail or unsuccessful
    Login attempts by successful
    We currently are tracing SSO attempts into the ECC systems but we would like to report from a portal end perspective…

    Hi,
    Hope this link helps.
    http://help.sap.com/saphelp_nw04s/helpdata/en/58/728ea01cf64fff996b827f2a06f9b1/frameset.htm
    Blog: /people/daniel.wroblewski/blog/2007/09/09/fixes-available-for-portal-activity-report
    Thanks,
    Tanuj

  • Best way to get the entire history of User Activities

    Hi,
    We have a requirement to track the history (at least 1 year) of all the user activities. Currently we are using user stat which gives just 3 months history. Is there any other way to get the entire history?
    Heard about RBE.
    Can some one suggest on how to implement RBE? Can we use SAP database and GUI for RBE?
    Is there any other alternative?
    Thanks in advance,
    MR

    Switch on the Audit Log.  Lots of info here if you search on SM18/19/20
    Alternatively ask the Basis team to increase the retention of the log files so you can use ST03 for longer

  • NetInstall - Grey screen after logging in for user created during install

    I am creating a NetInstall of 10.8 for mass deployment in my workplace. I am currently having difficulty with a user account that was created by a script that runs in place of the Setup Assistant.
    I am trying to skip the Setup Assistant, and as such, the script touches the /var/db/.AppleSetupDone file (which doesn't exist at this point).
    This works, with the installation progressing straight on to the login screen where the user 'administrator' has been created, and is available for login.
    However, when the user logs in, they are presented with a grey screen & the mouse cursor. No dock, desktop, no finder menu bar.
    I am at a loss as to what is going wrong as this had worked perfectly fine in the developer preview.
    The script is as below: (certain sections have been removed for security purposes)
    Any pointers would be much appreciated.
    #!/bin/sh
    ############# SET VARIABLES ###################
    . /etc/rc.common
    #set primary network interface
    interface=`netstat -r -f inet | awk '/default/{print $6}' | head -1`
    #set server address for packages
    pkgserver='macimaging.blah.qld.edu.au'
    #Get default route's interface's ip address
    ip=`ifconfig $interface | grep "inet 10." | sed -e 's/^.*inet 10/10/' -e 's/ netmask.*$//'`
    #get version number of Mac OS X
    macversion=`sw_vers | awk '/^ProductVersion/{split($2, MINOR, "."); print MINOR[2]}'`
    ############# CHECK ADMIN PASSWORD ###################
    shadow=blah
    i=0
    # initialise variable
    passwd=""
    # if machine is set to automatically image
    if [ `nvram -p | grep -c reimage-key` -eq 1 ]; then
      # remove verbose boot arguments from nvram
      nvram -d boot-args
      # collect admin password
      passwd=`nvram reimage-key | awk '{print $2}' | openssl enc -aes-256-cbc -pass "pass:Aut0mat1cR31mag3" -a -d`
      # check it was successfully decrypted
      if [ $? -ne 0 ]; then
      osascript -e beep
      echo "Automatic imaging key failed. Press enter to continue."
      read
      passwd=""
      fi
      # remove key from nvram
      nvram -d reimage-key
    fi
    # if the admin password wasn't successfully collected
    if [ "$passwd" = "" ]; then
      #clear the screen
      clear
      say -v Victoria "Please enter the Administrator's password"
      while [ $i = 0 ]
      do
        echo "Please enter Administrator's password: (Note: Input is hidden)"
        #read password from stin but don't show
        stty_orig=`stty -g`
        stty -echo
        read passwd
        stty $stty_orig
        hash=`echo $passwd | shasum -a 512 | awk '{print $1}'`
        if [ $shadow = $hash ]; then
            #password is correct; continue with setup
            i=1
        else
            echo "Incorrect. Please try again"
        fi
      done
    fi
    #clear the screen
    clear
    echo "Log:"
    ############# SET EFI PASSWORD ###################
    echo "Setting EFI password"
    #to create a new EFI password, initially set it on a test machine with the GUI utility, then extract its value with: `nvram -p | awk '/security-password/{print $2}'`. Put that value in this command (also replacing our admin password) to generate hash for below: `echo "pass_from_nvram" | openssl enc -aes-256-cbc -pass "pass:ourcurrentadminpassword" -a`
    nvshadow=`echo "blah" | openssl enc -aes-256-cbc -pass "pass:$passwd" -a -d`
    nvram security-mode=command
    nvram security-password=$nvshadow
    #reset running variable for security
    nvshadow=""
    ############# GENERATE RC SHADOW FILE ###################
    #if you don't know how the following lines work, get a pillow ready for screaming into
    #the admin key (which is decrypted below) is used to decrypt publicly distributed packages to change the admin account's password (without having the password in the package in clear text)
    decypted_admin_private_key=`echo "blah" | openssl enc -aes-256-cbc -pass "pass:$passwd" -a -d`
    admin_private_key_hash=`echo "$decypted_admin_private_key" | shasum -a 512 | awk '{print $1}'`
    echo "$admin_private_key_hash $decypted_admin_private_key" >> /var/root/RC_admin_private_key
    chmod 600 /var/root/RC_admin_private_key
    #this keeps a record of the administrator password set on imaging
    RC_admin_pass_hash=`echo "$passwd" | shasum -a 512 | awk '{print $1}'`
    RC_admin_pass_encrypted=`echo "$passwd" | openssl enc -aes-256-cbc -pass "pass:$decypted_admin_private_key" -a`
    echo "$RC_admin_pass_hash $RC_admin_pass_encrypted" >> /var/root/RC_admin_shadow
    #a few security measures
    chmod 600 /var/root/RC_admin_shadow
    RC_admin_pass_encrypted=""
    decypted_admin_private_key=""
    ############# SETUP PARTITIONS ###################
    echo "Updating file system table to mount data partition on boot for user accounts"
    #Find if Home or Data partition exists (N.B. If Bootcamp is used the following awk commands need to be modified to only look for [Hh]ome and not [Dd]ata)
    partname=`diskutil list | awk '/([Hh]ome)|([Dd]ata)/{print $3}' | head -1`
    partdev=`diskutil list | awk '/([Hh]ome)|([Dd]ata)/{print $6}' | head -1`
    #If a Data partition exists
    if [ "$partdev" ]; then
         #Mount it on boot to /Users
         echo "LABEL=$partname      /Users   hfs     rw" > /etc/fstab
         #mount Data drive to /Users
         diskutil umount /dev/$partdev
         mount -t hfs /dev/$partdev /Users
    fi
    ############# CREATE ADMIN ACCOUNT ###################
    echo "Creating Administrator account"
    #create administrator account
    dscl . create /Users/administrator
    dscl . create /Users/administrator RealName "Administrator"
    dscl . create /Users/administrator PrimaryGroupID 20
    dscl . create /Users/administrator UniqueID 501
    dscl . create /Users/administrator NFSHomeDirectory /Users/administrator
    dscl . create /Users/administrator UserShell /bin/bash
    dscl . passwd /Users/administrator $passwd
    dscl . append /Groups/admin GroupMembership administrator
    dscl . append /Groups/_lpadmin GroupMembership administrator
    dscl . append /Groups/admin GroupMembership administrator
    dscl . create /Users/administrator picture "/Library/User Pictures/Sports/8ball.tif"
    dscl . delete /Users/administrator jpegphoto
    #reset running variable for security
    passwd=""
    ############# SET blah NETWORK LOCATION ###################
    echo "Setting up blah network location"
    networksetup -createlocation blah populate
    networksetup -switchtolocation blah
    echo ""
    ############# SET HOSTNAME ###################
    sleep 10
    dhcphostname=`host $ip | sed -e 's/^.* domain name pointer //' -e 's/\..*blah.*$//' -e 's/-wstudent$//' -e 's/-wstaff$//'`
    #while [ $? -ne 0 ]
    #do
    # sleep 5
    # dhcphostname=`host $ip | sed -e 's/^.* domain name pointer //' -e 's/\..*blah.*$//' -e 's/-wstudent$//' -e 's/-wstaff$//'`
    #done
    echo "Setting host name"
    #set host name from dhcp
    scutil --set HostName "$dhcphostname"
    scutil --set LocalHostName "$dhcphostname"
    systemsetup -setcomputername "$dhcphostname"
    ############# SET TIME ###################
    echo "Setting time zone"
    #set time zone
    systemsetup -settimezone Australia/Brisbane
    #set system's locale
    echo "Setting system's locale"
    defaults write "Apple Global Domain" AppleLocale "en_AU"
    echo "Syncing with time server"
    #sync time with local time server
    ntpdate ntp.blah.qld.edu.au
    ############# INSTALL FTP CLIENT ###################
    echo "Downloading and installing ftp client"
    curl -O ftp://$pkgserver/install/ncftp.tar.gz
    tar -xzf ncftp.tar.gz -C /usr/bin/
    rm ncftp.tar.gz
    ############# INSTALL POLICY MANAGER AND UPDATE POLICY ###################
    echo "Downloading and installing Policy Manager"
    #download and install policy manager
    echo 'get -R "pool/Policy Manager.pkg"' | ncftp $pkgserver; installer -verbose -target / -pkg "Policy Manager.pkg"
    rm -R "Policy Manager.pkg"
    echo "Downloading and installing Update Policy"
    #download and install update policy
    echo 'get -R "pool/Update Policy.pkg"' | ncftp $pkgserver; installer -verbose -target / -pkg "Update Policy.pkg"
    rm -R "Update Policy.pkg"
    ############# INSTALL MAC UPDATE COMBO ###################
    echo "Downloading and installing most recent Mac update combo package"
    #download and install the most recent combo update
    echo "get -R pool/MacOSXUpdCombo10.$macversion.Latest.pkg" | ncftp $pkgserver
    chmod -R u+x MacOSXUpdCombo10.$macversion.Latest.pkg
    installer -verbose -target / -pkg MacOSXUpdCombo10.$macversion.Latest.pkg
    rm -R MacOSXUpdCombo10.$macversion.Latest.pkg
    ############# INSTALL ADDITIONAL PACKAGES ###################
    echo "Downloading and installing additional post install packages"
    mkdir postinstall
    cd postinstall
    echo "get -R postinstall/common/*" | ncftp $pkgserver
    echo "get -R postinstall/10.$macversion/*" | ncftp $pkgserver
    chmod -R u+x *
    # save and change IFS
    OLDIFS=$IFS
    IFS=$'\n'
    # read all file names into an array
    fileArray=($(ls))
    # restore it
    IFS=$OLDIFS
    # get length of the array
    tLen=${#fileArray[@]}
    #install each package
    for (( i=0; i<${tLen}; i++ )); do
        installer -verbose -target / -pkg "${fileArray[$i]}"
    done
    cd ..
    rm -R postinstall
    ############# FINISH SETUP ASSISTANT ###################
    #load Policy Manager LaunchDaemon to run on boot
    launchctl load /Library/LaunchDaemons/au.edu.qld.blah.policymanager.plist
    #give time for policy to load
    sleep 2
    #set flag so OS X knows not to run Setup Assistant on next boot
    echo "<?xml version="1.0" encoding="UTF-8"?>\n<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">\n<plist version="1.0">\n<dict>\n <key>Address</key>\n <dict>\n <key>CountryName</key>\n <string>Australia</string>\n </dict>\n</dict>\n</plist>" > /var/db/.AppleSetupDone
    #set flag so blah Updater knows this machine's just been imaged
    echo "setup done" > /var/root/blahSetupDone
    #remove self
    rm /var/root/setup.sh
    echo "\nI will now reboot; please wait"
    say -v Victoria "I will now reboot; please wait"
    reboot

    mattn wrote:
    (1) You cannot run the installer program while booted into your primary partition; you must boot into the DVD. Restart the computer while holding down the C key until the DVD boots.
    This isn't true. The retail Snow Leopard DVD is designed to start the install procedure while started up normally. When you do this, after performing some checks on the target partition it writes some pre-install files to it before restarting automatically from the DVD. This speeds up the install procedure.
    (2) You cannot install Snow Leopard on this computer from a DVD that came with another computer; you must use, as it were, a free-standing commercial Snow Leopard installer DVD.
    The exception is, as Xian Rinpoche correctly surmised, a Mac model released after the currently available retail Snow Leopard DVD became available. The newest Macs require a later version of the OS than what is included on the retail DVD, which is why it won't work with the new i5 & i7 models. (See Don't install a version of Mac OS X earlier than that which came with your Mac for more about this.)
    As a general rule, use either the installer that came with the Mac on its grey system discs or a retail disc released after that Mac model was released. You can also refer to this handy chart of the OS version that ships with each Mac model.

  • How to download the log history for batch session?

    Anyone know how to download the log history from SM35?

    Hi ONG ,
    first u have to get the Q.ID , then u can use there Fms to get the Log of Sessions.
    CALL FUNCTION 'RSTS_OPEN_RLC'
      EXPORTING
        NAME         = LOG_NAME
        CLIENT       = LOG_CLIENT
        AUTHORITY    = 'BATCH'
        PROM         = 'I'
        RECTYP       = 'VNL    '
      EXCEPTIONS
        FB_CALL_HANDLE =  4
        FB_ERROR       =  8
        FB_RSTS_NOCONV = 12
        FB_RSTS_OTHER  = 16
        NO_OBJECT      = 20
        OTHERS         = 24.
    CALL FUNCTION 'RSTS_READ'
      TABLES
        DATATAB  = LOG_TABLE
      EXCEPTIONS
        FB_CALL_HANDLE =  4
        FB_ERROR       =  8
        FB_RSTS_NOCONV = 12
        FB_RSTS_OTHER  = 16
        OTHERS         = 16.
    CALL FUNCTION 'RSTS_CLOSE'
      EXCEPTIONS
        OTHERS = 4.
    <b>check the same steps how sap doing in SM35P</b>
    Regards
    Prabhu
    Message was edited by: Prabhu Peram

  • Where can I find log files for users logging into network homes?

    We're running an open directory master and are using AFP on another server to host our network homes.  I was asked to find a log of users logged into their network homes on a specific date and I'm starting to wonder if that's actually a log that exists.  I've checked the OD logs and in one of the password logs I can see users have authenticated but it doesn't say specifically to what (so it just lists they logged into something).  The AFP logs just show specific files being accessed without usernames.  So what am I missing?  What log would I check?
    Thanks for your help!!

    File Zilla is a dedicated ftp client that you use to upload your published web site to your server.
    I would suggest that you perhaps consider using Cyberduck instead as this might be easier.  Cyberduck is a dedicated ftp client in the same way that File Zilla is.
    To be able to upload what you need is your published website.  Open iWeb and select the site that you want to publish and then select publish to a local folder and your site will then be published to your desktop.  You then upload this to your server using Cyberduck or File Zilla.

  • LOG History on users

    Hello SDNer
    I wanted findout on particular day last December 11 ,2009 who and loged into my server .
    is it possible track and retrieve the list of users ?
    assumed that i got a set of users ,
    on that thay day , one particular use user ,i wanted to find out in which terminal he/she has logged in.
    please advice me.
    br
    Muthu

    Hello,
    SM20 is only possible when you have activated the Security Audit Log.
    If not you will not be able to query the Security Audit Log via SM20.
    Maybe the system statistics in the Workload Monitor can help you.
    Start tcode ST03N.
    Make sure you change the view to "Expert mode", this is the little arrow above the left panel.
    Afterwards choose a certain time period under "Total".
    Afterwards you have an option in the left-bottom pane called "User and Settlement Statistics".
    When you double click there you will receive a list of users that worked on the system during that specific period (so they also logged on).
    Pay attention that the system cumulates data in the Workload Monitor, you only have the recent days available, then the recent weeks, then the recent months, ...
    I hope this helps you.
    Success.
    Wim

  • User Logged History

    Hi Wish You Happy NEW Year,
    Hi Dear all,
    I have one doubt, so pls help me.
    How can i know,
    if Manager User is Logged(SAPB1) in one system
    and another person using same(Manager) User ID is logged in other system.
    What Table was stored a User Logged History?
    I need the User Logged History Table & Field.
    Regards,
    Madhan.

    Hi
    Try This:
    You could run a command NETSTAT on the B1 server to see all the ports open and identify .....
    In Comman prompt type netstat and check
    or
    Run "netstat -a" on command prompt
    by output u will get who was login to server in hidden way....
    and trace each IP....some body has delete or change d location/move
    I dont think so SAP is Not Storing the LOG file for user login in any Table, acording to me...let see
    Giri
    Edited by: Giri dharan on Dec 31, 2009 2:24 PM
    Edited by: Giri dharan on Dec 31, 2009 2:25 PM

  • Does change log history get lost in RAR AC when you move from 5.2 to 5.3?

    Since we upgraded to version 5.3 is appears as though we don't see any change log history for our functions under Rule Architect tab after we moved to 5.3. Does this make sense?

    You should not lose any entries. 5.2 to 5.3 upgrade would not remove anytning from database. You need to finish all the post-installation steps before you make any changes into 5.3.
    Regards,
    Alpesh

  • Log History 2013 see all stages of workflow in one place.

    In sharepoint 2013, I have setup a workflow using sharepoint designer 2013 to create 5 steps stages in a workflow. In each stage, I have used a log to history action to keep track of what stages the workflow got to.
    I know how to find the log history for all events on the sharepoint 2013 server. However, I would like to be able to see a display for the 5 stages of the workflow in one place. Thus can you tell me how to accomplish my request?

    When you say you know how to find the "log history for all events" I assume you are talking about the ULS logs.  That's not where the workflow will log the history that you are looking for.  Instead SharePoint logs history to a hidden
    history list in the site where the workflow is kicked off.  By default it is called "Workflow history" and you can view it by manually navigating to the following URL  http://[site
    URL]/lists/Workflow%20History.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • History report error: | An Exceptional Error occurred. Application exiting. Check the log file for error 5022

    Hi all
    I've got a error msg when try to generate a report using Cisco history report tool:
    Error | An Exceptional Error occurred. Application exiting.  Check the log file for error 5022
    It only happens when choose report template: ICD_Contact_Service_Queue_Activity_by_CSQ_en_us.
    User tried samething on other PC, it working fine.
    only on user' own PC and only choose this report, error appears.
    user runing windows 7 and do not have crystal report installed
    tried reinstalled the software, doesn't work.
    also tried this: (https://cisco-support.hosted.jivesoftware.com/thread/2041254) - doesn't work
    then tried https://supportforums.cisco.com/docs/DOC-6209  - doesn't work
    attached the log file.
    thanks.

    wenqianyu wrote:From the log file:Looks like you get a Login Window.Error message showed up after username/password be enteredThere is an error in the log: Error happened in comparing UCCX version and HRC versionYou may need to do a clean uninstall, download the Historical report from the server, and install it again on the PC.Does this only happen to one PC or to every PC with this application?Wenqian 
    I have completely uninstalled the HRC, and download from server install again -- still doesn't work with exactly same error.
    this matter only happens on this PC, when user try same thing on other PC, it works.
    so i think it not relate to server or account.

  • Can't access a school web site that I've used for years-can't log in with user and password. All other bookmarks are fine-tried several things including re-install-Other browsers are O.K.

    I have an iMac-have used Firefox exclusively for years. I can't access a school web site-can't get past the log in with user ID and password. Screen stays at log in screen. Tried clearing history-tried uninstall and re-install. All other web sites/bookmarks work fine. Thanks in advance.

    Try clearing the cache and deleting cookies for the site, this can sometimes resolve problems accessing sites that used to work. See [[how to clear the cache]] and [[deleting cookies]] for details.

  • Daily User Stats of users log on for the Day

    Im need stats of users log on for the previous days on the system. Ive been to transation suim but I get stats on the users last logon. I require stats on a day to day basis so that I can anaylze how many users log on every day.
    Thank you
    [email protected]

    Hi,
    You could use Audit Logs:
    http://help.sap.com/saphelp_erp2004/helpdata/en/c7/69bcb7f36611d3a6510000e835363f/frameset.htm
    You specify the activities that you want to log in filters using the transaction SM19. You can read the log using the transaction SM20. You can delete old logs with the transaction SM18.
    Regards,
    Siddhesh

  • Scheduler history for dropped user

    I am working in a dev environment where, for testing and experimentation, we are creating and dropping users/schemas with wild abandon. It appears that the history of scheduler jobs is not removed when a user is dropped. Is this by design?
    What is the recommended way of purging history for a dropped user?

    Hi,
    Not, it is not recommended or supported to delete directly from any scheduler SYS base tables.
    If you need to selectively clear out the job log you can do so using a DBA user or any user who has been granted the MANAGE SCHEDULER system provilege.
    While logged in as that user, write a cursor loop over jobs from users you are not interested in and for each job use something like
    DBMS_SCHEDULER.PURGE_LOG(log_history => 0, job_name => 'user.job_name');
    Hope this helps,
    Ravi.

  • How to Use 'uid' for AD Users Without Domain Name For User Log in OAM

    How to Use 'uid' for synchronized Active Directory (AD) Users into Oracle Internet Directory (OID) Without Domain Name For User Logins in OIDDAS and OAM
    We successfully integrated OAM 11g with EBS R12.1.3 Now all the AD user id's stored in fnd_users table as [email protected]
    How can we remove @abc.com
    We are using OID 11g and OAM 11g
    Found the similar note for OID 10G: How to Use 'uid' for AD Users Without Domain Name For User Logins in OIDDAS and SSO [ID 580480.1]
    We are in OID 11g.
    Any help on this greatly appreciated.

    I couldn't find any reference that could be helpful -- Please log a SR and see if this is supported and if the steps are available.
    Thanks,
    Hussein

Maybe you are looking for

  • Page up and page down = pages go off centre

    A very basic question: when flipping through the pages of a book I've laid out, it would be nice if using the page up or down keys moved to the next page and centred them. Instead, however, the pages are moved knocked out of centre each time. How to

  • MM functional Help

    experts, I need a help in MM functional area. I have a requirement to display in report for differnt movement types like transfers, issues and receipts. The movement types for tranfers 411 412 , but I observed in MB51 that 411 text(+ sloc to sloc) an

  • Restrict values of characteristic in input-ready new rows query

    Hello all We are creating an input-ready new rows query. So we added characteristic as row. We need the values in F4 (while choosing value in this row) are to be restricted by hierarchy (or just restricted by some algorithm - list of values). But if

  • How do I apply the same duration to all my pictures on the timeline?

    How do I change the duration of my pictures in one shot?

  • Partition key modification effect the performence of the table ?

    we have a partitioned table with more than 15 partitions(Range partition 9i version). now we want to modify the partition key using row movement option, but i found in forums and google that partition key modification may effetcs the database perform