Report List - User executed

Hi all,
Is there any option in SAP BW 3.5 to see the reports executed by a particular user. Kindly suggest.
Aravind

Hi Aravind,
Please look into the table RSDDSTAT (3.X) or RSDDSTAT_OLAP (BI 7.0) for getting the details in case BI statictics are not installed.
For BI 7.0 , If the BI statistics are installed then you can run the BI report 0TCT_MC01_Q0203 (BI Application objects Executed by user).
regards.
Kulmohan

Similar Messages

  • Execute button in Report List

    Hi
    I have an ALV wich executes with user commad button a Report List (write) ; then when the Report List is showed i need to execute some action with some button so i set a status gui with the button , but when i press the button any action is executed ; no control is passed to program even if i set the debug mode and then press that button.
    Does somebody knows how can i catch a button in report list for make some action , taking in account that the report list was called from an ALV user command button.
    Regards
    Frank

    I think you will need to activate the events of user_command in the events activating subroutine,
    form f_eventtab_build changing lt_events type slis_t_event.
      data:
        lw_event type slis_alv_event.
      refresh lt_events.
      call function 'REUSE_ALV_EVENTS_GET'
        exporting
          i_list_type = 0
        importing
          et_events   = lt_events.
      read table lt_events
      with key name = slis_ev_user_command into lw_event.
      if sy-subrc = gc_zero.
        move slis_ev_user_command to: lw_event-form, lw_event-name.
        append lw_event to lt_events.
      endif.
    endform.                    " f_eventtab_build
    form user_command.
      if sy-ucomm = 'XXX'.
    *   etc.....etc...... 
      endif.
    endform.
    does this solve your problem?
    Edited by: Andre Julius on Jul 8, 2009 4:30 AM

  • 11.1.2- Need to find out what reports are being executed by a user

    Hi,
    We have financial reports executed from workspace.In essbase session , only the user id is displayed and the Request type- mdxreport is displayed. We also tried searching the log for Financial report didnt find anything relevant.
    Is there a way to find out what reports are being executed by the user.
    Thanks in advance.
    Regards,
    Saumya

    STAT will give you the information for a limited period of time and is limited to the server which you are logged onto yourself. Beyond 24 hours it is of even less use even if you change the selection screen values.
    If you want it for a period way back into the past, then you need to use ST03N.
    There are at least 2 dependencies and 1 confusion:
    1 dependency) The length of period is determined by the size (length) of the file. You can change this in ST03N (default 50MB) via the menu settings.
    2 dependency) The stat collector jobs need to be scheduled to write the information to ST03N (once per hour is a legal requirement in some non-banana republic countries).
    1 confusion) There is an obscure function which converts a report submit to a transaction name (there is not much difference anyway) and an even more obsure one which filters what ST03N will record and therefore whether you can read it. You can (un)filter these things away if you search the SAP Marketplace for the term "MONI".
    What is of particular value from this control is that you can even detect a submission of an abap which only existed temporarily.
    Also note that having this information is potentially very powerfull with respect to the users (some of them are human too), so you should expose and use it responsibly.
    You should also ensure that only responsible users / auditors have access to S_TOOLS_EX.

  • Supress Background Print parameters when user executes ALV report by F9

    Hi friends,
         How can we Supress Background Print parameters pop-up, when user executes ALV report by F9
    or by navigation from selection screen -i.e;  Program ->>Execute in Background.
    Please guide me
    Thanks in Advance,
    Ganesh

    Sorry,
    i need to supress the POP-UP which asks for background Print Parameters in the ALV report. when i press F9 in a selection - screen of a Tcode
    as we supress Pop-up for a smartform or script by passing the Print Parameters
    This 'RS_SET_SELSCREEN_STATUS' excludes the commands(say F9 function code) in report
    I think we need to set the Print paramters in the Program
    please guide me
    Thanks,
    Ganesh

  • Report on User id.

    Dear All,
    We are facing one problem that few PR are deleted. We want to get the list on the base of user id such that we input the user id & get to know which PR are deleted by this particular user id.
    Please give me some report or table name from where I can get this data.
    Thanks,
    Nandan.

    Dear Nandan
    Try the Report List of PR- ME5A
    thru dynamic selection select the Deletion Indicator-X
    and execute the report and  slect the field creted by  and changed  from the layout to know whch user has creted the PR and who has made the changes.
    Table for the PR :EBAN and you can set the LOEKZ -Deletion Indicator in Purchasing Document to get the list of all deleted PR  and you can choose the field cretaed by and changed by to know who has created the PR /  changed.
    Regards
    Sunny

  • Find the user executing a particular workbook

    Hi all,
    how to know the users ,executing a particular query / workbook?
    my client is asking to provide the list of users.
    can you please tell me ASAP.
    Thanks

    you can check these tables
    RSZCOMPDIR for Queries
    RSRWBINDEX List of binary large objects (Excel workbooks)
    RSRWBINDEXT Titles of binary objects (Excel workbooks)
    RSRWBSTORE Storage for binary large objects (Excel workbooks)
    RSRWBTEMPLATE Assignment of Excel workbooks as personal templates
    RSRWORKBOOK 'Where-used list' for reports in workbooks
    in alternative you have to install and populate BI Statistics business content
    hope it helps

  • In ALV report.The user wants to hide specfic fields

    Hi
    In ALV report.The user wants to hide specfic fields  but the user must be able to add these fields to the report:
    can any one give the suggestions

    in reuse alv list display or grid
    i_save  = 'A'.
    now user can choose the layout.
    for hiding
    in fieldcat
    wfieldcat-No_out = 'X'.
    regards
    shiba dutta

  • Adding new row to the reports list page

    How can I add a new report row in the reports list of the reports tab.
    Ex: a new row to the report "users by Date of Join report" is to be added
    How can we add Please help me out in this

    I am facing the same problem!
    camickr wrote:
    Try adding an empty row containing a null value for the String instead of the empty String.camickr, it will not help, the DefaultRowSorter in the "*+compare(int model1, int model2)+*" method return -1 if the first value is null and 1 if the sacond value is null. and incase of DESCENDING it mult by -1.
                    // Treat nulls as < then non-null
                    if (v1 == null) {
                        if (v2 == null) {
                            result = 0;
                        } else {
                            result = -1;
                    } else if (v2 == null) {
                        result = 1;
                    } else {
                        result = sortComparators[counter].compare(v1, v2);
                    if (sortOrder == SortOrder.DESCENDING) {
                        result *= -1;
                    }And this is the real problem!
    The empty line is sorted as the smallest value and incase of DESCENDING it will be the first line (because of the mult by -1).
    We could have overide it and incase of the empty row(usualy the last row) do not mult by -1 in DESCENDING mode.
    But the problem is that the "+*compare*+" method and it's caller "*+Row+*" inner class are private :-(
    It is not wise to do it but we can do like kmp83 wrote:
    kmp83  wrote:
    copy/duplicate "private" code from DefaultRowSorter into my extended class.Anyone have another suggestion?

  • Monthly report listing out ALL open PO

    Hi,
    As our management requested, we need a monthly report listing out ALL open PO for CDG, APR   Someone tell me to input cost centre but it is time consuming to input it as we have over 100 cost centers.  Do you know if I can input SPG/profit center or other data to run this report instead ?  Please advise the transaction code and how to perform it, such as need to know the profit center #, organization code etc
    Thanks
    Raja

    hi
    go to ME2N
    then select Scope of list  ALV
    Selection parameters  as           WE101     Open goods receipt   (select as per ur need )
    then execute u will get the list for open po
    now if u want it to specify the  profit center then go to ME2N and select dynamic selecion  (shift +F4)
    now u will get a smaal scrren , in purchaseing doc item selct profit center
    now u can see the profit center selection field ,give a proper profit center and follow the process as given above
    hope it help
    regards
    kunal

  • In the report level user wants two persons against each work center.

    Hi Experts,
    Please let me know the solution, I have provided scenario below.
    check the query which the user is referring to report:
    Example
    Work center     Person
    KNE33102     44003850
    According to the user, the names for the Work centers should be as follows:
    Work center          Person
    KNE33102         44003850,
    KNE33102        44003603
    I have check the data in T-code-CR03, each work center getting two persons, as can be shown below.
    Work center        Person
    KNE33102           44003850,
    KNE33102           44003603
    In RSA3 it can be seen that both the records are being extracted
    Work center     Start date     End date     Person
    KNE33102     09.02.2009     31.12.2009     44003850
    KNE33102     09.02.2009     31.12.2009     44003603
    In BI , when checking in PSA, it can be seen that the data is also being loaded to BI (Two persons loaded against Work center-KNE33102)
    Work center     Start date     End date     Person
    KNE33102     09.02.2009     31.12.2009     44003850
    KNE33102     09.02.2009     31.12.2009     44003603
    But when loading to the Info Object, one person has deleted. Because of this, in the report level displaying one person.
    Note:-Please let me know what is the procedure, in the report level user wants two persons against each work center.

    Hi,
    As you said in your post the data has mentioned up to 2009. can you try execute the query till to date .
    Regards
    sivaraju

  • Which table keeps the Discoverer Report list?

    Hi,
    I'm new to Discoverer, actually I haven't started to use yet.
    I would like to know is it possible to retrieve a list of reports created in Discoverer so that I can add them to the standard reports that I developed using Oracle Report builder in my application. If possible, which table can I get the report list?
    My second question, is it possible to run a Discoverer report directly if I have the report link? Or everytime I run I must enter the schema username and password?
    Please advise.
    Thank you.

    Hi
    With regards to question 1, I don't believe this is possible any more. The older versions were rather flexible in that approach but sadly, no more.
    With regards to question 2, using a VPD you can authenticate to your heart's content using any custom defined table you wish. This is just an out of the box idea, and I don't know whether it will work, but here goes.
    The table that stores public connections is this one: orasso.wwsso_psex_user_info$
    I am wondering what would happen if we put a restriction on SELECT from that table to not allow selection if the SSO user was not of a certain class or did not have a certain privilege.
    Would anyone else care to comment here?
    By the way, inside SQL, this code SYS_CONTEXT('USERENV', 'CLIENT_IDENTIFIER') will return the SSO user.
    For more info on public connections, look here: http://download-west.oracle.com/docs/html/B13918_03/conns.htm#i1016752
    Best wishes
    Michael

  • Unable to open reports listed in Workspace

    Hi All,
    I am using EPM 11.1.1.1.0 .
    I have created a few reports from the Financial Reporting Studio.
    And i have a user who has the "Administrator" provision for "Reporting and Analysis".
    When i log into workspace with this user id i get the "Explore" option and i can see the reports listed there but when i try to open it the following error pops up.
    Required application context reporting is not available. Please contact your administrator.
    I have checked my Financial Reporting Services and they are running fine.
    Regards.
    Alicia

    Hi Alicia,
    1. OK, then restart of services might help you .
    2. Try to restart FR services , and then do the restart of workspace application.
    Hope it works
    Sandeep Reddy Enti
    HCC
    http://hyperionconsultancy.com/

  • How to control number of rows displayed in a report  by user?

    Hi All!
    I have provided a select list called 'Number of rows' in my report page.User can choose any number in the list, and accordingly he should be able to see so many number of rows in that report page.
    For example: if user selects 50 from the list, he will be able to see 50 records at a time out of say 2000 records retrieved. I want to control number of rows displayed per page dynamically. And if he selects 25 in the select list, he should be able to see 25 records at a time out of 2000.
    How to do it? Please give me ideas.
    Thanking in advance.
    Regards,
    Deepika.

    Hi Deepika,
    If you have a Select List with Submit called, say "P1_ROWS", you just enter P1_ROWS into the Report Attribute's "Number of Rows (Item)" setting.
    Regards
    Andy

  • I have a requirement where I have to give the list of users who can access a specific computer. I am new with PS. Do you have a script to list users that can access a computer object of AD ?

    I have a requirement where I have to give the list of users who can access a specific computer define in AD.
    I am new with PS.
    Do you have a script to list users that can access a computer object of AD ?
    I have executed the following script  but it does not give me the access rights of who can access the computer 'computername'
    How can i have this information. please help
    Import-Module activedirectory
    $computer=get-adcomputer "computername" -properties ntSecurityDescriptor
    $omputer.ntsecurityDescriptor.Access | select-object -expandproperty IdentityReference | sort-object -unique

    I would say that, since the OP has so little info, there are no policies in use.  It there were then this question would never be asked the way it is being asked.
    I had a client call with a letter from their insurance company; an accountant with malpractice insurance.  THey asked the same question inmuch the same way.  "What computer can you users access?"  The question should be more like
    "Do you have a policy that restricts access to computers and do you audit for compliance?"
    I have had other clients whose insurance asked the question in that way.  It produces a better view of what should be happening and how to show compliance.
    I recommend that companies being asked these questions by their legal departments or insurance companies should contract with a god computer security consultant to assist with answering these very tricky questions.  Of course if it is just you boss's
    curiosity  then you may need to discuss his requirements with him in more depth.
    ¯\_(ツ)_/¯

  • How to find out what t-code(s) a user executes most?

    Can anybody tell me how I can find out what transaction(s) a given user executes most from the all the transactions that given user has access to? For example if a user has access to 100 t-codes, but only uses 10 of them then, how can I find out that the user never executes rest of the 90 t-codes? Is there a report I can run to find out. Please help.

    Hi Amit,
    STAD is giving me nothing, even though I chose the date 05/03/2007. I also selected both radio  buttons at the bottom. Here's message I am getting "No statistical record for any server found with given criteria"
    Regards,
    Chandu

Maybe you are looking for

  • Changes not being published

    I'm having trouble with my changes not being saved/published. I can choose to edit a page, click publish... it then shows the page (in contribute) with my changes. But, when I go to the actual website, the changes are not there... and when I go back

  • Cannot Unmount Internal HD

    Hi Guys, I had a problem booting my computer up a while ago (it would just sit at the white apple screen with the loading wheel) so I removed the internal HDD and backed it up to my desktop computer using a USB adapter hub. I then completely erased t

  • Oracle 9.2.0.1 ins.rdbms.mk link error

    I am installing Oracle RDBMS 9.2.0.1 on Sun Solaris8 machine. The link process stopped when trying to process the ins.rdbms.mk file. The .mk file exists, I am using the Oracle user and the permissions are correct. I can't seem to get around it. Any h

  • Report Developer 10.1.2.0.2

    Dear All i have developer suite 10.1.2.0.2 , i want to call a report from form using web.show_document , but as according to my knowledge, report are no longer a service, what is required from me to start runing reports .. best regards

  • My mac only has os 10.4.11 and can i still use a iphone 5

    I have a older power book g4 with os 10.4.11 and want to upgrade my iphone3 to a new iphone 5.  Can I use the new iphone