Queries from TADIR

Hi,
It might be a very simple thing.
In the table TADIR, how do I differentiate which are queries only.
Kindly help.
Warm Regards
Navnita

Hi,
In TADIR give OBJECT(Object type) as 'ELEM'. u will get all query elements.
To find a particular query give OBJ_NAME(Object Name in Object Directory) as the GUID.
GUID u will get from RSZCOMPDIR. in RSZCOMPDIR give ur query name in COMPID, in COMPUID u will get the GUID.
Hope it helps.
Regards,
Rathy
Edited by: Rathy Moorthy on Jun 30, 2009 12:23 PM

Similar Messages

  • Errors while copying queries from Infoset to DSO in BI 7.0. Why

    Hi All,
    I am trying to copy queries from Infoset to DSO in BI 7.0.
    Message displayed after entering the data target names in Source Infocube (Infoset) & Target Infocube (DSO).
    : Errors when reading InfoObjects for InfoCube (Infoset).
    My Infoset has 2 queries.
    I need to copy only one query to the DSO which is part of the infoset. How can we achieve this.
    Please explain.
    Thanks

    Hi Murali,
    who said the target is different.
    The target is different in the sense, source is an Infoset & Target is an DSO.
    This DSO is a part of the above Infoset.
    RSZC works here but its giving errors as mentioned above.
    Regenerate in the sense, u mean i need to create the same again on DSO.
    Is there any other way.
    If providing some solution, let it be clear.
    Thanks.

  • How to copy queries from 1 Query folder to another query folder in TFS 2013 using C # programmatically ?

    Hi ,
             I'm trying to copy a bunch of queries from 1 folder in "Shared queries" to another folder within "Shared Queries" using C#.
             I'm looking to do something like this
             foreach(query q in folderx )
                            foldery.query = folderx.query;
              I have been trying to use the queryfolder and its properties but not able to find the correct class/property/function to use. I have seen this link http://bzbetty.blogspot.in/2012/12/tfs-automation-automatically-creating.html
    but here they are creating new queries in the new folder rather than copying it .

    Hi Arun,
    I am trying to involve someone to further look at this issue. There might be some time delay. Appreciate your patience and thanks for your understanding.
    And you can check if the tool that made by Dan helps, check the link:
    http://dhvik.blogspot.in/2009/06/handling-work-item-queries.html
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Moving multiple queries from one category to another in QM

    Hi All,
    Is there is any way of moving multiple queries from one category to another in the query manager?
    Or is the only way of doing it by saving each one individually into a different category.
    Any ideas ?
    Regards,
    Rakesh N

    Hi Rakesh,
    The query manager has limited function compare with normal file management applications. Under current design, you have to do this one by one. You just need to make sure move the smaller amount of queries to large category. Category name can be changed easily.
    Thanks,
    Gordon

  • Reading Queries from within planning functions

    Hi all,
    Does anyone of you have experience with the following thrilling task: We want to read specific queries from within a BPS function, handing over parameters like company code and profit center, retrieving the query results and writing them into a cube.
    Is this feasible and would anyone know about the function modules to use?
    Many thanks in advance,
    Andreas Krüger

    Andreas,
    I found a soultion for your problem.
    I tried at in my system and it works fine.
    Pl do the following:
    1. Have a multiarea with actual and plan areas or have one area but make sure you load data from actual to plan.
    2. In the level, select all the charactetirtics and key figures that you wish to see in the report.
    3. Make a layout and configure it accordingly. If header has mutiple values, make sure you have a variable on that.
    4.Make a folder and execute it.
    5. When the folder is opened, all the data in the cube will be displayed in the change mode.
    6. View the date and change them if you wish, save.
    Let me know if you ned any help.
    Ravi Thothadri

  • Tracing queries from abap to a custom database via dblink

    I' m connecting to a database by dblink (name magiap).
    I would like to know if somewhere I can trace all the queries from abap to oracle in this specific session , to dbs ='MAGIAP'.
    For istance, i would like that the query "SELECT "DESPARTY1"
    into :v_DESPARTY1
    FROM "T040PARTY"
    WHERE "CODPARTY" = '305142941' will be stored some where (in a file??).
    I would like that parameters - w_CODPARTY- will be substituted and stored in the trace file with the value (305142941), as shown in the previous
    Here is the piece of code ..(a very short example of course)..
    DATA : dbs LIKE dbcon-con_name,
    v_CODPARTY(15),
    v_DESPARTY1(60).
    data : w_CODPARTY(15) value '305142941'.
    dbs = 'MAGIAP'.
    TRY.
    EXEC SQL.
    CONNECT TO :dbs
    ENDEXEC.
    IF sy-subrc <> 0.
    EXEC SQL.
    CONNECT TO :dbs
    ENDEXEC.
    ENDIF.
    IF sy-subrc <> 0.
    * RAISE err_conn_aea.
    ENDIF.
    EXEC SQL.
    set connection :dbs
    ENDEXEC.
    EXEC SQL .
    SELECT "DESPARTY1"
    into :v_DESPARTY1
    FROM "T040PARTY"
    WHERE "CODPARTY" = :w_CODPARTY
    ENDEXEC.
    IF sy-subrc NE 0.
    * rc = 4.
    ENDIF.
    EXEC SQL.
    DISCONNECT :dbs
    ENDEXEC.
    ENDTRY.

    Hi Silvana,
    The SQL statements have been stored in the SQL Cursor Cache, on the database and they will be available until they have been invalidated. You can access the statements at the 'MAGIAP' side and see the last executed queries in the cache.
    You can access bind variables by query on the V$SQL_BIND_CAPTURE table, also.
    On the other hand, you can activate the trace by the statement, below;
    ALTER SYSTEM SET sql_trace = true SCOPE=MEMORY;
    Then, the sql statements will be available in the usertrace file. Please note that you should execute and investigate all the statements that I noted above, at the remote side. Plus, as far as I know that it is not able to distinguish the records by the "dblink name". You should check all the statements and try to figure out what queries have been executed remotely.
    Best regards,
    Orkun Gedik

  • Trace queries from abap to a custom oracle database via dblink

    I' m
    connecting to a database by dblink (name magiap).
    I
    would like to know if somewhere I can trace all the queries from abap to oracle
    in this specific session , to dbs ='MAGIAP'.
    For istance, i would like that the query
    "SELECT "DESPARTY1"
    into :v_DESPARTY1
    FROM "T040PARTY"
    WHERE "CODPARTY" = '305142941' will
    be stored some where (in a file??).
    I would like that parameters - w_CODPARTY- will be substituted and stored in the trace
    file with the value (305142941), as shown in the previous
    Here
    is the piece of code ..(a very short example of course)..
    DATA : dbs LIKE dbcon-con_name,
    v_CODPARTY(15),
    v_DESPARTY1(60).
    data : w_CODPARTY(15) value '305142941'.
    dbs = 'MAGIAP'.
    TRY.
    EXEC SQL.
    CONNECT TO :dbs
    ENDEXEC.
    IF sy-subrc <> 0.
    EXEC SQL.
    CONNECT TO :dbs
    ENDEXEC.
    ENDIF.
    IF sy-subrc <> 0.
    * RAISE err_conn_aea.
    ENDIF.
    EXEC SQL.
    set connection :dbs
    ENDEXEC.
    EXEC SQL .
    SELECT "DESPARTY1"
    into :v_DESPARTY1
    FROM "T040PARTY"
    WHERE "CODPARTY" =
    :w_CODPARTY
    ENDEXEC.
    IF sy-subrc NE 0.
    * rc = 4.
    ENDIF.
    EXEC SQL.
    DISCONNECT :dbs
    ENDEXEC.
    ENDTRY.

    Hi Silvana,
    The SQL statements have been stored in the SQL Cursor Cache, on the database and they will be available until they have been invalidated. You can access the statements at the 'MAGIAP' side and see the last executed queries in the cache.
    You can access bind variables by query on the V$SQL_BIND_CAPTURE table, also.
    On the other hand, you can activate the trace by the statement, below;
    ALTER SYSTEM SET sql_trace = true SCOPE=MEMORY;
    Then, the sql statements will be available in the usertrace file. Please note that you should execute and investigate all the statements that I noted above, at the remote side. Plus, as far as I know that it is not able to distinguish the records by the "dblink name". You should check all the statements and try to figure out what queries have been executed remotely.
    Best regards,
    Orkun Gedik

  • Calling MS Access queries from Java

    Anyone have any idea if it's possible to call MS Access queries from Java? I have a client who is insistent on keeping MS Access for their database, and it'd be nice if I didn't have to receate all their queries in Java.
    I've successfully connected to and queried the Access MDB, but I need to know if it's even possible to execute the stored MS Access queries they have setup in the database.
    Thanks!

    See reply 6 in the following....
    http://forum.java.sun.com/thread.jspa?forumID=48&threadID=203818

  • SQL queries from a Citadel database

    We are retrieving data with third-party package SQL queries from a Citadel database. Certain queries for some object members will not return data, but the SQL search application software returns an "error". An analysis of the error from the SQL end does not find problem on SQL side. I suspect corruption of Citadel database. The link to database is good, as most tags do return a value as expected. 
    This problem occurred at the time of re-location of the database to a replacement computer.  Any ideas on how to fix such a problem?

    Can you give an example of the "bad" SQL statement and a good one?
    Ryan Shi
    National Instruments

  • How to detach/delete queries from workbooks

    One of our users has a huge workbook with over 200 queries. He wanted to remove part of the queries but instead of deleting the queries he removed the excel tabpages with the queries as a result of wich the connection with the queries is still there.
    Is there a way to remove the connected queries without having to remove all queries ?
    Refreshing all queries is not an option.
    I also tried to remove the records in table RSRWORKBOOK but this also didn't remove the connection, after opening and saving the workbook in Bex, the removed records in RSRWORKBOOK appeared in the table again.

    Hi Tine.
    Try to add this VB code to the WB:
    <i>Sheets("SAPBEXqueries").visible = True
    To make it quite invisible again, the command is:
    Sheets("SAPBEXqueries").visible = xlSheetVeryHidden</i>
    This makes the sheets with the information used in the workbook visible (you will find the queries in sheet 1). You can try to delete the queries from here. I don't know if it works, but just an idea.
    Hope it helps.
    BR
    Stefan

  • Upgrading queries from 3.5 to Bi 7.0

    Hi Gurus
    If we are involved in a project where they are upgrading queries from 3.5 to 7.0 version what kind issues may occur.  Please try to help me out .........
    Naga

    Hi Ajax
    <i>With NW04S GUI
    -Opening Existing 3.x queries in BI 7.0 query designer errors out
    Compiler Error?
    -Adding button to a report is not working with Bex Analyzer. Is there a fix already available or something to do with the Gui?
    - Adding dropdown boxes to bex reports is not working when a value is selected from the dropdown box. Is there a fix available or something to do with the Gui?</i>
    <i><b>Can you tell me how did you solve these isues WITH NW04S GUI</b></i>
    Is it WITH 7.0 FRONT END or 3.5 Front end?
    <b>With 3.5 Front end</b>
    <i>- 2 Structures in a query generates dump
    - Variants are missing. Ran a program RSR_VARIANT_XPRA, it dumped.
    - Report to Report Interface has shown error message. 0Employee_zch_hrdt can not be uniquely assigner.
    - Change of currency translation settings during runtime gives error</i>
    I understand when variants are missing you have ran a program and hence that problem got fixed. Can you tell me where to run this program?
    Same way can you tell me how to resolve other issues?
    You made my life easier by sending some real time scenarios. I was unable to defend my resume. This really helps if you tell me how to solve some issues. Thank you very much
    Regards
    Naga

  • Migrating queries from 3.5 to 7.0

    hi,
    we are in the process of migrating from BW 3.5 to BI 7.0. i would like to know, what are the steps to be executed to migrate queries from 3.5 to 7.0.

    There is no migration and there is no new GUID and there are no new objects in database tables. However, once you save the query with the NetWeaver 7.0 (2004s) Query Designer you cannot edit it anymore with the 3.5 Query Designer.
    In general the system logic allows you to still edit other 3.5 queries in the 3.5 Query Designer even if they are re-using elements of a query that has been edited with SAP NetWeaver 7.0 (2004s) BEx Query Designer as long as the reusable elements use no 7.0 (2004s) features (such as planning settings, new aggregation on formulas, variables with multiple default values).
    Please also check the NetWeaver 7.0 (2004s) BI release notes and check note 832713.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4754bc74-0901-0010-3e82-b761b4c74937
    Hope it Helps
    Chetan
    @CP..

  • Unable to view queries from MS Access 2003

    Hi
    I installed Oracle SQL Developer 2.1.0.63 on my machine. I successfully connected to one of MS Access 2003 database. Also I changed the permissions of MS Access system tables in database. So I am now able to see all my tables under "Tables" in that database.
    But I am not able to view query contents which I have written for MS Access tables (Only names of those queries are displayed under "Queries").
    Can anyone plz help me out for this?
    Thanks.
    Edited by: user12364936 on Dec 17, 2009 10:56 PM

    Hi,
    Queries from MS Access are considered as Views in Oracle.
    So I recommend you to do a capture of you MS Access database to view correctly your queries:
    ==>Right click on Access connexion
    ==>Select 'Capture Access database' menu
    Once the captured has been made, you'll see in the capture the 'Views' with same names as your queries.
    Right click on the view and select Edit menu.
    You'll see the script which can be used to retrieved the same data than your queries.
    I hope it helps you.
    Regards
    Mireille

  • Activating standard queries from BI content

    Hi Guys,
          Can u give me the step by step process to activate standard queries from the BI content with all its related objects.
    Thanks in advance...

    Hi,
    To install Query:
    RSA1->Business Content->first choose 'Collection Mode' Start Manual Collection.
    Click 'Source System Assignment' button and tick R/3 source system or other source system related (Normally this setup will be done if someone already installed business contents before).
    Then left window choose 'Object Type' -> middle window choose 'Query Elements->Query' and double click 'Select Object' -> find the Query you want to install, and click 'Transfer'.
    Query will be transferred to right window, click Grouping and choose option 'Only Necessary Objects',
    After objects collection is done, click 'Install'-> Install (you can do simulation here, check the help for details).
    Thanks & Regards,
    SD

  • Queries from business content

    Hi,
    When we install the out of the box business content queries from business content where are we able to see those queries. ( Like when we install infocube and dataflow before and we will be able to see it all in modeling area, same way where can we see the queries).
    Also when we install the queries will the objects like structures,variables, restricted key figures and calculated figures will also get installed.?
    Thanks for all the help in advance.

    Well the queries will always be attached to an InfoProvider, so you can easily see a list of queries under each InfoProvider. You can see this in the Open Dialog in Bex, or in the BW system you can do this in RSRT. Just F4 on the query text box and lookup up the queries by InfoArea. You can get a whole list of the queries, but then that would mean going to tables and deciphering the query GUIDS.
    Another way is to go to the Metadata Repository and looked at queries within the Local Objects (Activated objects).
    Hope this helps...

