List of Queries and Corresponding Infoproviders

Hi Community,
I need the list of active queries and their infoproviders(cube or ods) they are based on.
Can anybody suggest the best way to get this data?
Any table?
Thanks in advance,
Raj.

Hi,
RSRREPDIR is your table.
OBJVERS = 'A'
COMPTYPE = 'REP' for queries, = 'QVW' for views
COMPID will have the Techname
InfoCube will give you the InfoProvider
hope this helps...
Olivier.

Similar Messages

  • Thru OEM get list of queries and their schemas that accessed my objects

    Hi,
    I have a list of objects on my schema and i need to track the list of sql queries by different users that accessed by object during this time period.
    i haven't enabled any auditing yet.
    is there any way i can get that list of queries and their schemas that accessed those particular objects during a particular time period through OEM.
    Can someone guide me please.
    Thanks in advance.
    Philip.

    create a name property in your class and assign a name property to your instances (either in the contructor) and/or using getters/setters.  (you'll need a getter anyway.)

  • List of roles and corresponding transactions and infotypes

    Hi Friends,
    I want to prepare baseline list of roles and corresponding transactions and infotypes that we have access to in Production system. Please let me know easiest way.
    Thanks,
    Ankitha

    In [this thread|Security - HR Authorizations; you'll find a similar question and some suggestions. Once you've got your roles it should be fairly easy to determine which transactions are in them.
    Jurjen

  • List normal users and corresponding ops$users in Oracle database in groups

    Hi,
    We are having Oracle database version 11.2.0.2 on Oracle Ent. Linux 5.1. Basically, according to our requirement, we need to list similar users in the database which are having individual usernames as well as their corresponding ops$usernames (in one query).
    Eg. in the database if have users 'xyz' and 'ops$xyz', 'abc' and 'ops$abc', then we need to write a query which can list this users together in groups as below;
    xyz
    ops$xyz
    Similarly,
    abc
    ops$abc.
    Can you help me write a query so that I can list all these similar users residing in my database together.
    Also, later I need to find out the roles and privileges assigned to these users once its listed.
    Thanks in advance.
    ~ Rahul

    Hi, Rahul,
    To ignore leading 'OPS$' when sorting:
    SELECT       username
    FROM       dba_users
    ORDER BY  REGEXP_REPLACE ( username
                            , '^OPS\$'
    ;'$' has a special meaning in regular expressions, so when you literally want a '$' sign, it has to be "escaped" as '\$'.
    Edited by: Frank Kulash on May 17, 2013 9:52 AM

  • How to find the list of queries containing a Particular Infoobject

    Hi all,
    I have requirement to find the list of queries and workbooks which contains a Particular Infoobject. Please advice is there any Database table or Programs exists to find..
    Thanks in advance
    GAMY..

    Hi,
    Thanks for your replies.
    I have tried the oprion already..(RSD1 > Type in the name of the InfoObject and from the menu Edit > choose Where Used list.) but no use. It doesn't show the list of queires..It shows only the data targets.
    I would like to know is there any table to achieve the requirement.
    Thanks in advance
    Ganesh(GAMY)

  • BAPI to update PO's and Corresponding line items numbers **URGENT**

    Hi All,
    I have a requirement to create a program which will take list of POs and corresponding line item number and update Final invoice indicator for the same. This should be updated in SRM as well as R/3.
    I think, it can be done by a BAPI. Do anyone have idea, which BAPI will be applicable for the same?? You can also share yours views on this.
    Regards,
    Parvez.

    Hi
    We have done this.. This is easily possible using BAPIs.
    Try using SRM BAPIs
    META_PO_GETLIST
    META_PO_GETDETAIL
    <u>Note - SRM system calls BAPI in R/3 backend using RFC Call</u>
    In R/3 backend
    BAPI_PO_CREATE1
    BAPI_PO_CREATE
    BAPI_PO_CHANGE
    Hope this will definitely help.
    Regards
    - Atul

  • Need a way to inventory Mac programs and corresponding serial numbers

    My boss is a Windows guy & doesn't know what he's doing. Therefore, he insists there's a way out there to inventory all of our office's Macs & generate a list of programs and corresponding serial #s. Is this possible? How?
    In his perfect Microsoft world, this would create an Excel sheet.

    If you've purchased and configured Apple Remote Desktop, then use the Application Usage Report feature -- gives a list of apps and how frequently they are used (in case you want to reigh in licenses).
    A cheap alternative, of course, is to create an admin account on each machine and use 'ssh' to run system_profiler on each machine. e.g. 'system_profiler -detailLevel full SPApplicationsDataType'. You get responses like this (you can request an XML format too):
        Microsoft Word:
          Version: 14.1.2
          Last Modified: 6/15/11 10:05 AM
          Kind: Intel
          64-Bit (Intel): No
          Get Info String: 14.1.2 (110505), © 2010 Microsoft Corporation. All rights reserved.
          Location: /Applications/Microsoft Office 2011/Microsoft Word.app
        TextEdit:
          Version: 1.6
          Last Modified: 6/29/09 9:00 PM
          Kind: Intel
          64-Bit (Intel): Yes
          Location: /Applications/TextEdit.app
        Network Utility:
          Version: 1.4.6
          Last Modified: 6/25/09 5:20 PM
          Kind: Intel
          64-Bit (Intel): Yes
          Get Info String: Version 1.4.6, Copyright © 2000-2009 Apple Inc. All rights reserved.
          Location: /Applications/Utilities/Network Utility.app
        Google Chrome:
          Version: 12.0.742.122
          Last Modified: 7/8/11 8:30 PM
          Kind: Intel
          64-Bit (Intel): No
          Location: /Applications/Google Chrome.app
    ... just a PERL script away from being a spreadsheet.

  • Script to find the list of Queries currently running in database with User Login Name and Host Name.

    Hai,
    How to find the list of queries currently running in the Database with User Login Information.
    Since my database application is running slow, to find the slow queries.

    Try the below query
    SELECT r.start_time [Start Time],r.session_id [SPID],
    DB_NAME(database_id) [Database],
    s.host_name,
    s.program_name,
    s.login_name,
    SUBSTRING(t.text,(r.statement_start_offset/2)+1,
    CASE WHEN statement_end_offset=-1 OR statement_end_offset=0
    THEN (DATALENGTH(t.Text)-r.statement_start_offset/2)+1
    ELSE (r.statement_end_offset-r.statement_start_offset)/2+1
    END) [Executing SQL],
    r.status,command,wait_type,wait_time,wait_resource,
    last_wait_type
    FROM sys.dm_exec_requests r
    OUTER APPLY sys.dm_exec_sql_text(sql_handle) t
    inner join sys.dm_exec_sessions s
    on s.session_id = r.session_id
    WHERE r.session_id !=@@SPID -- don't show this query
    AND r.session_id > 50 -- don't show system queries
    ORDER BY r.start_time
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • Table listing queries and their time characteristics

    Is there a table that contains the name or ID of the queries and the time characteristic InfoObjects or variables used in the queries?
    Want to get a listing of time characteristics used in the queries quickly and in table format.
    Time charateristics either for filters, variables, or free characteristics.

    Hi SAM,
    Goto SE38 and run this program ...
    RSRQ_QUERYDEFINITION --Execute it.
    Give the Query Name and Execute.
    You will fet the List of all the varibles used,but they will not be in table format.
    Rgds
    SVU123

  • How to find list of Queries built on Multiprovider &steps to transport quer

    Dear Experts,
        I got a task to Check if any queries are built on a multiprovider and to change the filter condition on 0INFOPROV to restrict some more  Infoproviders in all the queries built on multiprovider .
    Request you to help me out how can i find list of queries created based on Multiprovider wise  and steps to be followed to restrict 0INFOPROV.
    And one more doubt is, what are steps to be followed to transport the queries.
    Thanks in advance for favorable assistance.
    Thanks & Regards,
    Ramesh - Kumar.

    Hi..
    Follow the steps below:
    1) Goto RSA1 -> Metadata Repository -> Select Multiprovider -> Find (Cntrl+F) give your object name -> Double click on search result object, this will give you detailed view of used that particular Objects.
    2) To restrict infoprovider within that Multiprovider for Query reullts, Double click on Multiprovider -> choose Change mode -> You'll be able to select/deslect the check boxes under the Infoprovider Tabs (Infocube, DSO, Info Objct, Infosets, Aggr levels) there you can check the infoproviders as per your requirements then selelct the display options with Display All Infoproviders (1st option) at down then continue and save the settings.
    Hope this helps you.
    Thanks,
    Ramanan.

  • To get the list of queries in which a particular variable is used - urgent

    Hi Friends,
    I have a list of variables which were used in some queries, now I need to know list of queries in which the given variable is used.
    for example: There is a variable called ZVBASMNT and used in some queries, I want to get the names of the queries in which it was used.
    please give some short method for this, if there is any table or Tcode for this please provide, its bit urgent.
    Thanks & points will be given for the helpful answer
    Regards...
    Ganesh

    Dear Ganesh,
    Yes, You can find.
    Goto Metadata Repository in RSA1.
    Click on Query
    Selct / Click on a Query which uses your variable ZVACITY
    Click on your variable
    Just observe the USED BY list.
    Regards,
    Ram.

  • How to find the list of Queries/Reports which are using Exceptional Aggregation in SAP BI?

    Hi All,
    We are interested to know how to find the list of Queries/ Reports which are using Exceptional aggregation in SAP BI.
    Please let us know is there any table's to check the list of reports using Exceptional Aggregation in SAP BI.

    Hi,
    Here you go..
    1) Go to table RSZCALC and get list of ELTUID where AGGREXC is not INITIAL and AGGRCHA is not initial; now you get only exception aggregation set based on some chars. Also you can further add STEPNR = 1 since your intention is just to get query name , not the calculation details; this will reduce number of entries to lookup and save DB time for next steps.
    Here you will get list of exception aggregation UUID numbers from which you can get properties from RSZELTDIR.
    2) Pass list of RSZCALC-ELTUID to table RSZELTXREF - TELTUID and get list of RSZELTXREF -SELTUID - this table stores query to it's elements maping kind.
    3) Now again pass RSZELTXREF - SELTUID into same table but into different field RSZELTZREF - TELTUID and get RSZELTXREF - SELTUID
    This step you get query reference sheet or column or query general UUID for next step.
    4) Pass list of RSZELTXREF - SELTUID into RSZELTDIR - ELTUID with DEFTP as 'REP'. Now you get list of query names in RSZELTDIR - MAPNAME and description in TXTLG.
    Note: you can also get the reference chars used for exception aggregation from RSZCALC - AGGRCHA field.
    Hope this helps.
    Please keep in mind, it might take more time depends on how many query elements you have in the system...
    Comments added for better DB performance by: Arun Thangaraj

  • How to find the list of Queries for that have statistics enabled in the sys

    Hi ,
    How to find the list of Queries  that have statistics enabled on them in the system.
    Please help me in this regard
    Thanks
    Maruthi

    hi ,
    I found three options there like
    X - on
    D - Default
    off
    can you please expalin the difference between on and Default
    Thanks in Advance
    Maruthi

  • Report to list all computers and their collection membership

    Hi
    I am currently working on a site where direct membership is used for collections but a need has arisen to move to AD Queries.
    I have created a simple powershell script that creates groups based on the contents of a csv file and another script which populates this with the members listed in another csv file.
    To help speed up the process is there a way to generate a report that lists ALL Computers and their Collection membership?
    The only reports I seem to find that are built in require an inputted value of either computer name of collection ID. I simply need a report that lists Computer Name is column 1 and Collection Name in column 2 for all computers and all collections.
    Many Thanks,
    Matt Thorley

    select 
    FCM.Name,
    C.Name
    from 
    dbo.v_Collection C
    join dbo.v_FullCollectionMembership FCM on C.CollectionID = FCM.CollectionID
    Thanks to Garth for original query. I just modified it :)
    Anoop C Nair (My Blog www.AnoopCNair.com)
    - Twitter @anoopmannur -
    FaceBook Forum For SCCM

  • BI Statistics -- Need to display list of Queries with query counter

    Hi All,
    I am using the the infoobject
    0TCTBISBOBJ (BI Application Object)  - for to get the list of queries inthe system.
    I am also restricting the infoobject 0TCTBISOTYP(BI Application Object Type)-  to ELEM (Query) inthe filter area.
    I loaded load master data for 0TCTBWOBJCT_ATTR and 0TCTBWOBJCT_TEXT.
    The PROBLEM is  0TCTBISBOBJ (BI Application Object) is not only displaying queries but all the other elements like navigational attributes and some junk values like
    '$ABSEMA0
    '$VIRTUAL-000001
    Please help me isolate just queries for my display.
    Thanks,
    HM

    HI,
    Your query setup is correct, please check Note 936519 - Duplicate Records while loading 0TCTBWOBJCT master data, and many others.
    I have customers running stack 11 & 12 and had to apply dozens of notes to get TCT 7.0 to work properly. And even now about 3 notes per week are being released.
    Regards Patrick Rieken.

Maybe you are looking for