Query meta data information  - table

Hi,
looking for a table or cube which has the query information. Like When name, description, creation date, change date.
Regards,
BWer

Hi
See the following tables which are related to reports.
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
RSZRANGE - Selection specification for an element
RSZSELECT - Selection properties of an element
RSZELTDIR  - Directory of the reporting component elements
RSZCOMPIC - Assignment reuseable component <-> InfoCube
RSZELTPRIO - Priorities with element collisions
RSZELTPROP - Element properties (settings)
RSZELTATTR  - Attribute selection per dimension element
RSZCALC - Definition of a formula element
RSZCEL - Query Designer: Directory of Cells
RSZGLOBV - Global Variables in Reporting
Thanks
Reddy

Similar Messages

  • Meta data information from dynamic web page

    Dear all,
    for website searching, we should put the meta data in every page, in my case
    i have to get the data from dynamic page(data are coming from database).
    So, how can i meta data information from dynamic web page
    kindly suggest.
    thanx,
    R. Ramasubramanaim.

    Build your web application with BSP, that's all I can say...

  • Indexing of Meta Data information

    Hello,
    I have two questions concerning KM documents meta data.
    1. Is it possible to create some meta information while e.g. creating a new txt document in Knowledge Mangement Explorer?
    2. Is it possible to index this meta information later by TREX?
    I want e.g. create a document with the meta information "Author:Testuser". When I search for "Testuser" I want to get all documents created by Testuser.
    Would be wonderful if someone can help me.
    Thanks a lot!
    BR,
    Andreas

    Dear
    Pls, refer following Link, this will be helpful for you
    for the first question
    https://wiki.sdn.sap.com/wiki/display/KMC/CreatingandMaintainingCustomMetadataPropertiesinthemainscreenofDetailspage
    https://wiki.sdn.sap.com/wiki/display/KMC/DefenitionsoftheKMMetadata+Properties
    Regards
    Tushar Dave
    Edited by: Tushar Dave on Aug 17, 2009 5:42 PM

  • Meta-Data are missing for table

    Dear ALL ,
    I am trying to call "HR_READ_INFOTYPE" from a Java program using rfc and I got this error:
    " Meta data equal to null is not allowed for field INFTY_TAB with type TABLE in meta data instance TABLES "
    the required table INFTY_TAB is used as a generic table in the function module. I tried to use PA0008 but it seems it is not possible to use it through  RFC call.  How can I avoid this exception?
    Thanks in advance.
    Mehdi.

    Hi,
    This function by default is not remote enabled. Loot at BAPI to access/modify infotype data?
    Regards,
    Jarek

  • How to get  meta data of business objects  in BOR

    i need to get all the meta data information of  business objects present in BOR.
    for example purchase order BUS2012
    1.  I need to get for example  the attributes information how to get it?
    2. if  business object contains further child business objects then how to get attributes of those child business objects  also? 
    I am writing ABAP code,  i want to retrieve all attributes with help of ABAP program .
    any ideas?

    Hi..
    You have to use SWC_GET_ELEMENT CONTAINER '( string name of your attribute)' your_attribute.
    All attributes are part of container issue.. SWC_GET_ELEMENT command can give you these values.
    Hope to help...

  • Adding Meta Data Permanently to files but nothing else

    Can You add your Meta Data information permanently to a file but not any of the other lighting changes? Like you can do in Bridge? So all the hard work stays with the images even if say you lightroom computer died or was stolen?
    I know I could export the files and then it would be permanently added but then I would have a double library/hard disk space use.

    Auto export to XMP set in the prefs writes to XMP sidecars for RAWs, but puts it in JPEGs, TIFFs and DNGs. Seems like tis is what you want. There are many very vocal on not liking the idea of LR doing this to there 'Originals'. It is just a Metadata ad, not changing the actual image info.
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.8 & Win XP, Pentax *ist D
    http://donricklin.blogspot.com/

  • Can I copy meta data from a jpg and past to a tiff. I have CS6 photoshop

    How can I copy metadata from a JPg files and paste onto tiffs.  I send JPGs to stock agent and when they select I then send Tiffs and want to avoid re typing meta data if possible.  Also some pictures have similar meta data information and can I copy that and paste into another picture?
    Please give me keystroke information if this is possible as I get confused easily.  Use photoshop for dummies language if you can.
    thanks a lot  Gail

    You can copy&paste individual fields, but not the entire data. It's a moot point, anyway. PS will retain metadata e.g. when a file is saved using Save As... to a format that supports metadata and JPG and TIFF both do. also one would simply use Bridge to edit metadata in mass with multiple images selected...#
    Mylenium

  • Meta - data author information

    hi guys...
    when any user changes meta-data of content item.. no revision is created in database....
    so we never come to know who changed the meta-data....
    Is there any way in UCM through which we can get author information who changed the meta - data ??

    Hi there.
    You could query off the DOCUMENTHISTORY table to find out who last performed an action on a document (i.e. Checkin, Update, Delete, etc).
    It contains the following column headers:
    -dActionMillis
    -dActionDate
    -dID     
    -dRevClassID     
    -dUser     
    -dDocName
    -dAction     
    -dSecurityGroup
    Hope that helps.

  • Query OR Stored Proc to get data from Tables from All Schemas in the d/base

    Hello Experts, (I appologize if i am not using the right way to ask questions)
    I have a database, and it has around 400 schemas in it. I have designed a query which will fetch the data from three different table's from Schema1.
    But it will be a tedious process of entering the 400 schemas names and pulling the information.
    I would like to know as to what would be the best possible way to;
    1) Look for all the schemas in the database
    2) Look for those specific tables in the schema, which has the data in the tables.
    3) If the tables are not present, than Ignore that schema and proceed further.
    4) Load the data into a table
    Any help, would appreciate it.
    Thanks!
    The query that i am using is as follows;
    -- Query to select all the Schemas from the database
    select username from all_users
    order by username;
    -- Sample Query to see if Tables exsist in the schema
    SELECT DISTINCT OWNER, OBJECT_NAME
    FROM ALL_OBJECTS
    WHERE OBJECT_TYPE = 'TABLE'
    AND OBJECT_NAME IN ('ENROLLMENT', 'PRDCT', 'L_P_L')
    AND OWNER in ('Schema_1', 'Schema_2', Schema_3', Schema_4',Schema_5', Schema_6')
    ORDER BY OWNER;
    --Query to get the data from the tables in a Schema
    select 'Schema_1@DATABASE_NAME' AS SCHEMA,
    (SELECT MAX(LOAD_DT) FROM Schema_1.LOAD_STATUS) AS MAX_LOAD,
    L_PROD_LINE.PROD_LINE,
    COUNT(DISTINCT ENROLLMENT.MEM_NBR) AS MEMBERSHIP
    FROM
    Schema_1.ENROLLMENT,
    Schema_1.PRDCT,
    Schema_1.L_P_L
    WHERE
    ENROLLMENT.PRODUCT_ID = PRDCT.PRODUCT_ID AND
    PRODUCT.PROD_LINE_ID = L_P_L.ID
    GROUP BY
    L_P_L.PROD_LINE;

    Hi,
    999355 wrote:
    Hello Experts, (I appologize if i am not using the right way to ask questions)See the froum FAQ {message:id=9360002}
    I have a database, and it has around 400 schemas in it. I have designed a query which will fetch the data from three different table's from Schema1.
    But it will be a tedious process of entering the 400 schemas names and pulling the information.
    I would like to know as to what would be the best possible way to;
    1) Look for all the schemas in the database
    2) Look for those specific tables in the schema, which has the data in the tables.
    3) If the tables are not present, than Ignore that schema and proceed further.
    4) Load the data into a table
    Any help, would appreciate it.
    Thanks!
    The query that i am using is as follows;
    -- Query to select all the Schemas from the database
    select username from all_users
    order by username;
    -- Sample Query to see if Tables exsist in the schema
    SELECT DISTINCT OWNER, OBJECT_NAME
    FROM ALL_OBJECTS
    WHERE OBJECT_TYPE = 'TABLE'
    AND OBJECT_NAME IN ('ENROLLMENT', 'PRDCT', 'L_P_L')
    AND OWNER in ('Schema_1', 'Schema_2', Schema_3', Schema_4',Schema_5', Schema_6')
    ORDER BY OWNER; Do you want to give a list of possible schemas (like the 6 above), or do you want to consider all schemas, however many and whatever they are called?
    You can get the right information for ALL_OBJECTS, but, since you known all the objects of interest are tables, ALL_TABLES will be faster and simpler.
    --Query to get the data from the tables in a Schema
    select 'Schema_1@DATABASE_NAME' AS SCHEMA,
    (SELECT MAX(LOAD_DT) FROM Schema_1.LOAD_STATUS) AS MAX_LOAD,
    L_PROD_LINE.PROD_LINE,
    COUNT(DISTINCT ENROLLMENT.MEM_NBR) AS MEMBERSHIP
    FROM
    Schema_1.ENROLLMENT,
    Schema_1.PRDCT,
    Schema_1.L_P_L
    WHERE
    ENROLLMENT.PRODUCT_ID = PRDCT.PRODUCT_ID AND
    PRODUCT.PROD_LINE_ID = L_P_L.ID
    GROUP BY
    L_P_L.PROD_LINE;I take it that the tables in question are ENROLLMENT, PRDCT and L_P_L; they won't have different names in different schemas.
    You can start this way:
    BEGIN
        FOR  c  IN  (
                          SELECT    owner
                  FROM      all_tables
                  WHERE     table_name  IN ( 'ENROLLMENT'
                                            , 'PRDCT'
                                  , 'L_P_L'
                  GROUP BY  owner
                  HAVING    COUNT (*) = 3
        LOOP
            ...  -- Now get the results for tables in the c.owner schema
        END LOOP;
    END;
    /This will find the schemas that have all 3 of those tables.
    Inside the loop, write another dynamic query. All that will change is the value of c.owner
    Sorry, I'm running out of time now. I hope this helps.

  • Creating a Query with Data from 4 Tables.

    Hey guys. I'm having a small problem figuring out the best way for me to handle this query.
    I'm trying to make a query which outputs the amount of appointments a GP has furfilled, and the total amount allowed.
    I have 4 tables, for each I'm just gonna list the relevent columns:
    Appointment: ID, Patient_ID.
    Patient: ID, GP_ID.
    GP: ID, Trust_ID.
    Trust: ID, Quota.
    Appointment table has 400 entries (2 per patient atm).
    Patient table has 200 entries.
    GP Table has 30 entries (GP's can be assigned to more than one person) .
    Trust table has 6 entries.
    What I need to do is, look at the appointment table and get the number of times each patient has an appointment.
    Go through the patient table, and find out which GP the patient in the appointment belongs to.
    Add each occurance to the correct GP.
    Find out which Trust each GP belongs to, and add the total for each GP to the correct Trust.
    Check the quota in the Trust table, to see if the total is more than the allowed.
    I can't seem to think of an easy or simple way for me to do this. Can anyone help please? Many thanks.

    Hi,
    That sounds like a job for JOIN.
    To check the quotas against the total, use the SUM function; either the aggregate SUM or the analytic SUM, depending on your requirements.
    Sorry this answer is so vague, but that's the bes I can do with the information provided so far.
    Whenever you have a problem, please post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) from all tables involved. In this case, between 2 and 10 rows of data per table should be enough to show what you need to do.
    Also post the results you want from that data, and an explanation of how you get those results from that data, with specific examples.
    Always say which version of Oracle you're using.

  • Get Table Meta Data with RFC

    Hi,
    I wonder if there is a way to get the meta data from a table or structure using RFCs.
    More detailed:
    I am using RFCs to read data from tables and structures. It would be nice to have a way to also get the table definitions, like column headers, column types and contraints, etc. using RFC.
    Does somebody know how to do that? (My test system is an IDES)
    Thanks in advance
    Stefan

    It's me again,
    Today, I had a closer look on what you gave me yesterday. I think the problem is that I asked for the wrong information.
    What I am actually looking for isn't meta information for tables, but information about the "Associated Type" that is associated with every import, export, or table parameter of a function module.
    If I double-click on one of those types in transaction se37 after choosing a function module, I get a wonderful overview about the structure including 'component', 'component type', 'data type', 'length', etc.
    Is there an RFC I can call that gives me exactly this information?
    Best,
    Stefan

  • GRC AC 5.3 SP10: Query Data Mart Tables using MS Access ODBC

    Dear all,
    I have created a ODBC-connection from MS Access on my computer to the GRC AC 5.3 SP10 Data Mart Tables according to the Guide "Data Mart Reporting with SAP BusinessObjects Access Control 5.3".
    Now I want to start a query on e.g. DM Table GRC_DM_CC_MGMTTOT to get information on the AC RAR Management Reports.
    1. In Access I  create a new DB
    2. File -> External data -> Link Tables: ALL Oracle Table of the connected Oracle GRC Table are listed.
    3. When I select table GRC_DM_CC_MGMTTOT to be linked to my new DB Access starts to link to a lot of tables like TSTAT_, TT2C_ and TTEC_* in the Oracle DB!  Are these links really required to query table GRC_DM_CC_MGMTTOT?
    This connection attempts make my computer busy for a very long time so I have to end Access using the Task Manager.
    Does anybody has some experience with connecting MS Access to the Data Mart tables? Unfortunately we have no license for Crystal Reports so we need to get this running MS Access.
    Thanks and regards,
    Markus
    Edited by: Markus  Richter on Feb 5, 2010 4:06 PM
    Edited by: Markus  Richter on Feb 5, 2010 4:10 PM

    Markus,
    Please ensure you are using the correct ODBC driver with your Oracle data base.  You can verify that with your DBA.  I have successfully connected SQL Server, MaxDB and Oracle DB's to MS Access.
    In addition, if there is a significant amount of data in the data mart table, it takes MS Access a long time to download that data.  E.g. for the GRC_DM_SOD_ACT table in my internal system, it took about 10 hrs to download to Access.
    Please feel free to ping me if you have any specific questions regarding the Data Mart.
    Thanks!
    Ankur
    SAP GRC RIG

  • Meta Data About Query

    Hi Friends,
    If we create a query , where meta data about this query will be  stored ?
    was it stored in bi server ,if it stored how can we find?
    Thanks & Regards,
    Ramnaresh.P.

    Hi,
    Meta data means data about data
    it will show the technical information,description and graphical view of any object which is a part of Business content or activated objects in BW.
    The meta data will be stored in the meta data repository,
    To see the meta data > go to RSA1 > Meta data repository > you can see the Business content objects and activated objects.
    if you have a technical name for the query , you can find out and double click on the description of the query, for which you want to see the meta data and you can anlalyse here.
    you can also use RSRT t.code to see the information for the query.
    i hope it will be helpful for you
    Thanks and regards.
    Rambabu
    Edited by: RAMBABU VELANATI on Dec 22, 2008 4:24 PM

  • Controlling meta data returned by an MDX query

    Hello,
    I'm retrieving results from Analysis Services then processing them further in SQL via OpenQuery. So I have a query of the form "select * from OpenQuery(LinkedServer, '<mdx>')
    The query works fine, but because I have a dimension hierarchy with a seven levels on rows, the result set contains seven columns which I don't need, one column for each level in the hierarchy.
    I can ignore them using the syntax "WITH CTE ([1],[2]...) as (<query>) ...", so this doesn't interfere with functionality.
    However, I'm wondering if there is some syntax in MDX which will prevent those columns from being returned at all. I'm guessing that regardless of whether they are selected in SQL, that data still has to be processed. The performance impact of this isn't
    noticeable on any single query, but it seems like for many queries with many rows it would add up. Is it possible to control the meta data that an MDX result set contains?
    Thank you!

    Hi vercinegetorix,
    When we run MDX query by using OPENQUERY having hierarchy, we will get extra columns describing the values of each hierarchy level in different columns. This behavior is by design and we can't change that.
    In addition, we may concern the attribute unique name a little long. The easiest way to remove them is to use an alias. For detail information, please refer to the article below:
    MDX + T-SQL: Combining relational and multi-dimensional data into one query result set:
    http://sqlblogcasts.com/blogs/drjohn/archive/2008/09/27/mdx-and-sql-combining-relational-and-multi-dimensional-data-into-one-query-result-set.aspx
    If you have any feedback on our support, please click
    here.
    Elvis Long
    TechNet Community Support

  • Accessing BEx Information Pane (cube meta data) via WEBI

    All,
    BEx query analyzer shows meta data on the info cube or BEx query.  This includes the Author, the last time the cube was refreshed, the info provider name, last refreshed etc.
    A customer wants to know how to bring this information into the BOBJ world, particularly Webi.
    Can anyone help?
    Edited by: Steve Bickerton on Sep 22, 2008 6:10 PM

    Hi Ingo,
    My name is Lisette and I am the BI consultant working with the SAP BOBJ team.   When you execute a query in BEx you can click on the Information button and get the following information.
    Information
    Author E04093                                                                 Last Refreshed 09/24/2008 14:30:03
    Current User E04093                                                 Key Date                 09/24/2008
    Last Changed By E04093                                                 Changed At 09/24/2008 14:22:21
    InfoProvider ZFAP_M001                                 Status of Data 09/24/2008 11:26:21
    Query Technical Name ZQ_ZFAP_M001_0003 Relevance of Data (Date) 09/24/2008
    Query Description Late Payment Report                                 Relevance of Data (Time) 11:26:21
    For the POC we need to be able to show this data on the WEBI or Crystal report.
    Hope this clarifies.
    Thanks for your assistance.
    Lisette

Maybe you are looking for