Table that can give information about Query element

Hi All,
Please can you help, is there any table which can show the query elements belongs to which Query or Object.

Hi Sulochan,
You can go to rsa1 - Transport connection and select the webtemplate there. It would show you all the elements in the template along with their technical name. That should be of help. Else, you can copy and paste the technical name in the following tables and check if they are present in it.
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
RSZWOBJ                              Storage of the Web Objects
RSZWOBJTXT                       Texts for Templates/Items/Views
RSZWOBJXREF                     Structure of the BW Objects in a Template
RSZWTEMPLATE                   Header Table for BW HTML Templates
Hope this helps.
Regards
Snehith

Similar Messages

  • Tables which can give information about the variables

    When we on the system information, we can view the table associated with that field. However no table is linked to the variables. How can I pick this information in a query. eg : how can I catch the variable field at row level for the field, price after discount in the table PCH1.

    Hi Vivek,
    Check this User Query,
    SELECT T0.[DocNum], T1.[ItemCode], T1.[DiscPrcnt], T1.[Price], T1.[PriceAfVAT],
    T1.[PriceBefDi], T1.[LineTotal]
    FROM OPCH T0 
    INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry
    SELECT T0.[DocNum], T1.[ItemCode], T1.[DiscPrcnt], T1.[Price], T1.[LineTotal]
    FROM OPCH T0 
    INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry
    Regards,
    Madhan.

  • Two tables that provide detail information about data source?

    what are the tables that provide information about the datasource?
    How to prevent duplicate records in at the data target level?

    ROOSOURCE for the details of the datasource...
    How to avoid duplicate? --> Dont load same data twice..If delta is supported by the datasource then do a psuedo delta, or delete pervious request with same selections when you do a full load...
    Plz elaborate on your question..

  • I have installed Elements 13 on my Mac but can't see how to open it. When I click on the disk icon it takes me to an information page that gives no information about opening Elements 13.

    I have installed Elements 13 on my Mac but can't see how to open it. When I click on the disk icon on the desktop it takes me to an information page that gives no information about opening Elements 13. How do I open the software so that it can be used?

    Unfortunately, when I open applications, adobe photoshop elements 13 folder does not appear in the adobe folder. It appears as a disk on the desktop, only.

  • Tables where I can find information about IP variables, Infoprovider aggreg

    Hello All,
    Tables where I can find information about IP variables, Infoprovider aggregation level and filter.
    The tables where we have info about tthe user exit variables. Similar to that of UPC* tables in BPS.
    Thanks a lot,
    Karthik Krishna

    RSRPARAMETRIZA for Bex Analyzer 7.0
    RSRVARIANTDIR     for Bex Analyzer 3.x
    RSRVARIANTDIR     Directory of Variants for Queries and Selection Objects               
    RSRVARIANT             Variant Values BEX               
    We can access to value of one variant with name of query COMPUID (from RSRT --> Technical Informatione -->Data from Query Definition  --> Techn. Definition Name) or with the name of Variant from RSRVARIANTDIR (the same for the technican nema of query COMPUID)
    Edited by: Pierfrancesco Marvulli on Aug 31, 2011 3:23 PM

  • Maximum number of tables that can be outer joined with one table in a query

    Hi All,
    Iam new to sql, so can you please let me know What is the maximum number of tables that can be outer joined with one table in a query?
    Thanks,
    Srini

    srinu2 wrote:
    Iam new to sql, so can you please let me know What is the maximum number of tables that can be outer joined with one table in a query?
    There is no limit to the number of tables you can outer join as long as you join them correctly.
    SQL> with a as
      2      (
      3      select 1 id, 2 b_key, 3 c_key from dual union all
      4      select 2 id, 1 b_key, 4 c_key from dual union all
      5      select 3 id, 3 b_key, 1 c_key from dual union all
      6      select 4 id, 4 b_key, 2 c_key from dual
      7      ),
      8      b as
      9      (
    10      select 1 id, 1 c_key2 from dual union all
    11      select 2 id, 5 c_key2 from dual union all
    12      select 3 id, 3 c_key2 from dual union all
    13      select 4 id, 2 c_key2 from dual
    14      ),
    15      c as
    16      (
    17      select 1 key1, 1 key2, '1-1' dta from dual union all
    18      select 1 key1, 2 key2, '1-2' dta from dual union all
    19      select 1 key1, 3 key2, '1-3' dta from dual union all
    20      select 1 key1, 4 key2, '1-4' dta from dual union all
    21      select 2 key1, 1 key2, '2-1' dta from dual union all
    22      select 2 key1, 2 key2, '2-2' dta from dual union all
    23      select 2 key1, 3 key2, '2-3' dta from dual union all
    24      select 2 key1, 4 key2, '2-4' dta from dual union all
    25      select 3 key1, 1 key2, '3-1' dta from dual union all
    26      select 3 key1, 2 key2, '3-2' dta from dual union all
    27      select 3 key1, 3 key2, '3-3' dta from dual union all
    28      select 3 key1, 4 key2, '3-4' dta from dual union all
    29      select 4 key1, 1 key2, '4-1' dta from dual union all
    30      select 4 key1, 2 key2, '4-2' dta from dual union all
    31      select 4 key1, 3 key2, '4-3' dta from dual union all
    32      select 4 key1, 4 key2, '4-4' dta from dual
    33      )
    34  select d.a_id, d.b_id, c.key1 as c_key1, c.key2 as c_key3, c.dta
    35  from
    36      c,
    37      (
    38      select
    39          a.id as a_id, b.id as b_id, a.c_key, b.c_key2
    40      from a, b
    41      where a.b_key = b.id
    42      ) d
    43  where d.c_key = c.key1 (+)
    44  and   d.c_key2 = c.key2 (+);
          A_ID       B_ID     C_KEY1     C_KEY3 DTA
             3          3          1          3 1-3
             4          4          2          2 2-2
             2          1          4          1 4-1
             1          2
    SQL>

  • Function module that can give the last value or the highest value of a key

    hi,
    Is there any function module that can give the last value or the highest value of a key feild in a z table.
    regards,
    johnson

    Hi ,
    We have  aggregate functions in SQL. Some of the functions are as follows.
    MAX(col ) Determines the maximum value of the value in the column col in the resulting set or in the current group.
    MIN( col ) Determines the minimum value of the content of the column col in the resulting set or in the current group.
    AVG(  col ) Determines the average value of the content of the column col in the resulting set or in the current group. The data type of the column has to be numerical.
    SUM( col ) Determines the sum of the content of the column col in the resulting set or in the current group. The data type of the column has to be numerical.
    COUNT( col ) Determines the number of different values in the column col in the resulting set or in the current group.
    For further details , type the function name name and press F1 for further help.
    Eg: select count(mantr) from mara into workarea where condition.
    Reward points if helpful.
    Thanks and Regards.

  • Looking for software that can give me an UK os gri...

    hi
    does anyone know of any software that can give me an ordnance survey grid reference from the internal gps receiver on the n95

    Not sure about N95 compatability, however the Ordnance Survey website sells a number of applications that use their maps. Maybe one of those would do what you require.
    http://leisure.ordnancesurvey.co.uk/leisure/catalogue.jsp?section=10120Message Edited by patc on 25-Jun-200703:06 PM

  • Best way to outer join a table that is doing a sub query

    RDBMS : 11.1.0.7.0
    Hello,
    What is the best way to outer join a table that is doing a sub query? This is a common scenario in EBS for the date tracked tables.
    SELECT papf.full_name, fu.description
      FROM fnd_user fu
          ,per_all_people_f papf
    WHERE fu.user_id = 1772
       AND fu.employee_id = papf.person_id(+)
       AND papf.effective_start_date = (SELECT MAX( per1.effective_start_date )
                                          FROM per_all_people_f per1
                                         WHERE per1.person_id = papf.person_id)Output:
    No output produced because the outer join cannot be done on the sub queryIn this case I did a query in the FROM clause. Is this my best option?
    SELECT papf.full_name, fu.description
      FROM fnd_user fu
          ,(SELECT full_name, person_id
              FROM per_all_people_f papf
             WHERE papf.effective_start_date = (SELECT MAX( per1.effective_start_date )
                                                  FROM per_all_people_f per1
                                                 WHERE per1.person_id = papf.person_id)) papf
    WHERE fu.user_id = 1772
       AND fu.employee_id = papf.person_id(+)Output:
    FULL_NAME     DESCRIPTION
    {null}            John DoeThanks,
    --Johnnie                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    BrendanP wrote:
    ... See the adjacent thread for the other with Row_Number().Do you mean {message:id=10564772} ? Which threads are adjacent is always changing. Post a link.
    I think RANK suits the requirements better than ROW_NUMBER:
    WITH    all_matches     AS
         SELECT  papf.full_name
         ,      fu.description
         ,     RANK () OVER ( PARTITION BY  papf.person_id
                               ORDER BY          papf.effective_start_date     DESC
                        )           AS r_num
         FROM             fnd_user             fu
         LEFT OUTER JOIN      per_all_people_f  papf  ON  fu.employee_id  = papf.person_id
         WHERE   fu.user_id  = 1772
    SELECT     full_name
    ,     description
    FROM     all_matches
    WHERE     r_num     = 1
    Johnnie: I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    See the forum FAQ {message:id=9360002}

  • Function module that can give balances by segment?

    Hi SAPs,
    I need help to get standard SAP function module that can give me GL balances by segment, period and fiscal year. I tried the existing function module for GL balances - BAPI_GET_ACCBALANCES - but it does not support segment. Please let me know if you found any. I need to use it for group reporting requirement.
    Thanks

    Hi ,
    We have  aggregate functions in SQL. Some of the functions are as follows.
    MAX(col ) Determines the maximum value of the value in the column col in the resulting set or in the current group.
    MIN( col ) Determines the minimum value of the content of the column col in the resulting set or in the current group.
    AVG(  col ) Determines the average value of the content of the column col in the resulting set or in the current group. The data type of the column has to be numerical.
    SUM( col ) Determines the sum of the content of the column col in the resulting set or in the current group. The data type of the column has to be numerical.
    COUNT( col ) Determines the number of different values in the column col in the resulting set or in the current group.
    For further details , type the function name name and press F1 for further help.
    Eg: select count(mantr) from mara into workarea where condition.
    Reward points if helpful.
    Thanks and Regards.

  • What is maximum number of tables that can be used to create HTMLDB app?

    What is the maximum number of tables that can be used to create an HTMLDB app? There seems to be a 10-table limit?
    Thanks.
    Dianna Gibbs

    I have over 200 photos in my book and it was accepted. There is a limit on each widget though. The interactive widget seems to have a limit of around 30 or 40.

  • Function module that can give GL balances by segment?

    Hi SAPs,
    I really need help to get standard SAP function module that can give me GL balances by segment, period and fiscal year. I tried the existing function module for GL balances - BAPI_GET_ACCBALANCES - but it does not support segment. Please let me know if you found any. I need to use it for group reporting requirement.

    Hi ,
    We have  aggregate functions in SQL. Some of the functions are as follows.
    MAX(col ) Determines the maximum value of the value in the column col in the resulting set or in the current group.
    MIN( col ) Determines the minimum value of the content of the column col in the resulting set or in the current group.
    AVG(  col ) Determines the average value of the content of the column col in the resulting set or in the current group. The data type of the column has to be numerical.
    SUM( col ) Determines the sum of the content of the column col in the resulting set or in the current group. The data type of the column has to be numerical.
    COUNT( col ) Determines the number of different values in the column col in the resulting set or in the current group.
    For further details , type the function name name and press F1 for further help.
    Eg: select count(mantr) from mara into workarea where condition.
    Reward points if helpful.
    Thanks and Regards.

  • Where I can find information about forms 11g

    Hi,
    I want know ,where I can find information about forms 11g?
    Thanks,
    Pavan.

    On the [ forms Modernization|http://www.oracle.com/technology/products/forms/forms_modernization.html] page is a presentation/webcast with new features.
    I hope this helps...
    Edited by: poelger on Feb 27, 2009 7:26 AM

  • A JavaBean that gives information about a job - saving parameter problem

    Hi,
    I'm working on a Java-Applet that gives the user some information about the running job.
    I modified a solution from Casey Bowden (thx to him) that lanches a seperate applet, from the current forms session, to update the user on the status of the report. It works great but I have one more problem.
    If the Report getting an error, the programmer and organisator would like to replicate the error so it would be comfortable to see how the report get started. There is the RW_SERVER_JOB_QUEUE table that saves all the information the Report Server posts its information about the current report to the database each time a job request is submitted. I'm saving some information from the rw_server_job_queue in a seperate table with other specific information for our own administration.
    The only information that I don't get are the parameters the report getting started. I would like to save all parameters in one column like the command_line in RW_SERVER_JOB_QUEUE table each time a job request is submitted. Is there any solution to get the parameters from the starting report?
    I'm working with Oracle Forms 6i and Reports 6i.
    Thx for any help.

    Hello,
    To call a Palestine # on Skype dial 970 + Area Code + 7 digits (local number)
    Do NOT dial the "00" prefix.
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • From which Table we can find info about implemented applications of SCM

    Hi All,
    is there any table which is storing the information about the implemented apllications in SCM, Please help me to finding out this table.
    Thanks in Advance
    Mahesh

    Hi,
    Tables required may be starts from
    Customizing
    Basic Data/Administartion
    Master data
    Characteristics
    FI/CO
    SD
    MM
    WM
    QM
    PP
    PS
    HR
    Just to list up the tables, lemme know which particular module tables u require so that I can paste the same.
    Regards,
    Krishna

Maybe you are looking for

  • How can I write to a ntfs formatted drive?

    I know there are some third party apps for a fee but this seems like a simple enough and popular request that Apple should address. Can you tell me if apple has a solution for this? I appreciate your help. Thanks, John

  • Valuation wise stock report

    Hi Friends, Is there any report where we can see stock report valuation type wise. E.g. i created two valuation types Domestic and Import. Also i created two storage location separately for both valuation type. I am able to see report based on storag

  • "connected to HDMI cable"???

    I'm continually getting a message "connected to HDMI cable".  Then, up pops a screen for "select dock type". If I select anything on that menu, it takes me to a mode where I seemingly can't do anything.  Also, as of now, my phone will only work when

  • How can I use Airport Express (2004 version) ethernet port?

    I am using a Time Capsule to access the internet. Now I would like to use my old AE to "root" that internet connection via the ethernet port to my WD HD TV Live (or Notebook w/o wifi). I know that it is possible with the newer airport express version

  • How to power off when screen is magnified

    The screen has magnified and I can't power of because the scrool bar extends beyonf the screen image. I do I power off the 4S when I can't use the normal approach