Finding query name

Do you know a way in BW to search for the actual name of an "Internal" number?
For example I have the following #  3UTI8RFJ3F1M9WNUCL4V3M4OJAZSAUDERSL that represents some sort of query and I'd like to know which one!
Thanks,
Chris

Hi,
Use table RSZCOMPDIR
With COMPUID = '3UTI8RFJ3F1M9WNUCL4V3M4OJAZSAUDERSL'
And see the value you get for COMPID.
With rgds,
Anil Kumar Sharma .P

Similar Messages

  • How to find Query Name from Report Name

    I am trying to find a the query name for program AQFKSYSTQV000045ZCHECKNUMBERLU I have looked in Standard Work Area under all of the user groups but no luck. It is currently only in our Production System. Please suggest any other places I can look.
    Thanks in advance for your help!

    I apologize for not seeming like I have a clue....I did search the Forum...and maybe I wasn't clear with my question....again I apologize.....I am somewhat familiar with query and I understand that the query name is probably ZCHECKNUMBERLU. My issue is that I cannot find the user group. I have broken It is not a user group under Global Area or Standard Area. For example....We have a query named ASETAQUISITION.  The program name is AQFKAM==========ASETAQUISITION...This query is located in the AM User Group....Easy Find. However, the program in question is AQFKSYSTQV000045ZCHECKNUMBERLU. I have broken this program name apart every way I can think of and I cannot find a user group in my global or standard Area. So I guess I should ask, by looking at that program name, how do you determine what the user group name is so I can find the actual query?

  • Find query name

    Hi
    There is a query made earlier thru SQVI in QAS. I know the program name which got generated but don't know the query.
    Now i want to create a query in DEV which should be same as the one in QAS.
    How can i find out the query name through the program name generated. So that i can make a fresh query in DEV.
    Helpful answers will be rewarded.
    Regards
    varun mathur

    Can anyone help me in this case??
    I just want to see the query , which was created thru sqvi.
    USERGROUP      :          SYSTQV000008
    QUERY               :           ZFRC
    CLIENT                :            410
    Where can i find this usergroup in qas.

  • How to find query names in transport?

    Hi Experts,
    We have collected around five queries for transport. But in SE10, we do not see the query names. How to find out the query names there?
    With Kind Regards,
    Kannan

    Open query in query designer.
    From 'Properties' window (right side Window) dropdown select query.
    From 'Advanced' tab copy the UID. U can search that in SE09.
    OR
    Copy that query ID from SE10, use table RSZELTDIR with that ID.

  • How to find Query name using Variable name (by Customer exit code in CMOD).

    Dear SDN,
    Enhancement name RSR00001.....Function Module name.....EXIT_SAPLRRSO_001...Include ZXRSRU01...
    Some x variable coding in done here.
    How can I find out the Query name for the X variable?
    Wating for reply...
    Thanks & Regards,
    Praveen.K

    Dear,
    I have got answer..
    Method 1 :Right click on variable in Query Designer and find the where used list.
    Method 2 : 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
    Thanks & Regards,
    Praveen.K

  • Find Query Name in Transport Request or In TR what are Queries.

    Dear All,
    I would like to find a Query Name in Transport Request(DEVK.....)  or  Vice-Versa in Transport Request (DEVK........), what are the queries are included.   I created SAP Query using SQ01 and assigned the InfoSet.  The query is succesfully executing and getting the required result but I dont know the Transport Request Number which was created.  In stead of creating New request, I would like to know the existing Transport Request what are the Queries are assigned.
    Regards,
    Ujed.

    Hi
    If you have included the Query in Transport using SAP Query Transport tool, it creates Transport request and makes an entry in the table AQTDB. Check the table entries in the table AQTDB.
    ~~~Ganesh Kumar K.

  • Need To Find Query Name Used In A Bookmark

    Hi,
    I have a bookmark that is not based off a web template.  It was created by running the query on the web and then saving the bookmark from there.  We have since forgotten the query technical name.  How can I find it out?
    (I have tried looking at table RSZWBOOKMARK but it doesn't have any info about the query.  And the web template id field is blank since we didn't create the bookmark that way.)
    Thanks,
    Audrey

    Audrey,
    We had a similar need recently to report on bookmarks in the BW system by user, query, InfoProvider, etc.  We ended up having a custom ABAP developed here to piece some of the information together for a report.  In our scenario, the bookmark links were actually being stored in the BW user's favorites, so it took additional linkage to go from there as well.
    You may want to look at some of the same tables we had to access here.  Try looking at data in the RSZWOBJ table -- the keys to this table would be OBJID (use the RSZWBOOKMARK-BOOKMARKID) and OBJVERS ('A').  Because of the way the data is stored with this, you may have to use ABAP code similar to the one below to get Bookmark info.  I took a few snippets of code out of a program to help show this -- here the field WS_INFOPROVIDERID is getting filled with the query name behind the bookmark.
    sample working storage below -
    DATA:
    l_s_id_objvers TYPE rszw_s_id_objvers,
    l_s_rszwobj    TYPE rszwobj,
    l_sx_bookmark  TYPE rszw_sx_bookmark,
    WS_DP_LIST     TYPE line of rszw_sx_bookmark-DP_LIST,
    WS_INFOPROVIDERID TYPE rszwobj-OBJID.
    sample logic for reading RSZWOBJ table ---
    l_s_id_objvers-objid   = <wherever you store BOOKMARKID>.
    l_s_id_objvers-objvers = 'A'.
    IMPORT bookmark = l_sx_bookmark
      FROM DATABASE RSZWOBJ(bm)
          ID l_s_id_objvers
          TO l_s_rszwobj.
    IF SY-SUBRC = 0.
      LOOP AT l_sx_bookmark-DP_LIST into WS_DP_LIST
          WHERE VALUE = 'DP'.
        WS_INFOPROVIDERID = WS_DP_LIST-NAME.
        EXIT.
      ENDLOOP.
    ENDIF.
    Hope this helps...  Jody

  • Find query name based on workbook id and vice versa

    Hi,
      I need to developed a progarm in which user can enter Query name ( tech name ) and  it should display all workbooks releated to it  and vice versa .
    Is there any tables which stores this relationship.?
    Wating for response.
    Thx in advance .
    Regards
    Nilesh

    hi Nilesh,
    Table RSRWORKBOOK WORKBOOKID, GENUNIID is the query ID;
    goto RSRREPDIR for detail query properties
    (query belongs, in bex analyzer, right click cell 'properties', tab 'information' - query id)
    Queries in Work Book
    determine the workbooks
    table with list of work books
    hope this helps.

  • How to find query name?

    hi,
       i was given the TCODE name how can we find the quesry name from this??as i wanted to make modifications to the existing query.please help me

    hi siva,
       Just goto Transaction SE93 it'l Execute  the transaction Code.. there u'l know what the txn does.. go to TSTC table it shows user-defined an also built in Transaction codes with Explanations.. then u'l know the details of the code you have..
      steps:
       1.GOTO SE93.
       2.Enter TXN code and Execute.
       3. Else Goto Se11 and type TSTC and search for ur TXN description.

  • How to fine query name for given transaction

    how to find query name for given transaction

    Check out the related thread
    https://forums.sdn.sap.com/click.jspa?searchID=1491773&messageID=959848
    Use T/code SQ01 to find query. after this transaction select client specific Query areas via
    Menubar>Environment>QueryAreas--> Select Client Specific.
    Regards,
    Santosh

  • Unable to find query

    Hello Experts!!
    I got one issue with portals and Queries.
    My user added one query/report in 'My Portfolio' of of Business Explorer of his Portal.When he is trying to view that report today,he is getting error..'500 Internal Server Error'...when I read in the error message,I found something like---'Bookmark XXXXXX  doesnot exist and therefore cannot be loaded'
    I asked user if he can tell me which query/report he added in his portfolio....He checked properties of that bookmark and sent me
    TemplateID ....I searched on it but couldnot find any query/report in my Query Designer.....Is template ID enough for this or do we
    need to ask specifically for query name?
    How can we find query name of the bookmark/report users add in their personal BEx documents/My Portfolio in BEx Portals?
    Do any of you have any knowledge about why this type of error occurs?
    Thanks alot.
    P Olin.

    Hallo,
    This is possible to use the [metadata repository|http://help.sap.com/saphelp_sm40/helpdata/en/4e/ea683c25e9096de10000000a114084/frameset.htm] in transaction RSA1 in order to help you in find the information that you need.
    RSA1 -> Metadata Repository .
    In that screen you will find a list of BW objects. In your case that you have the WEB Template ID, you can choose the u201CBex Web Templateu201D option and find user's template in the list returned. Opening that template should give you all information that you need to find the query and other related objects.
    I hope this info can help.
    BR,
    Ricardo

  • How to find the name of query for a given report

    Hi All,
    I am having the name of a report and i need to find out the name of query for that report . Plz tell me how to find out the name of the query for a given report.
    Thanks.
    Regards,
    Pooja Joshi.

    Use this FM
    RSAQ_DECODE_REPORT_NAME
    This FM takes program name as I/P and gives Query Name as O/P.
    This FM uses the structure AQADEF to fetch the data.
    Hope this helps.
    Regards
    Vinayak

  • How to  find out  Query name if i have Program generated by Query

    Hi Gurus,
    Can you please let me know the Query Name if i have the Program name.
    The program name is : AQTQP2P=========INVENTORY_SUM=
    I thought P2P is the user group and either "INVENTORY_SUM"  or  "AQTQP2P"  is the
    Query name but both doesn't exists in the system.
    Is there any way to get the correct Query name and User Group from the Program name.
    I have an FM : RSAQ_DECODE_REPORT_NAME  to get Query name and User group name
    but the reults given by them are P2P as user group and  "INVENTORY_SUM"  as Query name.
    I did not find any one of them in SQ01.
    Can you please help me out.
    Thanks,
    Vinay.

    Hi ,
    Thank for the information.
    In have both the Function modules.
    1. To get Query name from report name
    2. To get Report name from Query name
    I did all that stuff, still i did not find the User group or alteast some where near to it..
    there is no User Group that starts with letter P.
    But The report name is there
    i could execute it in both foreground and in background and able to get the Output as well.
    May be it is deleted from Development system.
    I do not have auth in QA and in PRD to check it.
    Can you please let me know
    By any chance the Query can get deleted and the corresponding program exists for that Query and
    we can work with the report even if the Query is deleted.
    Any ways i am goind to give you points (Vinod/Atish) for your help.
    Thanks,
    Vinay,

  • How to find a query name from report name

    I have a report in my system with the name AQICMM==========P2============ . I believe this was created from a query. How to find the query corresponding to this report ? I need to change the logic for certain columns of the report. How to know if this was created from SQVI or SQ01 or any other transaction.
    THanks.

    Found it..Query name is P2. It was in a different query area..Standard area and not custom area where I was initially looking at.
    Edited by: Shareen Hegde on Aug 22, 2008 5:14 PM

  • How to find out query name using Elements of the query builder.

    Hi SDNers,
    how to find out query name using Elements of the query .
    thanks,
    satyaa

    Hi,
    For having a look at the relation between BEx tables,check the link below:
    http://wiki.sdn.sap.com/wiki/display/BI/ExploretherelationbetweenBEx+Tables
    -Vikram

Maybe you are looking for

  • Install Windows 7 64-Bit on Early 2008 Macbook ?'s

    My wife has an early 2008 Macbook with 2.4 GHz processor that I recently upgraded the OS to OS X 10.7.5 and upped the ram to 4 GB.  I had installed a Boot Camp for Windows Vista 32-bit that is still working, but I have a Windows 7 64-bit installation

  • Exporting images to video ipod

    I want to export a folder of images from iphoto so i can view them on my ipod as a slideshow - is this possible?? Have tried to export them but so far they are just stored on the harddrive and I can't view them. Any ideas on how you do it??

  • Error calling EBusiness Suite Public API's from SOA

    Hi, I'm doing some proof of concept work with SOA Suite v 10.1.3.10. When I try to call any of the EBiz suite public API's that have user defined types for records and tables passed as parameters I get the following error when the Oracle Application

  • Dealing with tables from different databases?

    Hi. I'm a newbie to Visual Studio 2012 and stuck on how to interact with different datasets. I am building a report that is associated with with two tables, each from a different database. The master_flat table with the primary key matter_number is f

  • Customize cuts off right side of all toolbars

    As soon as I click "Customize", the upper right side of my browser is cutoff. I can't access or make any edits because the editable options and buttons are pushed out of view to the far right. https://www.dropbox.com/s/87welurau5yzti6/Capture.PNG?dl=