BAPI -  user last modified Name, Date and Time in SU01 of a Particular User

HI Experts,
After searched a lot in SDN , i am posting this thread,
I want to know any  Standard BAPI  to give LAST modified User name , time and Date in SU01 of a particular User.
I checked * BAPI_USER_GET_DETAIL* , its giving LAST modified  time and Date in SU01, But I want Last modified user name as well.
I have 2 questions related with the above scenario,
1) Which BAPI gives the details of LAST modified User name , time and Date in SU01 of a particular User.
2) Any Table is there to give details of LAST modified User name , time and Date in SU01 of a particular User for a time period ,
For eg : 1 month, if i would have set the time line, it should give the three details .
Regards,
Saravana.S

Hi,
I am not sure, if there would be any BAPI particularly for giving such particular information. Even if you can, you  might have to call 2 BAPIs, one for finding the list of such users modified within 1 month eg., and then getting the mod date and mod time.
BAPI_USER_GETLIST - this can be used for searching.. but tricky
then you have to call another bapi for getting the details.
One option is you can create a new Z BAPI using the table and get the results.
Regards,
Amit Mittal.

Similar Messages

  • User Last Successful logon date and time

    Hello All,
    We have a requirement to display Last successful logon date and time every time user logs on to the Portal. Datasource for the portal is SAP.  I see few forums suggesting to use WCR_USERSTAT table, but i don't see this table being updated every time i logon to portal. Is there any work around for this?
    Thanks,
    Indrajit

    Hi IndraJit,
    Have a look at below link, if it can help.
    Regd Last Logon of User Logged onto portal
    I guess, the only way to get the info is through WCR_USERSTAT table. Also, check if the aggregator application is running on portal which tries to collect the aggregated data.
    http://help.sap.com/saphelp_nw04/helpdata/en/58/728ea01cf64fff996b827f2a06f9b1/content.htm
    Thanks and regards,
    Madhu Sudhan.

  • Getting user name, date and time into 1 field

    Hi All,
    I have to add a new field in a customising include of AUFK table. This field should have user name, date and time. How do I store all these values in a single field of the table? Please help.

    Ok Thanks all. Will try your suggestions. But there is one problem. As i have already mentioned that i will have to display this detail in one field of the table control, The format of display is: user name should be seen above and the date and time separated by space should be displayed below the name. How can i ultimately display this in the table control. Do i have to create 2 different fields (one for name and other for date and time) in the AUFK table or is there any other solution?
    Thanks

  • Inserting automatic file name, date and time in Illustrator CS3?

    hello all,
    is there an option in Illustrator where you could automatically insert inside your file the file name, date and time where it was last created or modified, etc.
    I found this option to exist in InDesign, but could not find the same menu in Illustrator. I am using CS3.
    help?
    thanks a bunch.

    Mario,
    would you please be so kind to include a reference on your site about the script? As far as I can see, the PutDateandTime.js you are providing here is a copy or a slightly modified copy of the original script that Wolfgang Reszel has provided on our site for about four years.
    It is okay that the script is available on your site, but please not without a reference. Thanks.

  • To fetch data on the basis of last program run date and time

    Hi all,
    My query is as folows:
    I am selecting BOM components from STPO table on the basis of some criteria.
    My requirement is to select only BOM components which are newly added or created after last program run,i.e. STPO-AEDAT and STPO-ANDAT are greater than last program run.Here i fetched last program date from customised structure(client specific) which has date field also,and compared with aedat and andat in STPO records.But how can I connect it with last run time as there is no such time field in STPO table.I need to fetch this data on the basis of last program run(time+date).
    Please help me..it's crucial,
    Thanks in advance,
    Meena

    Hi,
    We had a very similar requirement.
    We developed a custom-solution for this.
    Create a Z-Table and update it with your progname, date and time.
    Whenever the BOM was changed, it generated a change number ( this has to be done by the user)
    You can get the date and time from the change Number Table AENR and compare it with the timestamp in Z-TABLE
    Hope it helps,
    RJ

  • Snow Leopard users: Turn off automatic date and time in System Preferences immediately

    http://arstechnica.com/apple/2014/12/apple-automatically-patches-macs-to-fix-sev ere-ntp-security-flaw/
    When exploited, the NTP flaw can cause buffer overflows that allow remote attackers to execute code on your system.
    What this means is that, if you allow date and time to be set automatically by outside servers, you risk having your computer taken over.
    This is a critical issue, it's being exploited as we speak, and Apple has not provided the update to Snow Leopard users, only to 10.8/Mountain Lion and above. I strongly doubt Apple will ever get around to issuing an update for Snow Leopard, or they would have already. Chances of that happening are close to zero

    To me 10.6.8 is still the best OS X Apple ever released and I patched my system just like the shellshock back in September. It's really easy if you have some basic shell skills and XCODE installed,
    Here is what I did, it may save you some time:
    open the terminal app
    1) Download the source code, apply the patch (I got the source code links from the ntp site)
    cd ~
    mkdir ntpd-fix
    cd ntpd-fix
    curl http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-4.2.8.tar.gz | tar zxf -
    2) Patch and compile the ntp source code
    cd ntp-4.2.8/ntpd
    curl http://bugs.ntp.org/attachment.cgi?id=1165 | patch -p1
    cd ..
    ./configure && make
    3) Open the system preferences - Date & Time - uncheck Set date and time automatically (to stop the process)
    4) Rename the old object and then replace/copy them with the new objects
    cd /usr/bin
    sudo mv sntp sntp.old
    sudo mv ntpq ntpq.old
    sudo mv ntp-keygen ntp-keygen.old
    cd /usr/sbin
    sudo mv ntpdc ntpdc.old
    sudo mv ntpdate ntpdate.old
    sudo mv ntpd ntpd.old
    cd ~/ntpd-fix/ntp-4.2.8
    sudo cp sntp/sntp /usr/bin
    sudo cp util/ntp-keygen /usr/bin
    sudo cp ntpq/ntpq /usr/bin
    sudo cp ntpdc/ntpdc /usr/sbin
    sudo cp ntpdate/ntpdate /usr/sbin
    sudo cp ntpd/ntpd /usr/sbin
    sudo chown root:wheel /usr/bin/sntp
    sudo chown root:wheel /usr/bin/ntp-keygen
    sudo chown root:wheel /usr/bin/ntpq
    sudo chown root:wheel /usr/sbin/ntpdc
    sudo chown root:wheel /usr/sbin/ntpdate
    sudo chown root:wheel /usr/sbin/ntpd
    5) Open the system preferences - Date & Time - uncheck Set date and time automatically (to start the process)
    6) Done.
    -- update time manually
    sudo ntpdate -u time.apple.com
    -- check ntpd version (should now be: ntpd [email protected])
    sudo ntpd --version

  • Script to query OU for last Windows update date and time

    Hi All, I need help in writing a script which can query an OU in active directory and then return most recent date of windows updates installation. It will also be helpful if the script can sort the names and then send output to a file (any format will
    do). I know basic of querying a local computer but not remote query, I am terrible at scripting side of powershell. Thanks people.

    I am referring to the script below, how can I get the result to output in an XLS or CSV format, I tried couple of combinations but couldn't get it to work.# This script shows the last time that a successfull Windows Update was installed.clsadd-PSSnapin quest.activeroles.admanagement 
    $OnlineServers = @() 
    Get-QADComputer -SearchRoot 'domain.com/ServerOU'-OSName "Windows*Server*"| %{ 
      $PingResult = Get-WmiObject-Query "SELECT * FROM win32_PingStatus WHERE address='$($_.Name)'"If ($PingResult.StatusCode -eq 0)  
         # Add the current name to the array$OnlineServers+= "$($_.Name)" 
    foreach ($Serverin$OnlineServers ) 
            $key = “SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\Results\Install” 
            $keytype = [Microsoft.Win32.RegistryHive]::LocalMachine 
            $RemoteBase = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey($keytype,$Server) 
            $regKey = $RemoteBase.OpenSubKey($key) 
            $KeyValue = $regkey.GetValue(”LastSuccessTime”) 
            $System = (Get-Date-Format "yyyy-MM-dd hh:mm:ss")  
            if    ($KeyValue-lt $System) 
                Write-Host " " 
                Write-Host $Server"Last time updates were installed was: "$KeyValue
        }

  • Findout the table name,date and time

    Hi friends,
    In a database i create a table, but i forgot the table name. I know the date. How can i find out the table in database?

    select object_name, created, status
    from all_objects
    where object_type = 'TABLE'
    and owner = <user_name_who_created_the_table>
    order by created desc;
    Hope this helps.
    Raman

  • Can EBS show the last date and time of a user login

    We have a requirement to display users their Last sucessfull login date and time. We would like to display after user have entered username/pwd i.e. Could someone guide how can we schive this ?
    Thanks in Advance
    Dinesh

    Hi,
    This is available through "Signon Audit Unsuccessful Logins" concurrent program.
    How do you audit an Oracle Applications' user? [ID 395849.1]
    Need A Way To Notify Users About Previous Failed Login Attempts [ID 357009.1]
    Thanks,
    Hussein

  • BAPI to change notification task completion date and time

    Hi,
    I am looking for a BAPI which will modifiy completion date and time of an existing task of a notification.
    I was trying with BAPI_ALM_NOTIF_DATA_MODIFY but it doesn't have fields which can modify those fields.
    Looking for your help. Can directly update QMSM table
    should be a way?
    Thanks,
    Mainak

    Hi,
    Use the Method ISUSMORDER.technicalcompletion.
    Hope it helps.
    KR,
    AAL!

  • How to rename a flat file concatenating date and time the file name?

    I created a package where I run a first interface that uses a flat file from a server and load into a table in Teradata.
    After using the API OdiFtpPut, I used an FTP file and send to an outfit.
    Since this procedure will operate daily, I need at the time of FTP, get the concatenation destination file name, date and time of execution.
    What is the best practice for this?

    Using OdiFtpPut in the field where it informs the destination file name, instead of putting just the file name (lpn_pln.csv), I put as follows:
    - lp_pln_+<% = odiRef.getSysDate (ddMMyyyyhhmm ")%>+. csv
    For code example, today would record the name lp_pln310120111412.csv
    Anything you can add my msn ---> aluizs @ ig. com. br (no spaces)
    Edited by: andre_l_soares on 31/01/2011 08:16

  • User status Date and  time

    Hi EXPERTS,
    In notification when we change user status, system logs date and time in action log
    I want to know in which table does user status date and time can be found.
    Regards
    Anil Kumar

    Anil Kumar,
    I'm not a t a system right now, but have a look at JEST and JCDS.
    PeteA

  • Validate Date and Time

    I am using Apex 3.2
    I have a field on my form called P4_START
    It has a format mask of DD.MM.YYYY HH24 MI and a default value of TO_CHAR(SYSDATE, 'DD.MM.YYYY HH24:MI').
    I need to create a validation which fires on save, to ensure the user is inputting a date and time
    Gus

    Gus C wrote:
    I am using Apex 3.2
    I have a field on my form called P4_START
    It has a format mask of DD.MM.YYYY HH24 MI and a default value of TO_CHAR(SYSDATE, 'DD.MM.YYYY HH24:MI').
    I need to create a validation which fires on save, to ensure the user is inputting a date and timeYou could start with a regular expression to ensure that the format of the string is correct.
    You could subsequently then try using a "PL/SQL function return boolean" along the lines of the following:
       declare
          dt_dummy date;
       begin
          dt_dummy := to_date(:P4_START,'DD.MM.YYYY HH24:MI');
          return true;
       exception
       when others then
          return false;
       end;Note the intentional use of the 'when others' clause here - this is one of the few places where I think it might legitimately be used because we know that, whatever the problem, that date format isn't right (although might consider testing for specific exceptions like -01858 to differentiate between that and something more sinister).
    edit: Hang on a minute... what am I thinking? Why not just use a date picker?
    Edited by: Joel_C on 18-Jul-2012 11:51
    Edited by: Joel_C on 18-Jul-2012 11:56

  • How to capture file modification date and time over the web

    HI!
    I am creating a web based application and I am using webutil package for al lot of my work being that I ma working with renamin,deleting and uploading files for a users machine to the database. There is one functionality thing that I have to do in this application that webutil does not take care of and that is capturing the modification date and time from a file on the users machine. Please help me capture the date and time of a file on the users machine.
    Thanks!

    Since webutil allows you to write file on client PC directory, then you first create a directive file, then host that directive file. the directive file content is just the command lines when you manually do it on PC.
    Refer the ideas--just the ideas not the same built-ins in this URL:
    Hyperlink in forms

  • Actual Finish date and time

    Hii
    How can we set the actual finish date and time to be logged at the time of Technical completion ?? 
    Thanks and Regards
    BK

    BK,
    The "Work ends on" field should be open for edit in IW41.
    This field entry populates the "Actual finish date" in the operation when the "Final confirmation" flag is switched on in posting the time confirmation.
    Check the settings in the IMG for: Set Field Selection for Completion Confirmation.
    It sounds as though this has been set to "display only". There is no reason to have this control unless the system is set to enable posting in the future. Then folks would be able to cheat on their time.
    The future date posting should only be switched on in development or test clients for test purposes.
    However, from your description of the process, I would have expected the date and time to have defaulted as the current date and time.
    Could there be a user exit at work?
    We seem to have wandered away from the original question you were asking about setting the order "finish" date from technical completion. Were you refering to "Basic Finish Date"?
    The configuration in Define Proposed Reference Time for Technical Completion can be configured to be Current, Created on, Basic start, Basic finish, but this relates to the reference date of the order.
    Or are we on track now with the problem around the operation "actual finish date"?

Maybe you are looking for

  • What certs are needed in Exchange 2013?

     When I look in the certificate store in the Exchange Administrative Center I see 3 certificates. The one I used to self sign during installation, the one I created utilizing the local CA, and the other cert I don't know what it is. The first cert

  • Custom component accessing data

    I am trying to build a custom component that utilizes the datagrid. I want to create a class that loads in xome XML and populates the datagrid. The datagrid's ID is not available in the class's load.COMPLETE event handler, so I cannot populate the da

  • ORA12801 errors in JDBC

    Any reason why we would get this error? java.sql.SQLException: ORA-12801: error signaled in parallel query server P002 ORA-00604: error occurred at recursive SQL level 2 ORA-00060: deadlock detected while waiting for resource null

  • Help!!  swing painter!!!

    I have the homework that is to write a swing painter like microsoft windows mspaint. but, the problem is that if i change the swing window size, the picture drawn will partially disappear. how to solve this problem? have any good references for me? t

  • Quiz fonts type change back to default font type

    I changed the font type for the answers to the quiz questions and for some reason the first two of almost ever multiple choice question that I have in 15 separate modules changed back to Myraid Pro from Arial. I have changed it back to Arial, however