Question: To derive Query technical name based on RSZCALC table.

Hello All -
Could you please kindly help to share your thought on Link of Query table. I am interested to see the list of Queries using Exception Aggregation against particular Characteristic.
I use RSZCALC table to get Information about Exception Aggregation, however, I am not sure how to get Query technical name.
Could you please kindly share your thought, what table I should use to get Query Technical name based on data from RSZCALC? And appreciate to share your thought what column that I should use to link between those tables.
Looking forward your feedback on this, and appreciate much.
Thanks,
Cheers,

Also Refer this Wiki  , For More information about bex  query  tables.
Relation between between BEX Query DefinitionTables - SAP NetWeaver Business Warehouse - SCN Wiki

Similar Messages

  • How to find the link between strcture and query technical name

    Hi Guru's
    How to find the link between Strcture in the query and query technical name. In other way where used list of the structure  used in queries?
    I know we have table called RSZELTDIR which have the values of strcuture name. from here i do not find any link to query technical name.
    Please can anyone help me?
    Regards,
    Sirisha

    Hi ,
    For structure and query relationship, the structure has to be a reusable structure( a global one). Then you can right click in on the structure name (in BEX query designer) and select the where used list. You will find all the query names where it is being used.
    U can also check out tables RSRREPDIR and RSZCOMPDIR for other query properties.
    Thanks,
    Amit

  • Bex Query Technical Name - auto populate

    When a user creates a query and goes to save it.... is there a way to populate the technical name box with a suggested (user can amend if required) technical name?
    The reason that I want to do this is because there is a strict query naming convention in place here and it is a way of making sure that users follow the correct naming convention.

    Hi Anil
    Thanks for the reply that is very useful and is one way in which this could be solved.
    But what I am really after is a way of populating the technical name box at the time the user saves a query.
    I have noticed that at times the technical name box holds the present query technical name.
    What I would like to know is, is there a way of filling this with for e.g. ZZ_Z_CA_CM_FINTRA_000, each and every time a user attempts to save a query? The user should be able to amend this if required. The purpose of this is that it highlights the naming convention to the key users and reminds them that they must follow this format.
    Forcing a naming a convention as part of authorisations is an option, but we also need to allow for some flexibility.
    Regards
    Harry

  • Mass Change of Query Technical Name

    Hi there,
      Is there a Functional Module/Program that allows a MASS Change of Query Technical Names ?
      My company has recently revived new standards of naming convention, hence there is a need to change the technical names of about 2000 BW Queries ?
      Please advice

    I beleive you cannot change tech names, however u can copy to new ones using RSZC.
    Lets wait for some experts replies....

  • Query technical name

    Hi
    I am generating a query on the statistics multicube/cube for displaying the top 25 queries which are taking long time. But i want the technical name of the query in rows. which infoobject should be used which could provide the technical name of the query .
    plz guide
    regards

    Hi,
    have you tried 0TCTSTATOBJ infoobject?
    Let me know which Cube you are using for this (is it 0TCT_C02)?
    Hope it helps...
    Regards,
    Ashish

  • Find query technical name for a deleted query/workbook in the User Menu

    Hi,
    When a BEx workbook or BEx query is published in a role, people with that role will see the query / workbook in their user menu.
    It is possible to change the caption/title of the 'node' in the user menu so it does not necessarily have the same name as the report.
    I am now in a situation where a user tries to run a query/workbook from the user menu, and runs in an error message 'query does not exist on server'.
    How can I found out to which query/workbook a node in the user menu refers?
    I have tried the Metadata repository but because of the many nodes in the user menu this is a laborious task.
    I was hoping to find a table where I could use the role name and node name to find the 'target' report but I haven't been able to find such a table.
    Any (other) suggestions?
    Many thanks,
    Jan.

    Hi,
    You can publish the workbook to the role and as user have access to the role he can access the workbook also.
    Regards,
    Kams

  • Sql to tell report names based on view/table name

    Hello, we recently upgraded to release 12 and planning to implement sub ledger accounting and we are in the process of identifying our customizations written on top of distribution tables so that we can tweak them to go after SLA tables. Majority of our custom objects are discoverer reports. And most of these discoverer reports are based on custom folders which are based on custom views. By running a sql we were able to identify the names of all of our custom views which go after the distribution tables. Now we want to identify which of our discoverer reports are based on these views via custom folders of our custom business areas. Our custom folders might have been named exactly same as custom view or they may have different name and the folder may actually have a sql in which they are referring these custom views.
    Would it be possible for someone to provide a sql select statement which takes database table / view name and returns the name of discoverer workbooks referring this table/view? Thanks in advance for help.
    Regards,
    Anjan Avula.

    Nancy I claimed that problem is because of developing reports in plus based on some hits I found on internet. http://www.orafaq.com/forum/t/66265/0/
    And hits I found in metalink.
    Bug # 6665629
    However according to engineer with Oracle support it is a bug. The problem with updating that table is more related to workbooks that were created in older versions or upgraded to 10.1.2.2 but have not been opened and resaved. Bug 4901641 is present in 10.1.2.2 admin and it can result in Discoverer Admin not updating the EUL5_ELEM_XREFS. Admin version 10.1.2.3 is expected to resolve this with an easy workaround is to export the older workbooks and re-import them into your eul. The import process will update the EUL5_ELEM_XREFS table and will save customer from saving and opening every workbook.
    So, may be you have 10.1.2.3 in your environment and never experienced this issue or may be your reports were never upgraded from previous versions to 10.1.2.2. In our environment we have upgraded our reports to this version from previous versions and may be what oracle engineer told is true. I need to work with our admin to get this looked at and get it fixed.

  • Query the name of the parent table in a foreign key constraint

    Hello,
    Does anyone know how to query for the parent table name in a foreign key constraint? I don't see that relationship in ALL_CONS_COLUMNS or ALL_CONSTRAINTS.
    Thanks in advance,
    Michael

    or try this...
    SELECT rc.TABLE_NAME "PK_Table_Name",cc.TABLE_NAME "FK_Table_Name",
           case when cc.column_name = rc.column_name
                then c.TABLE_NAME || '(' || cc.COLUMN_NAME || ')'
                else r.TABLE_NAME || '(' || rc.COLUMN_NAME || ') = ' ||c.TABLE_NAME || '(' || cc.COLUMN_NAME || ')' end as "TABLE_NAME(COLUMN_NAME)"
    from all_constraints c,
         all_constraints r,
         all_cons_columns cc,
         all_cons_columns rc
    WHERE
         r.table_name = upper('emp')
    and      c.CONSTRAINT_TYPE = 'R'
    and     c.R_OWNER = r.OWNER
    and     c.R_CONSTRAINT_NAME = r.CONSTRAINT_NAME
    and     c.CONSTRAINT_NAME = cc.CONSTRAINT_NAME
    and     c.OWNER = cc.OWNER
    and     r.CONSTRAINT_NAME = rc.CONSTRAINT_NAME
    and     r.OWNER = rc.OWNER
    and     cc.POSITION = rc.POSITION
    ORDER BY r.TABLE_NAME;

  • Function module to create query view from technical name of the query ?

    Hi Experts,
    I am trying to create webservice definition using function module.
    In this code, I am calling function module 'RSCRMBW_REPORT' which requires query view name ( we can see this in RSCRM_BAPI) as a value for parameter i_reportuid.
    For the time being I am hardcoding the value but I need to use a function module which will convert techincal name of query into query view.
    Can anyone have any idea about the above requirement? Or is there any other way to solve the problem?
    Thanks in advance
    Shamkant
    Edited by: SHAMKANT SONAWANE on Apr 7, 2009 5:38 AM

    Hi,
    You can use FMs CONVERSION_EXIT_GENID_INPUT  and CONVERSION_EXIT_GENID_OUTPUT to get query view.
    First call FM CONVERSION_EXIT_GENID_INPUT with parameter input as query technical name then it will return Output in the form of GENID .
    Pass this GENID as input parameter to FM CONVERSION_EXIT_GENID_OUTPUT to get query view as output.
    Eg :
    Test for function group      RRI5
    Function module              CONVERSION_EXIT_GENID_INPUT
    Uppercase/Lowercase
    Runtime:        6,652 Microseconds
      Import parameters               Value
      INPUT                           Y0IC_C03_Q0018_2
      Export parameters               Value
      OUTPUT                          4D1I916ID7TWS1CK27154WYZ8
    Test for function group      RRI5
    Function module              CONVERSION_EXIT_GENID_OUTPUT
    Uppercase/Lowercase
    Runtime:        2,818 Microseconds
      Import parameters               Value
      INPUT                           4D1I916ID7TWS1CK27154WYZ8
      Export parameters               Value
      OUTPUT                          0IC_C03/Y0IC_C03_Q0018_2
    0IC_C03/Y0IC_C03_Q0018_2 is expected query view.
    Hope it helps...
    regards,
    Raju

  • Get Query value Technical Name

    Hi,
    I have ZANALYSIS template and different queries use this template, I have to show a link to download a document. The document will be stored as Query Techincal Name.DOC.
    So i need to get QUERY techincal name in runtime to build path, how can i get the query techincal name....using javascript.
    <object>
    <param name="OWNER" value="SAP_BW"/>
    <param name="CMD" value="GET_ITEM"/>
    <param name="NAME" value="THIS VALUE WILL BE FROM Bex iview"/>
    function buildUrl(){
    var url = "http:testbox:50000/irj/km......"document.getElementById("QUERY").innerHTML".DOC";
    alert(val);
    basically my document path is .."http:testbox:50000/irj/km......"<QUERY TECHNICAL NAME>".DOC"
    Iam not gettng the QUERY techincal name..can anyone please help to solve this issue...
    iam using NW04's...
    Thanks,
    Damodhar.

    Hi,
    I have to get the query value using java script.....
                <bi:QUERY_VIEW_DATA_PROVIDER name="DP_1" >
                    <bi:INITIAL_STATE type="CHOICE" value="QUERY" >
                        <bi:QUERY value="<b> i need to get this value using java script</b>" />
                    </bi:INITIAL_STATE>
                </bi:QUERY_VIEW_DATA_PROVIDER>
    any suggestions ..please..
    Thanks,
    Damodhar.

  • Query Displaying Technical Name instead of Description

    Hello,
      Is there a setting in query designer that would cause the query technical name to display when the query is executed instead of the query description?  I am using BEx 3.5.  When I Save As the query to a different technical name and execute the description shows.  I would like the description to show as it does with all other queries.
    Any help would be appreciated.
    Thanks!
    Tina

    Hi Tina,
    For me the most convienent way is to create a text variable with customer exit, not ready for input.
    Assign this variable to Query description in properties of query. So you can be sure to see the current
    technical name after saving  the query again,  without any additonal actions.
    You could even combine this variable with any description desired.
    Assuming variable created is  Z_COMPID,  please add code as follows to user exit:
    WHEN 'Z_COMPID'.
          L_S_RANGE-LOW  = I_S_RKB1D-COMPID.
          L_S_RANGE-SIGN     = 'I'.
          L_S_RANGE-OPT      = 'EQ'.
          APPEND L_S_RANGE TO E_T_RANGE.
    Regards
    Joe

  • Question on Dynamic Query Data Source and Form Folders in Oracle Forms 6i

    Hi there -
    I have one interesting requirement in Oracle Forms.
    This is what I wanted to do.
    1. Have a LOV and Go button on Form.
    2. From LOV, I will select a pre-defined custom table and click Go.
    3. Based on the selected custom table, I have to populate the Block (Tabular Format).
    4. User should be able to do update, delete, insert on this block.
    5. User should be able to use the Oracle Form folders functionality (select only necessary column and save views etc. Std folder functionality).
    6. If user selects a different custom table name in the LOV on top, I need to refresh the data from the block based on this new table. Remaining functionality should be as it is (steps 3 to 5).
    You can see here, I am going to have dynamic query data source (Table Name as well as column mapping) on the block. I do not know before hand how many columns the user selected table has!
    This is what I have planned for this so far but I have some major questions before I can move on with this design:
    1. I am going to create a table structure with fixed number of column in form (40 cols assuming that the custom table will not have more that 40 cols). (Kind of limitation but it's okay as of now).
    2. Dynamically populate the block based on the table name selected by the user from LOV. Dynamically change the table column names based on the table selected etc.
    3. Perform insert, update, delete using PL/SQL package.
    So far it looks okay.
    Now my real question is,
    Can user still be able to user "Folders" functionality here? I have never done this kind of development before and I doubt the dynamic column naming, dynamic column data source will really work for "folders"!
    Also, I am not really sure whether user will be able to save these "folder" queries?
    Okay so form experts, can you ppl suggest me if this is really going to work? Are there any better ways to do this?
    Initially I tried to do this in OA Framework but I got stuck at because as per OAF developer guide "I cannot user OAF personalization for dynamic items, regions etc".
    For more info on that thread see this link...
    Re: setUserCustomizable issue!
    Thanks in advance for the help.

    Any suggestion anyone?

  • Displaying query view name in web template.

    Hi all,
    In the standard web template (0ANALYSIS_PATTERN) there is a text box which displays the query title.  I need to change this so it displays the name of the query view instead of the query.  Does anyone know how to do this?
    Many thanks,
    Nick.

    Hi Nick,
    In the template you need not to do any special setting for Query View Name display.
    When You use a query view in template that becomes as a data provider, so for every data provider whether that's a query or query view it works same.
    You can select to display query technical name or description.
    Hope i understood your requirement correctly. If not than please correct me.
    Thanks
    Dipika Tyagi

  • BW query tech name changes

    Hello Experts,
    I have crystal report created on top of BW query, the report works good, but some how its technical name is getting added 1 in the end,example : my query technical name is : FI_q01 but it got changed to FI_q01_1.
    Any help is greatly appreciated.
    Kirsh

    Thanks Amit,
    I am creating through file->new and connection type sap bw mdx query.
    this is happening for some reports only.
    Its adding 1 for all the objects:example sales document : its looking like sdq1_1.0doc_num instead of sd_q1.0doc_num , like this its doing for all the objects if the query technical name is changed to sd_q1_1 from sd_q1.
    Also, another strange behavior is it is pulling technical name of one query and description of another query.
    example: if i have a query on MM with name MM_q1 and description as material mgm and FI query as FI_q1 and description as Finance qry then its pulling for MM query as FI_q1 and description as material mgm instead of MM_q1.
    Thanks,
    Krish

  • Work Book Technical Name

    Hi Guys,
    Why Work Book Technical Name contains 25 Digits not like query Technical Name.

    Hi,
    What you are seeing in the open dialog as technical name is not really zhe technical name of the workbook. You are not able to determine technical name
    for a workbook.
    What you see is an ID (COMPUID), which identifies e.e queries, query elemnts
    and workbooks unique in BW Sytem and is created automatically. You could take a look, for example, on table RSRREPDIR.
    Regards
    Joe

Maybe you are looking for

  • Awt-dialog starts transparent

    hi, i am very confused due to the fact, that the dialogs in my small program have transparent backgrunds around a label. these area stays transparent till the mouse is scrolling over the dialog. maybe OS-problems ? regards djoxo

  • Psychedelic crash

    Hello I don't know what else to call it! I have a 20" iMac (2 months old) with a Benq 19" (1 yr old) as external display. Never had any troubles then moved a window from iMac to Benq and the inside of the window became a conglomeration of brightly co

  • Qm in sd

    Hi, i am having problem in creating inspection lot for delivery(VL01N). the error message is given below "Status of inspection lot 100000000004 / partial lot 000000 does not allow good issue" please give solution thanking you arun kumar.r.v

  • Twitter has stopped working in Safari 6, Mtn.Lion 10.8.2.

    It was working fine last night and it works in Chrome. I can see the tweet stream but I get no response when I click on reply, etc. within a tweet. New tweet button not working. Profile and Settings gear button not working. Clicking on a tweet accoun

  • Que hacer cuando la tarjeta SIM no sale del iPhone 4?

    Como hago para hacer que mi tarjeta sim salga de mi iphone 4 , ya que no sale con nada mas que lo que vino en la caja