Queries built on ODS

I have a number of ODS which have the BEx flag checked.  How can I check which ODS have existing queries built on them? Thanks

hi,
Table RSRREPDIR directory for all reports
Posting a couple of links that can help you get started:
http://help.sap.com/saphelp_nw04/helpdata/en/37/5fb13cd0500255e10000000a114084/content.htm
https://media.sdn.sap.com/html/submitted_docs/Best_Practices/BW/html/bw.htm
And if you have system access, you can look into the Meta data Repository .
You can look here:
http://help.sap.com/saphelp_scm41/helpdata/en/12/3dfd81126e1c448c870f335f11d016/frameset.htm -- Business Suite
or here
http://help.sap.com/saphelp_47x200/helpdata/en/e1/8e51341a06084de10000009b38f83b/frameset.htm -- mySAP ERP

Similar Messages

  • 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.

  • Authorization Error when running queries built on IP Aggregation Levels

    Hi,
    Did anyone encountered this kind of issue.
    We are in NW04s SP 9.
    When running a query built on Integrated Planning aggregation levels getting authorization error
    " Do not have authorization Component !! ARMMGASL ".  (ARMMGASL is the name of Multi Provider)
    Queries built directly on Multi Provider "ARMMGASL" works fine.
    Security trace doesn't show any failures
    Any help or info on this highly appreciated.
    Thanks,
    Suresh Yalavarthi

    Hi Frank,
    We have the same issue. What did you do to solve it?
    The suggestions you received are already investigated/done, but don't provide a solution.
    regards, André

  • Infocubes?ODS?Multiprovider?Infoset?-Performance?????

    Hello Experts,
          Infocubes?ODS?Multiprovider?Infoset?
    In our design stage we had no problem creating ODS and Cube's but as our requirements kept changing we had to create Infosets rather than Multicubes as we were not having common fields between Cube and ODS. Secondly we couldn't have cubes as Infosets are built between ODS and Infoobjects.
          Can someone throw some light on the performance issues based on our current design were we have ODS and Infosets built. What are the pros and cons between
    1) InfoCubes and ODS
    2) MultiCubes and Infosets
          Any kind of thoughts would be of great help in our analysis.
    Thanks,
    Priya
    Guys anyone who faced difficulty in analyzing such issues please do post your views.

    We has the same requirements ...and had to build a lot of info sets ....
    Reporting on any of the Navigational Attributes is NOT possible on an Info Set.
    Go to RSRT and look on what fields on which the query is doing a Sequential read...if required try to build indexes on that fields.
    In some cases we cannot restrict the queries ...if you are queering on yearly reports ...running against InfoSet's is not at all recommended......
    For better performance of your queries try to build secondary indexes and as far as possible try to avoid InfoSet ....BW 3.5 has ADP try to workout something on that if u are on 3.5.
    For performance try to compress your request in your cubes on your  BP.
    Let me know
    Message was edited by: Suresh Kaudi
    Message was edited by: Suresh Kaudi

  • How to find the list of all queries on each and every cube in the system???

    Hi All,
    I need some method to get all the reports(queries)(technical name and description),run on all the infocubes in the system. The number is very huge...roughly...on each cube there are near about 40-50 reports and the number of cubes is also too high.
    Is there any table or function moudle which can make this job easy and less time consuming.
    Freinds I need this solution urgetly. Please rush back...
    regards,
    minal

    Hi Minal,
    RSZCOMPIC table lists queries built on the cubes.
    COMPUID is an ID of the query.
    RSZELTDIR table contains description of the reporting elements. DEFTP field equals “REP” designates queries.
    Search for  RSZELTDIR-ELTUID = RSZCOMPIC- COMPUID. Field MAPNAME will contain a tech name of the query and TXTLG field – its description.
    Best regards,
    Eugene

  • How to track the queries for a given info object

    Hello All,
    I have info object 0COORDER, I wan to know what are list of queries built on this particular info object
    Full points just for solution or suggestion
    varsha

    Hi
    This can be easily found in Meta Data Repositry. RSA1 --> Meta Data Repositry --> Choose the category Infoobject and search for your required infoobject, here you get following Info:
    1. Display Attributes of the Info Object
    2. Navigationla Attributes of the Info Object
    3. Queries in which they are used.
    4. Used by which MP,Cubes,DSO, Info Set , Transfer Rules etc.
    Regards
    Raj Rai

  • Inconsistencies between CR wildcard (* and ?) and SQL std queries (% and _)

    Certain queries built using Crystal Reports do not return a full result set of data as expected, compared to using standard SQL wildcards in an interactive native SQL tool.
    Does anybody know if any of these are bugs in Crystal Reports?
    See example data and queries with their associated results below.
    Example:
    Table name: customer
          Column definitions:
              lname char(20)
              state char(2)
          Relevant rows from our demo database, queried from the native interactive SQL tool are shown below.  For the purposes of illustration, I modified some of the state fields so that there were examples of 'N ', ' N' and 'N' (space in front of the letter N, space after the letter N, and just the letter N with no spaces). I have also added the single quote characters in the query results for those rows to highlight where the spaces exist or do not exist in the data:
    1 > select id,lname,city,state from customer
          where state like '%N%' or lname like '%en %'
    Col.    id      lname                   city                    state
    [ 1]    101     Devlin                  Rutherford              'N ' < was NJ
    [ 2]    102     Reiser                  New York                'N'  < was NY
    [ 3]    104     Mason                   Knoxville               NN
    [ 4]    105     McCarthy                Carmel                  IN
    [ 5]    107     Colburn                 Raleigh                 NC
    [ 6]    108     Goforth                 Chattanooga             ' N' < was TN
    [ 7]    111     Ricci                   Syracuse                NY
    [ 8]    112     McDonough               Brooklyn Park           MN
    [ 9]    113     Kaiser                  Minneapolis             MN
    [ 10]   114     Chopp                   St Paul                 MN
    [ 11]   115     Phillips                St Paul                 MN
    [ 12]   116     Gugliuzza               Mamaroneck              NY
    [ 13]   118     Sanford                 Raleigh                 NC
    [ 14]   120     Stein                   Elmsford                NY
    [ 15]   121     Elkins                  Carmel                  IN
    [ 16]   129     Fahrvergnugen           Baltimore               MD
    [ 17]   131     Sinnot                  Bohemia                 NY
    [ 18]   132     King                    Fort Wayne              IN
    [ 19]   135     Clarke                  New York                NY
    [ 20]   136     Wooten                  Plymouth                MN
    [ 21]   137     Morfek                  Ft. Wayne               IN
    [ 22]   138     Patoff                  Burlington              ON
    [ 23]   141     Pyper                   Fort Wayne              IN
    [ 24]   147     Lela                    Wood Bridge             NJ
    [ 25]   150     Mason                   Don Mills               ON
    [ 26]   152     Jones                   Austin                  NY
    [ 27]   160     Nette                   Port Washington         NY
    [ 28]   163     Peese                   Mississauga             ON
    [ 29]   165     Mournen                 Ft. Wayne               IN
    [ 30]   169     Terlemezian             Matthews                NC
    [ 31]   177     Zubenko                 Raleigh                 NC
    [ 32]   179     Nguyen                  Miramar                 FL
    [ 33]   180     Peros                   Rochester               NY
    [ 34]   181     Teeven                  Washington              DC
    [ 35]   198     Chen                    San Ramon               CA
    [ 36]   199     Mentary                 Rochester               NY
    [ 37]   202     Murphy                  White Plains            NY
    [ 38]   208     Suess                   Albany                  NY
    [ 39]   221     Johnson                 Santa Fe                NM
    [ 40]   331     Johansen                New Orleans             LA
    [ 41]   550     Antolini                Fargo                   ND
    [ 42]   552     OToole                  Nashville               TN
    [ 43]   665     Thompson                Manchester              NY
    43 rows Affected.
    Several queries perform as expected between Crystal Reports and the native SQL query tool.  However, in some cases, the results are different.  Crystal Reports does not return as much data as the native SQL query tool.  I'm not implying which one is correct, I'm merely stating that there is a difference between them.
    In the cases below, the 'Crystal Reports record selection formula' is obtained by navigating the Crystal Reports menu: Report -> Selection Formulas -> Record...
    Single quotes are not specified in the results below - refer above for the actual data in those rows.
    The following cases are inconsistent between the native SQL query tool and Crystal Reports designer:
    Case 1:
    Length of field to be searched: Short (2 chars)
    Wildcard description: letter 'N' + any single character
    Native interactive SQL query and results:
    1 > select id,lname,city,state from customer where state like 'N_'
    Columns:        id      lname   city    state
    [ 1]    101     Devlin                  Rutherford              N
    [ 2]    102     Reiser                  New York                N
    [ 3]    104     Mason                   Knoxville               NN
    [ 4]    107     Colburn                 Raleigh                 NC
    [ 5]    111     Ricci                   Syracuse                NY
    [ 6]    116     Gugliuzza               Mamaroneck              NY
    [ 7]    118     Sanford                 Raleigh                 NC
    [ 8]    120     Stein                   Elmsford                NY
    [ 9]    131     Sinnot                  Bohemia                 NY
    [ 10]   135     Clarke                  New York                NY
    [ 11]   147     Lela                    Wood Bridge             NJ
    [ 12]   152     Jones                   Austin                  NY
    [ 13]   160     Nette                   Port Washington         NY
    [ 14]   169     Terlemezian             Matthews                NC
    [ 15]   177     Zubenko                 Raleigh                 NC
    [ 16]   180     Peros                   Rochester               NY
    [ 17]   199     Mentary                 Rochester               NY
    [ 18]   202     Murphy                  White Plains            NY
    [ 19]   208     Suess                   Albany                  NY
    [ 20]   221     Johnson                 Santa Fe                NM
    [ 21]   550     Antolini                Fargo                   ND
    [ 22]   665     Thompson                Manchester              NY
    22 rows Affected.
    Crystal Reports record selection formula and results:
    {customer.state} like "N?"
                            id  lname                 city                  state
                           104  Mason                 Knoxville             NN
                           107  Colburn               Raleigh               NC
                           111  Ricci                 Syracuse              NY
                           116  Gugliuzza             Mamaroneck            NY
                           118  Sanford               Raleigh               NC
                           120  Stein                 Elmsford              NY
                           131  Sinnot                Bohemia               NY
                           135  Clarke                New York              NY
                           147  Lela                  Wood Bridge           NJ
                           152  Jones                 Austin                NY
                           160  Nette                 Port Washington       NY
                           169  Terlemezian           Matthews              NC
                           177  Zubenko               Raleigh               NC
                           180  Peros                 Rochester             NY
                           199  Mentary               Rochester             NY
                           202  Murphy                White Plains          NY
                           208  Suess                 Albany                NY
                           221  Johnson               Santa Fe              NM
                           550  Antolini              Fargo                 ND
                           665  Thompson              Manchester            NY
    Note that the first two rows are not present here.
    Case 2:
    Length of field to be searched: Short (2 chars)
    Wildcard description: letter 'N' + one space 
    Native interactive SQL query and results:
    1 > select id,lname,city,state from customer where state like 'N '
    Columns:        id      lname   city    state
    [ 1]    101     Devlin                  Rutherford              N
    [ 2]    102     Reiser                  New York                N
    2 rows Affected.
    Crystal Reports record selection formula (menu: Report -> Selection Formulas -> Record...) and results:
    {customer.state} like "N "
                            id  lname                 city                  state
    No data is displayed.
    Case 3:
    Length of field to be searched: Long (20 chars)
    Wildcard description: 0 or more + 'en' + space + 0 or more
    Native interactive SQL query and results:
    1 > select id,lname,city,state from customer where lname like '%en %'
    Columns:        id      lname   city    state
    [ 1]    129     Fahrvergnugen           Baltimore               MD
    [ 2]    136     Wooten                  Plymouth                MN
    [ 3]    165     Mournen                 Ft. Wayne               IN
    [ 4]    179     Nguyen                  Miramar                 FL
    [ 5]    181     Teeven                  Washington              DC
    [ 6]    198     Chen                    San Ramon               CA
    [ 7]    331     Johansen                New Orleans             LA
    7 rows Affected.
    Crystal Reports record selection formula (menu: Report -> Selection Formulas -> Record...) and results:
    {customer.lname} like "*en *"
                            id  lname                 city                  state
    No data is displayed.
    Case 4:
    Length of field to be searched: Long (20 chars)
    Wildcard description: 0 or more + 'en' + any 7 chars
    Native interactive SQL query and results:
    1 > select id,lname,city,state from customer where lname like '%en_______'
    Columns:        id      lname   city    state
    [ 1]    129     Fahrvergnugen           Baltimore               MD
    1 rows Affected.
    Crystal Reports record selection formula (menu: Report -> Selection Formulas -> Record...) and results:
    {customer.lname} like "*en???????"
                            id  lname                 city                  state
    No data is displayed.
    Case 5:
    Length of field to be searched: Long (20 chars)
    Wildcard description: 0 or more + 'en' + seven spaces
    Native interactive SQL query and results:
    1 > select id,lname,city,state from customer where lname like '%en       '
    Columns:        id      lname   city    state
    [ 1]    129     Fahrvergnugen           Baltimore               MD
    1 rows Affected.
    Crystal Reports record selection formula (menu: Report -> Selection Formulas -> Record...) and results:
    {customer.lname} like "*en       "
                            id  lname                 city                  state
    No data is displayed.

    Clint,
    Yes, I think that would probably work fine. 
    The point here is that I think there is a bug in the way Crystal Reports processes wild card strings and passes the sql to the downstream database.  Crystal Reports should translate the wild card strings into the corresponding sql standard syntax, and pass the wild card string to the database, but it does not appear to be doing this.
    At this point, I am only interested in notifying the SAP / Business Objects engineering department of this bug, or in posts that point me to a fix to the bug, rather than a work-around.
    Thanks . . .
    - Jay

  • BW statistics for ods objects

    Hi Everyone,
    In the search criteria I found documents only for bw statistics for infocubes. but not for ods objects.
    After executing the queries for the ods objects in the bex, the entries are not made in rsddstat table, then where else it is store.
    Can anyone please let me know how can I find the query runtime of ods objects.
    Thanks,
    Prashant.

    Hi,
    Yes I marked for the ods objects also for olap and whm, and executed the query in bex analyzer but still I do not get any entries for these objects in RSDDSTAT table.
    What could be the problem. Is there a different procedure to find the query runtime of ods objects, please let me know.
    Thanks,
    Prashant.

  • Table for model characteristic usage in queries

    Hi does anyone know the name of the table(s) which I can establish the following:
    1.  I have a multicube with say 15 dimensions consisting of a total of 35 Dimension characteristics
    2. There are say 6 navigational attributes switched on for reporting
    3. There are say 10 key figures
    4. There are say 65 queries built off this info provider
    What I would like to establish is in the 65 queries which elements in 1, 2 and 3 have been used.  I am aware of the RSZ* tables but was not able to find what I am looking for.  Thanks in advance

    Hi Anand,
    I find this is relevant to your query and go through this...
            The names of the structural components are language dependent. When you define and save a query with the logon language as German, only the corresponding German texts are saved in the relevant tables (for example, RSZELTTXT). This is not the original key figure, but rather a structural component, a new object that linksto the original key figure but is not the original key figure.
    ·        If you then execute the query in a different logon language to the one that you used to define the query, the standard texts are displayed for all structural components that have no text.
    ·        Structures and structural components (selections, formulas) are completely independent objects that appear in the BEx Query Designer and that you can store in the relevant tables when you save them. Since texts are fundamentally language-dependent, the texts in the query definition appear in the logon language only when you save the query.
    regards,
    rudra.
    Assign points if helpful...

  • Version Management for BW queries?

    Hi,
    Is version management available for queries in BW?
    Like an ABAP program, different versions can be generated, allowing an older version to be retrieved and overwrites current version, for the case where heavy changes applied but has to be reverted.  And also the function of comparing versions to easily identifying the differences.
    Thanks.

    There is no version management for queries built into BW. Of course, you can generate new versions of queries each time you change them by doing a "Save As...", but we have found that this is counterproductive for several reasons, including:
    1) Extra Query Maintenance - Leads to multiple copies of a query, and eventually confusion over which one(s) are supposed to be used and which one(s) are "obsolete".
    2) User Favorites Maintenance - Any favorites that have been created by users will have to be recreated from scratch using the new query and/or workbook.
    There are probably others...
    Anyway, #2 is the one that finally convinced us to stop creating new versions of queries. Instead, we do considerable testing of any changes on our Dev and QA systems before finally replacing the Prod copy of the query. Of course, "backing out" changes is still a pain this way, but at least you have the original query on Prod to go by. For really major changes, we will also generate "Before" and "After" XLS files with results, both to prove that we are getting the expected results and to serve as a way to go back if the Prod query has been updated before a problem is discovered.
    Hope this helps...
    Bob

  • BW Statistics queries Can any one help me

    Dear Gurus,
    I had Implemented BW statistics in my project.  Could u people send me any documents which contains some queries built on BW stats Info Cubes, and their uses(to analyze what they are used).  I am in urgent need of them So, Please help me out.  My mail ID is <b>[email protected]</b>
    Best Regards
    Mohan Kumar

    Hi ,
    Name of the workbook will be - BW Statistic 2.0 . And when u have installed Technical Content in the system it is always better to move all queries which is delivered as part of Technical Content .
    Then try to load some data to Statistics cubes in development and then execute the Workbook it will be give you idea of what does indivual Query does as workbook contains graphs showing Cube Usage, Aggregate Usage etc  . You can also go to each query change view and see how is it designed.
    Assign Points if it helps.....
    Regards,
    Vijay

  • BW statistics - missing ODS

    Can anyone tell me why my ODS is not in the list for activation of statistics?
    I have created a couple of ODS' and transported. I'd like to use stats to analyse the data loads but only some of the ODS' are in the list to activate (Tools->BW Statistics for InfoProviders).
    I also can't see any difference between the ODS' that would cause some to be listed & others not - I must have missed something, right?
    BW 3.5 p17
    Thanks,
    Patrick

    just a thought...
    are the settings the same for all ODS...are they all "bex reporting".
    do you have data in all the ods?
    did you create queries for all ods?
    did you refresh the AWB before getting the list?

  • Running Query on ODS Vs Multiprovider

    I would like to know the efficient method of running the queries on 1) OD'S directly 2)Create Multiprovider on ODS and run the queries using Multiprovider.
    Which method we have to adopt in which contexts. Please help me.
    thanks
    anuthalapti

    Dear Anila,
         You can always make use of Multiprovider to build queries, as the change in the data model would not impact on the Multiprovider and Query design. You can use a query on ODS , if its going to be only on that particular ODS , if you have Queries on two ODS Objects, always make use of Infosets, in this way you could eliminate any data mismatches..as they are both flat table structures.
    Hope it helps..
    Thanks,
    Krish

  • How to get list of queries .....

    how to get list of all queries on a particular cube, with descriptions?
    (meta data repository is not avilable)

    Hi..
    1. In the Bex you can fild the list of queries under a data target, by opening 'Queries'.
    In the dialog box that appears, select the Infoarea button which is in the left pane.
    You will get list of all Data targets. If you expand it you can find the queries built on those data target.
    2. If you want to get the list of queries from Tables, you have to link the following tables:
    RSZRANGE
    RSZELTXREF
    RSZELTTXT
    RSRREPDIR
    RSZSELECT
    RSZCOMPDIR
    Regards,
    Debjani..

  • BEx queries on Cubes

    Hi Gurus,
    Is there a way i can view all BEx Query in a specific Cube. If yes, what TC or how i can go there. Thanks in advance.
    Regards,
    Joven

    goto tcode se11 in BW system-enter tablename as RSRREPDIR..(table description is 'Directory of all reports')
    go to selection screen for the table and enter infocube technical name in field INFOCUBE and hit execute.
    (so that only queries built on that cube are displayed)
    In the list of records that are displayed,COMPID field gives the technical name of each of the queries.
    cheers,
    Vishvesh

Maybe you are looking for