BW 7.0 - Query usage by user

We have technical content activiate but we need to know the number of times users execute given queries with the user id and the query run.
What is the best way to do this? We do not see such statistics with the technical content reports. We are not interested in tuning the system for better performance. We simply want to know how often queries are run and by whom. We prefer to not do this on our own with logs. We hope this is available without resorting to this type of analysis. Surely, someone has this available for BW 7.0. Please advise.

Hi Gary,
BW Statistics
BW Workload Analysis in ST03N (Use Export Mode!)
Content of Table RSDDSTAT
These are the t.codes to analyze the qyery.
Transaction RSRT
Transaction RSRTRACE
Regards,
Raghu.

Similar Messages

  • Action Usage by User report

    How does the Action Usage by User report work? Its one of the miscellanenous reports under the security reports on the Informer tab. Do I have to run a background job to gather this data? If I try to run the report now I don't get any data even though I know a transaction has been run during the query period.
    Thanks for any help
    Dave

    No RFC Errors.  Re: other jobs, they all run successfully.  Alert Generation is the only one failing, and it started failing only a few days ago - it has run successfully before - and the settings/config on the GRC side haven't been changed (so the only possibility is a change on the ECC side).
    However, the message server that's configured in the connector (and that's working) actually points to the central services instance.  In SPM, we had an issue earlier where this name wouldn't work and so we had to use the primary app server name, and then SPM worked fine.  Do you think that with RAR, and this report, even though everything else is working fine, the error on the alert generation may be associated with the server name?
    Edited by: Santosh Krishnan on Aug 26, 2010 2:02 PM

  • Tables to get the query usage

    Hi Guru's,
    I have a requirement to identify the Query usage. For eg: How many times the query is executed in the last month and the users who are executing the query. We do not have BI statistics installed in the system. So please help me to identify the tables which is storing this Query related data.
    Regards
    Savi

    You check the query run times and other details in the work load analysis (ST03) or using the table RSDDSTAT .
    inorder to check the information using the above two methods -make sure the Bi stats are maintained in your system
    http://wiki.sdn.sap.com/wiki/display/MaxDB/WorkloadMonitor%28ST03orST03N%29

  • How to use the same POWL query for multiple users

    Hello,
    I have defined a POWL query which executes properly. But if I map the same POWL query to 2 portal users and the 2 portal users try to access the same page simultaneously then it gives an error message to one of the users that
    "Query 'ABC' is already open in another session."
    where 'ABC' is the query name.
    Can you please tell me how to use the same POWL query for multiple users ?
    A fast reply would be highly appreciated.
    Thanks and Regards,
    Sandhya

    Batch processing usually involves using actions you have recorded.  In Action you can insert Path that can be used during processing documents.  Path have some size so you may want to only process document that have the same size.  Look in the Actions Palette fly-out menu for insert path.  It inserts|records the current document work path into the action being worked on and when the action is played it inserts the path into the document as the current work path..

  • Visual studio online - Excel power query usage and samples needed

    Background
    Visual Studio Online does not offer much in the way of reporting, when compared to (onsite) TFS... unless you utilize the REST API functionality.
    The Visual Studio Online REST API is fairly extensive, but not very 'reporting' friendly to applications like Microsoft Excel.
    Question
    Are there any good examples of Microsoft Excel Power Query usage - to acquire and create reports via the Visual Studio Online REST API?  I've searched - but surprisingly haven't found anything of substance.  It is fairly simple to call a VSO REST
    query using Excel Power Query, but not so simple to iterate through the lists within lists, etc... unless you are familiar with 'M language'.

    Hi,
    Thank you for reaching out to us. I am currently researching to gather more information with regards to your request. I shall revert back to you with an update at the earliest. Sincerely appreciate your patience.
    Regards,
    Nithin Rathnakar

  • How to view a BI query with anonymous user in the portal

    <b>Hi Gurus,</b>
    Does anybody knows how to view a BI query in the portal with anonymous user?
    Cause when i try to view a query the portal always ask for authentification. And i don't want to sign with a user cause my portal is for everybody and if the user logged in it shows the roles that previously were assigned.
    I have the Netweaver 2004 with SP9
    <b>Thank you Very Much</b>

    do you have sso configured between portal and BW server, if yes the authentication pop up should not come.
    if you dont want to do sso between portal and bw server and still want to logon to BW query with anonymous user,
    in you bw server go to transaction sicf and navigate to DEFAULT_HOST->SAP->BW->BEX and double click on bex node in the resulting window, log on details section provide a default userid/password
    Raja

  • Query related to User License.

    Hi all,
    I have some query related to User License.
    If we have 250 no of user license( with one developer),
    can we use them individually on DEV, QAS & PRD ?
    can we use them individually on differrent clients?
    what abt users on 000 client. Is they should different license or come under same group.
    Regards,
    shan

    Contact you SAP Account Manager.
    Regards
    Juan

  • Query on licenced users in SBO

    Hi. ANy ideas on how to query if a user in SBO has an assigned licence. Thanks

    Hi,
    There is no query to reach your goal.  The best way to check might be the file B1upf.xml under licensing server folder.
    Thanks,
    Gordon

  • How to Enable the LOV to query for partial user entries in af:query in an ADF search form

    Hi guys,
    I have faced one issue in creating a search form in ADF, in that I have used af:query and table region. and I have attached an lov vo to the base vo for the list of values and given UI hint as Input values with List of values. Now the issue is that I have given auto submit property as true so when I give some value suppose "Jan-14" and tab out it gives me all the correct results. but if I give like "Jan%" and then tab out then it does not give me any value. Could you kindly help me with some solution. I am using Jdev 11.1.1.6.0.
    Thanks,
    Tanmoy

    To enable the LOV to query for partial user entries, we can trap the 'LaunchPopupListener' event and add custom code there. Within the af:query component, just wondering how can we set property the 'LaunchPopupListener' for the search criteria ?

  • Can i change table in query as per user given data

    hi master
    sir,
    can i change table in query as per user given data
    see
    select * from @variable
    i need use in lov
    please give me idea
    thankingyou
    Aamir

    You cant directly use in sql instead you can write an anonymous block and frame the query as per the input table name and then use execute immediate to execute the query.
    Something like this
    declare
    qry_table varchar2(30);
    qry_stmt varchar2(1000);
    type typ_sample is table of VARCHAR2(100) index by binary_integer;
    tab_sample typ_sample ;
    begin
    qry_table := &Table_name
    qry_stmt := 'select a from '||qry_table;
    execute immediate qry_stmt bulk collect into tab_sample ;
    end;
    Message was edited by:
    Shasi

  • RAR 5.3 SP8 - Action Usage by User Report - Change Start Date?

    Hello,
    When we run the report "Action Usage by User" in RAR, it shows a default "Start Date" of 1/12/2009. RAR put this in there on its own. We never got the Action Usage Generation Job working correctly until a few weeks ago (we had some issues that SAP addressed and then it took time to get resources to go back and resolve some things on our side). Since we've only had the background job that pulls STAD data running successfuly since 10/3/2009 (it runs every 6 hours), we'd like to change the default "Start Date" on that Report Screen to be 10/3/2009. This way, users are not confused into thinking when they run the report and leave the date set as 1/12/2009, they are getting tcode usage data since that date. Because they're not getting tcode usage since that date. Our records really only go back to 10/3/2009.
    We could instruct our users to change the date every time but we feel it'd be easier if we just changed the date so they didn't have to worry about it.
    Does anyone know how we could tweak this? What table that default date would be under? How could we modify?
    Thanks!!
    Jes

    The table where that date is is VIRSA_CC_USAGECTL
    If you use the debugger tool, you'll see there's only 1 row in this table. You'll find the FROMDATE, TODATE, and FILENAME columns. I FILENAME column should be null.
    Row FROMDATE TODATE FILENAME
    1 2009-01-12 9999-12-31
    If possible, could you confirm you are seeing similiar information?
    The issue we are having is trying to figure out how to update this table...we need that FROMDATE to be 2009-10-03.
    Thanks!
    Jes

  • Lock record on query for single user

    Is there any way to use the on-lock trigger to lock a particular record as it is simply queried, instead of after a change has been made to it. For instance, if user A is viewing a queried record, and user b attempts to query the same record, then we would display a message to user b stating that the record is unavailable, or simply just skip it. I know that if a field in the current record is altered, forms recognizes the status of the record as 'CHANGED' and will then by default proceed to lock the record until a commit or rollback is issued. However, this is not what we are looking for. I have read a little about this, and I have seen an example through a datablock based upon a stored procedure, a ref cursor select for update statement. (NOTE: we are not basing our datablock on a stored procedure though)
    We have two scenarios that require this type of locking capability. The first simply queries one distinct record, and the second queries a distinct result of records.
    A select for update statement would suffice for the first scenario, i.e. if another user tries to query the same record, their query is denied; however, for the second scenario when two users perform the same query, user a is viewing record #1, and user b's program sees that record #1 is 'locked' and thus proceeds to the next record in the result .
    Any suggestions? Thanks in advance.
    Eric M Weiss

    You don't need to override on-lock you can just call the LOCK_RECORD built-in in POST-QUERY or whatever.

  • CSCul66951 LDAP routing query fails when user name is the same (6 july 2014)

    in the case CSCul66951 LDAP routing query fails when user name is the same it is mentionned that the version 8.0.2-055 correct this bug ? How come i don't see this version on my menu Available upgrades from my IronPort C370 ?
    Is there someone on the support team that have try this LDAP query on a IronPort C370 with this version in the development lab ?
    Do i have to open a support Case to have this version of AsyncOS ?
    Best regards,
    Benoit Belair
    University of Quebec in Montreal

    Yes - CSCul66951 - this was included w/ the 8.0.1-HP1, and is rolled into 8.5.6-074 GA release.
    See release notes, resolved issues:
    http://www.cisco.com/c/dam/en/us/td/docs/security/esa/esa8-0/release_notes/ESA_8-0-1_HP1_Release_Notes.pdf
    CSCun02766 - 8.5.6-063, which was superseded by the 8.5.6-074 GA release.  
    See release notes, resolved issues:
    http://www.cisco.com/c/dam/en/us/td/docs/security/esa/esa8-5-6/ESA_8-5-6_Release_Notes.pdf

  • Running query as diffrent user

    Hi,
    My qestion is, is there a substitiute for linux "su" in oracle. I.E when im loged in as DBA i whant to run query as XXX user with lower privileges. The problem is i whant to use connectionpool and Ora Lable Security.
    Thanks in advice,
    MT

    Perhaps what you want is to run a query connected as a user that has privileges on another user. If it is what you want to do you can do it putting the name of the schema in front of the object name.
    for example connected as sys but I want to query
    emp table from scott:
    select * from scott.emp;
    if that is not what you want , reply and explain your
    case again.
    Joel P�rez

  • System usage per user

    Hi Security Experts,
    Our company have a SAP system version ECC 5.0 and right now we are making an analysis related to the quantity of users and the quality of the system usage per user, so the question here is if there's a way to know how much resources does an user consume? this is, time connected, transactions used. This is in order to separate the occasional users from the operating users?
    I'll appreciate a lot your help.
    Best Regards,
    Erik Espinosa

    Hi
    ST03N is your solution.
    There you find every minute detail for performance in the SAP system.
    You can check User Profiles for days , weeks and months individually to check the response times, data executions from the database etc.
    You can also find the processes/ transactions that take the highest memory consumption.
    Apart from this, an earlywatch report from the system would also assist you in such an analysis.
    I hope this helps
    Regards
    CHEN

Maybe you are looking for

  • Welcome to the Metro Discussion

    Welcome to the Cisco Networking Professionals Connection Service Provider Forum. This conversation will provide you the opportunity to discuss issues surrounding Metro. We encourage everyone to share their knowledge and start conversations on issues

  • POST ANNA - Calling / Messages Issue

    Anyone can help on this? When receiving an incoming call on my Nokia N8 (after updating to ANNA), the caller's name is not being displayed but only the phone number. In my phonebook, all my contacts have numbers with my country's international code a

  • Duplicates Validation on Tabular Form

    I have a wizard built tabular form. This displays 2 pieces of information, Phase ID and Phase Description, which the user can either modify or they can add new records. At the database level, I have a unique constraint on Phase ID (even tho it's call

  • How to track a lost iphone 4

    I lost my iphone same days ago...how can i trck it?

  • CAN NOT DELETE FILE ?!

    This is odd: I have listed certain files on a JSP page. When I click the filename you are prompted to a another page where you can modify information the file contains. If I try to delete the file, the file simply exists??? The file is a serialized o