How to know last program user

Hi guys!
Is there a tcode where I can see the history of who executed a particular program, and what particular programs a user executed?
I am not sure if this question is in the right forums. Please advise me where this will be applicable. Thanks!
Message was edited by:
        Ricardo Caliolio Jr.

> Hi Ricardo,
>
> On the lighter side,
> I am not sure if this question is in the right
> forums. Please advise me where this will be
> applicable.
>
> <b>Till someone watching the forum knows answer to
> your question it is in the RIGHT FORUM :).</b>
>
> Regards,
> Atish
Well, me too. I am not sure if it is supposed to be here. I am just not yet really familiar with these forums. Haha.
Thanks anyway for the answer!

Similar Messages

  • How to know last access date for the schema's

    Dear all,
    could u plz tell me How to know last access date for the schema’s
    Regards,
    Srinivasa rao.P

    Srinivas,
    could u plz tell me How to know last access date for the schema’s
    In Oracle, we don't access schemas but schema objects.And this informationis not kept anywhere persistantly.As Amit also mentioned,if you do need it,you have to enable Auditing.
    Aman....

  • How to know print program for SAP Script

    Hi friends,
    how to know print program for SAP Script form name ?

    Hi ,
      You can use the following code changes in the layout & see..
    You have to create a program Z_BC460_EX4_HF for that..
    /:PERFORM GET_NAME IN PROGRAM Z_BC460_EX4_HF
    /:  USING &CUST&
    /:  CHANGING &NAME&
    /:ENDPERFORM.
    Dear &NAME&
    The ABAP routine could be defined as follows:
    IMPORTANT: The structure itcsy must be used for the parameters.
    REPORT Z_HENRIKF_SCRIPT_FORM .
      tables scustom.
      form get_name tables in_tab structure itcsy
                           out_tab structure itcsy.
      read table in_tab index 1.
      select single * from scustom
        where id = in_tab-value.
      if sy-subrc = 0.
        read table out_tab index 1.
        move scustom-name to out_tab-value.
        modify out_tab index sy-tabix.
      else.
        read table out_tab index 1.
        move 'No name' to out_tab-value.
        modify out_tab index sy-tabix.
      endif.
    You could also fill the ouput parameter table this way
       READ TABLE out_par WITH KEY 'NAME1'.
       out_par-value = l_name1.
       MODIFY out_par INDEX sy-tabix.
    endform.

  • How to know my dtabase user ?

    dear Experts,
    when i want to try to create a database connection from transaction db11,there is a field to enter in it the SAP database users and its password,how to know the database users ID from OS level ?
    thanks in advance
    Mahmoud Younis

    Hi,
    You can change the DB2 user passwords using below commands...
    For <sid>adm use "dscdb6up" and
    for db2<sid> use "passwd" command.
    Refer the below link for details.
    [Changing Passwords of the Database Standard Users|http://help.sap.com/saphelp_nw70/helpdata/en/aa/1dc8d8f0fa11d3a6510000e835363f/frameset.htm]
    Regards.
    Rajesh Narkhede

  • How to know the program that a user is running.

    Hello SAPients!
    Is there a programmatic way (FM or something else) to know what program is being executed by a specific user?
    Thanks in advance.

    My full requirement is in this post:
    I need to trigger a procedure when a program ends.
    If you could take some time and read it I would really, really appreciate it.
    Thank you so much for your kind help.

  • How to know where the user exits or enhancement used in standard sap code?

    Hi
    I m pretty new to abap.
    How can I know where the user exits or enhancement used in standard sap code?
    As i have to add some functionality to the standard sap code. I m looking to search the enhancement or user exits used in this standard code wher i can add my functionality.
    thanks in advance.
    Moderator message : Search for available information, thread locked.
    Edited by: Vinod Kumar on Oct 19, 2011 2:38 PM

    Hi Henry,
    I don't think this is the easiest way to look at the code around a particular field on the screen. Debugging standard programs also can be very tedious, if not impossbile. So, instead of this question, I would like to find out exactly what you want to do if you know the code.
    If you are in a transaction and you want to know where the code of a particular field is, the fastest way to get to it is by pressing the F1 key on the field and then press the Technical info button on the help screen. In here you will typically see the same kind of information but it is very specific to the field you selected.
    PROGRAM(SCREEN) tells you which program is manipulating the main screen, in which your field is embedded. Remember your field may be included in a sub-screen and that subscreen may be the one included in the main screen.
    PROGRAM(SUB SCREEN) tells you which program is directly responsible for the field on the subscreen it is included in. This is where you should find the code most appropriate for the field, but not necessarily.
    PROGRAM(GUI) controls how your push buttons and the menu options in the screen behave and controlled.
    Srinivas

  • How to know the all user name from system/system login

    hi all,
    i want to know the all user names from system login who are the existing user like
    regards
    srinivas

    Hello,
    Using DBA_USERS will give more details
    select * from dba_users;Regards

  • How to know CC program installed on user machine?

    Dear all please your help
    my IT admin cutomer using CCT with 20 user and have plan to detect what kind program CC has installed on user machine? any programs to detect it?
    regards
    Deto

    We can detect if the CC was activated but we can not detect which program of the CC app was installed & activated from the CC subscription.
    The activation can be detected but not the particular product.
    Regards
    Rajshree

  • How to know the program type?

    Hi,
    I want to know what type of execution method a certain concurrent program has, ( e.g if it is SQL*PLUS, REPORT, SPAWN, PL/SQL etc)
    I run the following sql at apps/apps
    1* select distinct execution_method_code from fnd_concurrent_programs
    SQL> /
    E
    R
    H
    P
    I
    K
    Q
    M
    A
    J
    X
    B
    S
    L
    E
    Where do I get the corresponding meaning of this code please.
    How do I query at the form level all the PROGRAM name with execution type SQL*PLUS?
    Thanks a lot

    Hi,
    Where do I get the corresponding meaning of this code please.Try the queries in the following links:
    PSP PL/SQL API for Customizations Tracking
    http://dbaanswers.blogspot.com/2007/11/psp-plsql-api-for-customizations.html
    Query 9: SQL to view all types of request Application wise
    http://knoworacle.wordpress.com/2009/01/12/oracle-application-top-useful-sql-queries/
    Display Module Wise Reports
    http://oracle-applications-rama.blogspot.com/2007/05/display-module-wise-reports.html
    Or, refer to eTRM and see if it is documented there.
    eTRM
    http://etrm.oracle.com
    How do I query at the form level all the PROGRAM name with execution type SQL*PLUS?From System Administrator responsibility, navigate to Concurrent > Program > Executable, Press F11, select "SQL*Plus", Ctrl + F11
    Regards,
    Hussein

  • How to know the program attached to each button ?

    Hello,
    When I press on various buttons in SAP various ABAP programs/functions are launched/executed. How can I know the name of the program/functions that is attached to these buttons? I want to debug through these programs/functions because they have functionalities similar to the ones I want to implement so I want to get access to these ABAP programs but how?

    Hi,
    You can debug and identify..
    Before pressing the button..Press /h in the command field to start the debugger..
    Then press the button..
    It will take you in the degugging mode..
    Thanks,
    Naren

  • Transaction Notofocation Procedure - How to know the SAP user?

    Hi Experts,
    In the transaction notification procedure can we know the name of the SAP user whose transaction is being processed?
    Thanks a lot.
    Regards,
    B.

    hi
    sapgenpse get_my_name -v -n validity
    http://wiki.sdn.sap.com/wiki/display/Basis/HowtorenewtheSAPRouterlicense
    http://www.saptechies.com/how-to-renew-the-sap-router-certificate-validity_1/
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCCSTROUT/BCCSTROUT.pdf
    Kiran

  • How to Know Concurrent Program Finish

    Hello,
    We are on Oracle EBS 11i10.2 and are creating a procedure that executes a Concurrent Program, and we need to know in this procedure when the Concurrent Program finishes, does anyone know how to do this?
    Thanks

    Hi,
    Please see these threads.
    concurrent request status
    concurrent request status
    How to set the Concurrent request completed with warning?
    Re: How to set the Concurrent request completed with warning?
    Thanks,
    Hussein

  • How to know last login in oracle database 9i

    hi all,
    I want to know the last login in oracle database 9i.
    Can some one help me.
    Thanks

    Hi,
    Do you have auditing enabled then you can get details else
    Enable it and execute the below one - then login and logoff times will be recorded for users
    audit connect;
    - Pavan Kumar N
    Oracle 9i/10g - OCP
    http://oracleinternals.blogspot.com/

  • How  to know the diferents users in Workbook?

    Hi experts,
    I have a workbook. And I would like to  know :
    - the last user who modify it
    - the user who created it.
    thanks a lot.
    PD : I find the modify user in Transport Managment, when i select the workbook

    As you can see in the Metadata Repository, the "Created by" information is not stored.

  • How to know last statements

    Hi All,
    How can i know, what are the statements have run on yesterday in my database for a particular user?
    Thanks
    Desis

    You need to write your own triggers to capoture the DDL and also insert those DDL into your tables. This way you may able to track down users activities including DDL.
    hare krishna
    Alok

Maybe you are looking for

  • HT1351 Muliple IPhones on one ITunes account

    I have recently purchased an IPhone 4s. My daughter has an 3G Iphone.  We also have two Ipods.  How do we share our one ITune account for music?  I want to be able to share the same music, apps, videos, etc with our one account.  If she gets her own

  • Cost center field not getting updated to the second level dso

    Hi Experts, Data is going from one DSO to other high level DSO where in the source DSO there is cost center filled for a Purchase order but it is not in the target DSO. Target DSO fetches data from 5 DSO's and this is one of them. Please suggest. Tha

  • Linux shared library does not work in fedora core 4

    I have transferred an application that ran perfectly on fedora 3 to fedora 4.  It uses a shared library that I wrote in C. The vis no longer appear to recognise this file as a  shared library.  I have recompiied the library in fedora 4 but this makes

  • Search at 2x on timeline is inaudible

    Perhaps inaudible isn't the right word, I can hear it, but its' not clear enough to understand. I've just moved from working in DV to using a Decklink Extreme card (10 bit timeline). G-raid 1/2 tera drive. Beta-SP sources dig'd at 8bit. I think this

  • Disk IO performance tuning of oracle 10g 64bit  on rhel5 64bit

    Hi Friends, I am very new on oracle database tuning part. I am facing some issues on the oracle disk io data transfer rate on rhel5. Please help me. Details of issue is below. I am using the iscsi san storage to install the database. My san storage i