Table name for BW Query Where used list

Hi,
I am looking for Table name where the information of  " where used list " of a BW query stores.
Any help ?
Thanks
Satya

Vani,
I dont think it is available...
whats your exact requirement???
you can make use of these below tables
RSZELTDIR              Directory of the reporting component elements
RSZELTTXT      Texts of reporting component elements
RSZELTXREF      Directory of query element references
RSRREPDIR             Directory of all reports (Query GENUNIID)
RSZCOMPDIR      Directory of reporting components
RSZRANGE      Selection specification for an element
RSZSELECT             Selection properties of an element
RSZELTDIR              Directory of the reporting component elements
RSZCOMPIC            Assignment reuseable component <-> InfoCube
RSZELTPRIO      Priorities with element collisions
RSZELTPROP      Element properties (settings)
RSZELTATTR      Attribute selection per dimension element
RSZCALC                    Definition of a formula element
RSZCEL                 Query Designer: Directory of Cells
RSZGLOBV            Global Variables in Reporting

Similar Messages

  • Standard table for finding query where used list

    Are there any standard tables available to find the list of web templates, bex reports and views using a particular query?
    i.e if i have the query name i should be able to find out where all it is being used.
    Thanks,
    Archna

    Hello,
    You have to join multiple tables to achieve this, here we go
    FOR QUERY Related Information
    RSRREPDIR - Directory of all reports (Query GENUNIID)
    Choose Type of a reporting component -> REP
    Tips :
    Choose Type of a reporting component -> QVW for query view
    SE11 -> RSZ* -> F4 gives you all tables related to queries
    For WORKBOOK Related Information
    Use the FM RRMX_WORKBOOK_QUERIES_GET to get the queries in a workbook by selecting the workbook ID from table RSRWORKBOOK
    Tips :
    SE11 -> RSRWB* -> F4 gives you all tables related to workbooks
    SE37 ->RRMX_WORKBOOKS* -> F4 gives you all the FM related to workbooks
    For Webtemplate Related Information
    Choose the dataprovider for query / view ID.
    SE11 -> RSZWOBJXREF - Structure of the BW Objects in a Template
    Also see,
    SE11 - > RSZWTEMPLATE - Header Table for BW HTML Templates
    Thanks
    Chandran

  • Program name for the query generated using sq0102-03

    Hi Folks,
    How can we know the proggram  name for the query generated using sq01 and all?
    K.Kiran.

    Hi Kiran,
    U can get program name of nay transaction code by following this procedure
    after entering tcode it will direct u to the related screen then on the tool bar select system then go for status there u can find program name
    Rewards if helpfull
    Regards,
    Pavan

  • How to assign table name for select query in loop.

    Hi friends my requirement is count the no of records of all the database table which comes into an internal table ."Check the below coding". Iam  fetching the tables from dd03l table into an internal table .plz give me a sujjesion how to assign a table name in select query  in a loop.
      SELECT tabname FROM dd09l
                INTO TABLE i_dd09l
                WHERE protokoll = 'X'.
      IF sy-subrc = 0.
        SORT i_dd09l BY tabname.
      ENDIF.
      LOOP AT i_dd09l.
        SELECT COUNT(*) INTO val FROM i_dd09l-tabname.
        IF sy-subrc = 0.
          i_dd09l-count = val.
        ENDIF.
        MODIFY i_dd09l INDEX sy-index.
        CLEAR val.
      ENDLOOP.
    error : 'I_DD09L-TABNAME' is not defined in the abap dictionary as a table.

    data: dy_table type ref to data,
          dy_line type ref to data,
          xfc type lvc_s_fcat,
          ifc type lvc_t_fcat,
          dy_field type ref to data.
    LOOP AT i_dd09l.
    perform get_structure using i_dd09l-tabname .
    CREATE DATA dy_table TYPE TABLE OF (_dd09l-tab_name).
        UNASSIGN <dyn_table>.
        ASSIGN dy_table->* TO <dyn_table>.
    SELECT COUNT(*) INTO val FROM <dyn_table>.
    IF sy-subrc = 0.
    i_dd09l-count = val.
    ENDIF.
    MODIFY i_dd09l INDEX sy-index.
    CLEAR val.
    ENDLOOP.
    form get_structure using p_table.
      data : idetails type abap_compdescr_tab,
      xdetails type abap_compdescr.
      data : ref_table_des type ref to cl_abap_structdescr.
    Get the structure of the table.
      ref_table_des ?=
      cl_abap_typedescr=>describe_by_name( p_table ).
      idetails = ref_table_des->components.
      loop at idetails into xdetails.
        clear xfc.
        xfc-fieldname = xdetails-name .
        xfc-datatype = xdetails-type_kind.
        xfc-inttype = xdetails-type_kind.
        xfc-intlen = xdetails-length.
        xfc-decimals = xdetails-decimals.
        append xfc to ifc.
      endloop.
    endform.                    "get_structure
    Try like this hope it will work.
    Regards,
    madan.

  • Table name for Info-record where i can get the last changed date and user

    Using ME12, i have changed the price of the info record i want to get the who was the user and changed date...
    I had check in EINA EINE but i couldnt find out please anybody Please help me out by providing solution for this??

    Hi
    If at the data element level the field for which you want to know the old and new fields  the option of CHANGE DOCUMENT option must be  enabled ,then you can find the old and new values in the
    CDHDR -
    Change document header
    CDPOS -
    Change document items.
    Regards
    Pavan

  • Table names for fields from standard extractors

    Hello Experts,
    I want to know, if there is an easy way to find R/3 table names from extractor fields of standard data sources / extractors.
    ROOSOURCE , RSOSFIELDMAP did not help.
    Thanks

    Hi
    find your extract structure name from RSA6 or RSA5 and then go to SE11data type>give your extract structure name and click on 'where used list', then select 'programs'..
    You can see the name of the extract programs written by sap.go to the program then you can find the tables and their fields...
    Hope it helps up to some extent....
    Thanks,
    Teja

  • Altenative To where used list

    Dear All,
    Can we have an alternate to where-used button. I want to check whether any table is used anywhere in the application.
    I want to do it without any use of where-used button.
    Please suggest any standard SAP function module or SAP table which would suggest whether a database table is used.
    Regards,
    Prosenjit.

    Hi Prosenjit.
    You can use:
    Function modules:
    BAPI_DOCUMENT_WHEREUSED:
    Where-Used List for Documents   
    C2_DB_PLFV_ATINN_WHERE_USED:
    Where-used list for characteristics in the master recipe
    CHVW_BATCH_WHERE_USED_LIST  
    Or,
    GoTo->Table DD02T(System texts)->Selection screen->Type under texts = Whereusedlist.
    You can check out which database table relates to your requirement.
    Good Luck & Regards.
    Harsh Dave

  • "where used" list for query structures

    Hello Community,
    A structure is a re-useable BEx query object. I'm using the older version of BW 3.5, and we need to be able to identify the following :
    which structures have been used by a given query (using the query's technical name) ?
    which queries already make use of a given structure (using the structure's technical name) ?
    Any useful instructions would be so helpful.
    Thanks!
    Keith Helfrich

    Hi,
    You can get the where used list of the structures bu checking in query designer itself for where used list.
    Other option is : for both parts of your question you can get the infrmation from table RSZELTDIR.
    Here you will get the ELTUID . To find the relation between ELTUID and query technical name (COMPUID), check the my wiki below for exploring the relations below:
    http://wiki.sdn.sap.com/wiki/display/BI/ExploretherelationbetweenBEx+Tables
    -Vikram

  • Bizzare situation withn the "Where used list" for a table

    Hello all,
    I use the "where used list" (all check boxes selected) function in SE11 to find out where and how the table FMGLFLEXT (same for table FMGLFLEXA) is being used and updated. All I get is a reference to a function module, namely   “G_POSTING_FMGLFLEXT”. When I do a "where used list" (once again, all check boxes selected) for the FM, I get the message: Function Module G_POSTING_FMGLFLEXT not found in selected search area Message no. ES120“ despite the fact that all check boxes are selected.
    Yet this table contains data which were put in there via transaction FB50 (G/L Acct Pstg: Single Screen Trans.). So somehow, somewhere this data was created and put into the table.
    I don’t get it! What am I missing?
    Thank you for your help

    Old thread, but anyway: There is one more thing to do to get the complete where-used list:
    (1) Select all checkboxes in the "Used in" block (as you did, probably by using the button "Select All (F7)")
    (2) and use the button "Search Range" (quickinfo "Limit Search Range (F5)") -- although the following pop-up is called "Restrict hit lit" you will find there a checkbox "Search also in generated objects". In my case that's how I found a generated function module G_POSTING_Z.... in SAP's namespace but with customer db table name Z....

  • Where-Used list for BEx query chars & KFs

    Hello everyone.  I am trying to find a way to identify what Characteristics and Key Figures are used withing an infocube in BW.  I think that the BW Statistics cubes may help, but that was going to be my fallback option. 
    I couldn't find a way to do a where-used list for characteristic and key figures when in the Query Designer.  I can do a where-used on restricted key figures and char. variables.
    Does anyone know of other ways to do this.  How about looking in some of the core BW DB Tables (eg. RS*)?
    Thanks,
    Kevin

    Oh my, I just realized that I typed in my question wrong.  I am sorry.  That's what I get for doing this during a long meeting!
    Here's the right question (I double-checked this time):
    I am trying to find what queries contain some specific chars & KFs.
    So you are exactly right that the previous suggestion for using RSD1 would work to find what infocubes they are used in.
    Sorry for the confusion.
    Kevin

  • Where used listing for Query Variables

    Can someone tell me how to get this list from the metadata repository or from the transport connector?
    I have read this thread "where used" list for BEx variables but this isn't working for us.
    Is there some config that is required which we have missing?
    We are running BI7 SP19 if this helps.
    Thanks
    Craig

    Arun,
    Yeah I figured as much, but this is why I am thinking we have something missing, config or otherwise.
    Cause all I get when I do this is a new window with just the Variable details and nothing else, no where used list at all i.e.
    Page Creation Date: 17.03.2009 15:12:03
    Technical name: V_FSTMONTH
    Object version: Active version
    System: BWDCLNT200
    Description (Short): 1st of Month to Toda
    Description (Long): 1st of Month to Today
    Last Changed On 17.03.2009 13:25:39
    Last Changed by ARMSTEC
    Is there something I need to get our Basis Team to do ?
    Thanks
    Craig

  • Bizarre situation with the "Where used list" for a table updated by FB50

    Hello all,
    I use the "where used list" (all check boxes selected) function in SE11 to find out where and how the table FMGLFLEXT (General Ledger Public Sector: Total) is being used and updated. All I get is a reference to a function module, namely   “G_POSTING_FMGLFLEXT”. When I do a "where used list" (once again, all check boxes selected) for the FM, I get the message: Function Module G_POSTING_FMGLFLEXT not found in selected search area Message no. ES120“ despite the fact that all check boxes are selected.
    Yet this table contains data which were put in there via transaction FB50 (G/L Acct Pstg: Single Screen Trans.). So somehow, somewhere this data was created and put into the table.
    I don’t get it! What am I missing?
    Thank you for your help

    There could be several reasons for this, including:
    - The cross reference tables (used by the "where used" functionality) have not been updated in the system you are logged into - check with your Basis team on this as the programs that do this (a) run for hours and (b) take up a fair chunk of database space.
    - The data may be stored via dynamic SQL (e.g. "insert into (g_tab_name)") so the table reference doesn't show up
    - The function module may be called dynamically so the FM where used doesn't reflect this
    You could try, instead, using the ST05 SQL Trace to track what code is updating the table when you run FB50.
    Jonathan

  • Where used list for Variable

    Hi ,
    I have a custom variable and want to know every query it has been used in.
    How can I find out?
    Metadata repository does not contain this info (checked already)
    Regards

    Hi,
    Method 1 :Right click on variable in Query Designer and find the where used list.
    Method 2 Please go to  SE16--> RSZGLOBV -->Enter the variable VNAM as 'Variable Name' ->Get the VARUNIID> Go to table RSZELTXREF --> Enter the values of VARUNIID in TELTUID --> Get the list of SELTUID --> Go to table RSZCOMPDIR --> Enter the values of SELTUID in COMPUID --> Get the list of COMPID -->COMPID is the list of queries.
    -Vikram

  • Where used list for planning variable

    Hi
    I have one variable in a  planning area.
    Can I find where it is used..? in which planning function or layout?
    Is there anything like "where used list " for variables in BPS.
    Thanks for your replies.
    Nandita

    Thanks Bindu.
    Is there any other way to solve the question. That will be very useful. A table name or sme thing like that....
    I have very limited access to Client system .Can not create a report program and execute it.
    Thanks for your responce.
    Nandita

  • Variable name declared by using an object-------Where Used List

    Hi,
          Can anyone let me know how to find the variable names that are defined by using an object  like 'sflight' in all the reports, classes,funciton modules.
    For example
    in a report   'ZREPORT'  i have declared a variable data lt_sflight type table of sflight.
    and in other report 'ZREPORT1' i have declared as data lt_sfli type table of sflight.
    and i want to know the all the variable name that are declared by using sflight object say in all reports,FM'S and Classes
    Edited by: PEEDNAS on Feb 3, 2011 10:02 AM
    Edited by: PEEDNAS on Feb 3, 2011 10:08 AM

    Hi Sumodh,
                         Thanks for your information but
    the where used list internally uses 'RS_TOOL_ACCESS' FM for that FM if we give object type and object name then it gives some search results  and from there we can check the variables names manually directly but i want to get the list of variable names directly
    Regards,
    Sandeep

Maybe you are looking for

  • Repeating Header from the Second Page

    Hi All, i want to Repeat the Header from the Second page but it is not repeat. i tried in the following ways 1.I have given "Repeat as a header row" in the table properties 2. I Tried with Start Body and End Body(here i am using a this from first pag

  • Camileo H10 - What SD card can I use?

    Hi anyone, I am new to Toshiba products. I have just bought one of your movie cameras ( Camileo H10 ) and i cannot find any help online. The questions i wanted to ask were, 1.) What class (for speed) of SD card can the camera use. 2.) Is there somewh

  • Need Java api for .class file comparison....

    Hi all, In .net one CecilAssemblyAnalyzer api is der it analyze the two version of .net applic in offline mode (pick .exe and .dll files) n forms tree structure and den copares both tree n get the changed function.. i need same type api in Java... Th

  • Hyperion Planning Classic or EPMA?

    Hi, We are creating new Hyperion Planning applications (11.1.2.2.300) and it is time to decide if we should continue using Hyperion Planning Classic or move to EPMA. We are already using Calculation Manager, but not Dimension and Application Library.

  • Link Workflow Document to BKPF object

    I have a workflow document object (WF_DOC) that I created in my workflow that I want to attach/relate/link to a accounting document object (BKPF). Has anyone tried this? Standard workflow (SAP ver 4.6b) works great and attaches the WF_DOC to the task