Maybe you are looking for

  • Export/Import Parameters dissapear when using user-exit

    I am using some import/export parameters in a dynamic action when I create a new record (infotype). I am also using a user exit to avoid modifying BEGDA and ENDDA when I modify the record (IPSYST = 'MOD'). Using this user-exit, the parameters dissape

  • SAP ECC 6.0 SR3 Cluster failover not working in windows with DB2 UDB V9.1 F

    Dear Expertise, We have installed the SAP ECC 6.0 SR3 High Availability with DB2 UDB V9.1 FP5 in windows cluster environment. We have installation following instances on nodes 1 and 2. Node 1                                                           

  • SRM7.0 - PO status issue in ECS

    Hi, We are observing status (Tracking-Status) of ECS POs is always "In Transfer to Execution system". Can some body help me in analysing why is it so?. We are working on SRM7.0-SP03 and we are observing above mentioned issue only in Extended Classic

  • Transition,and bleeding jpeg problems in fce 4

    3 problems..1st) 2 jpegs with motion(lets say a pan) the motion starts from fist frame,looks good,add ANY transition(say a cross disolve) the 2nd photo is still until the transition is done then the motion starts..this delay prevents a smooth flow. t

  • Cisco Desktop Agent\Supervisor & Windows 7 Compatibility

    We are on Customer Response Solutions V 5.0(2).  In order to install the Desktop Agent on Windows 7 we need to install DA v 7.5(8).  We have been told by our VAR that we need to upgrade not only our CRA but also our CallManager to verison 8.  This is