Name of tables which will store Discoverer Reports Information.

Hi Everyone,
Hope all are doing good.
I have a requirement on up-gradation project, find the discoverer reports where will store table names and path.
Once i get Discoverer Reports information, we have to find-out the custom Discoverer reports.
Thanks in advance...
Sreenivas.U

80f8bcb6-a8b3-426c-839a-cd401b686d56 wrote:
Hi Everyone,
Hope all are doing good.
I have a requirement on up-gradation project, find the discoverer reports where will store table names and path.
Once i get Discoverer Reports information, we have to find-out the custom Discoverer reports.
Thanks in advance...
Sreenivas.U
How to Find Out the Sharing Information for Discoverer workbooks From the Database (Doc ID 293021.1)
How To Get A List Of Discoverer Worksheets Directly From The Database? (Doc ID 1333531.1)
How To See Which Discoverer Workbooks Are Owned And Shared By An Existing Or Dropped Database User (Doc ID 375777.1)
How To Query Metadata To Determine Which Discoverer Workbooks Are Accessible To User ? (Doc ID 433794.1)
How To Determine Which Business Areas Are Used By The Workbooks Saved To The Database (Doc ID 458739.1)
Thanks,
Hussein

Similar Messages

  • In which table it will store in pricing

    hi gurus,
    I have a question in prcing procedure determination we create conditon table in v/03 transaction code.  We can find some standard tables also there.  No my question is in which table they will store in abap all those conditon table.  please help me in this regard.
    Thanks & Regards
    points will be rewarded.

    Hi,
    Those condition tables are database tables themselves.
    For example, if you create a c ondition table 998, then the corresponding database table is A998 where A implies its application for pricing. The table A998 also will have some other fields added to it by default, like variant key, value etc.
    Now for this combination of fields, the condition records you create will be updated in the table A998
    Hope this clears ur doubt.
    Pls reward if it helps you

  • In which table it will store SavedSearchPortletPrefs?

    In which table it will store SavedSearchPortletPrefs?

    Hi,
    Those condition tables are database tables themselves.
    For example, if you create a c ondition table 998, then the corresponding database table is A998 where A implies its application for pricing. The table A998 also will have some other fields added to it by default, like variant key, value etc.
    Now for this combination of fields, the condition records you create will be updated in the table A998
    Hope this clears ur doubt.
    Pls reward if it helps you

  • Transaction Currency Tables which will give totals only

    Transaction currency purpose  bseg, bkpf, bsis, bsid contain document wise details hence will not be useful for my purpose,   i need a table which will give transaction currency  totals only.

    Hi Anu,
    I am unable to understand your exact requirement as if you need total of any transaction currency then there must be a criteria for the same like one want to add all currencies monthly/annually/weekly for reporting purpose and in this case you have to write a report and add currencies.No tables can hold such calculative recordes.
    Please elaborate more so I can u'stand requirement.
    Regards,
    Gaurav

  • What is the name of table which supports processchain.

    Hi friends
    what is the name of  the table which supports processchain.

    Hi Beeram,
    You are thanking a poster for his answer.
    Please next time also give him points.
    See: /people/mark.finnern/blog/2004/08/10/spread-the-love
    This time I did it for you.
    Remember: When you ask a question you also assume the responsibility to assign points.
    Please check your other questions and if the answers were good.
    Spread the love and give some points.
    Thanks in advance, Mark.

  • Want name of table which stores all program names

    Hi all,
    I want to find all the custom programs (all Z programs)in the system.
    Can any one tell me which table stores all the programs, t.code and stuff like that so that i can search for all the Z programs in it.
    i tried TSTC and TSTCT, however I dont get as many entries I get when i do an F4 help search in SE11.
    Thanks
    CMV

    Hi,
    Just wrote this code. This will get all the Y/Z programs .
    [code]
    REPORT  zztest_prd                              .
    TABLES : trdir.
    DATA : BEGIN OF it_prg OCCURS 0,
           progname LIKE trdir-name,
           subc     LIKE trdir-subc,
           END OF it_prg.
    DATA: genflag TYPE genflag.
    SELECTION-SCREEN BEGIN OF BLOCK abc WITH FRAME TITLE test.
    SELECT-OPTIONS : scnam FOR trdir-cnam.  "Author name
    PARAMETERS     : notemp AS CHECKBOX.    "No temporary objects
    SELECTION-SCREEN END OF BLOCK abc.
    INITIALIZATION.
      test = 'Download Z/Y Programs'.
    START-OF-SELECTION.
      SELECT progname subc FROM reposrc INTO TABLE it_prg
                      WHERE   (  progname LIKE 'Z%' OR progname LIKE 'Y%' )          "User name space
                        AND   ( subc = '1'          OR subc = 'M' OR subc = 'I' )    "Executable(1),Module(M),Include(I)
                        AND  cnam IN  scnam.                                         "Author
      IF notemp IS NOT INITIAL.
        LOOP AT it_prg.
          SELECT SINGLE genflag FROM tadiv
                        INTO genflag
                        WHERE pgmid = 'R3TR'
                          AND object = 'PROG'
                          AND obj_name = it_prg-progname
                          AND devclass = '$TMP'.
          IF sy-subrc = 0.
            DELETE it_prg.
          ENDIF.
        ENDLOOP.
      ENDIF.
      LOOP AT it_prg.
        IF sy-tabix EQ 1.
          FORMAT COLOR COL_HEADING ON INTENSIFIED ON.
          WRITE : /2(40) 'ABAP program name',
                  45(10) 'Program type'.
          FORMAT COLOR COL_HEADING OFF INTENSIFIED OFF.
          SKIP 1.
        ENDIF.
        FORMAT COLOR COL_NORMAL ON INTENSIFIED OFF.
        WRITE : /2(40)  it_prg-progname,
                 45(10) it_prg-subc.
      ENDLOOP.
    [/code]
    Hope this helps you.
    Regards,
    Arun Sambargi.

  • Need PlSQL code to find out the column/combination of columns from a given table which will be unique values

    Given a table with some columns and data associated with that. Need to find out a column or a combination of some columns, so that the values or combination of values will be unique in the table.
    The table and number of columns and the columns will be dynamic.
    Can you please help me with the solution?

    f8d0dcea-cdf0-4935-8734-632fe021456c wrote:
    No key is defined in the table.
    Suppose a table contains 20 columns then I need the unique combinations of all columns.
    Example: A table 'Employee' has 4 columns: Emp_No, Emp_Name,Passport_No,Emp_Designation. No key is defined for Employee table. Need to find out which column(single column and combination if columns) have unique values. Like, First check if Emp_No is unique then check Emp_No+Emp_Name is unique, then check if Emp_No+Emp_Name+Passport_No is unique, then check Emp_No+Emp_Name+Passport_No+Emp_Designation is unique.
    Then again try with the combination of Emp_No+Passport_No and so on. In this way I need to find out all the combinations having unique values.
    As Paul says, that will be a waste of time, as it will taken a lot of processing for all the possibilities, checking all the data each time to determine which combinations of columns provide uniqueness.  What happens if someone inserts or deletes some data whilst your doing it?
    You'd be quicker to manually look at the tables, and make an educated guess and then test for uniqueness with a quick query on that guess.

  • How to create a table which will appear on each sheet

    I would like to have one table with some information in the corner of each sheet, but I would like the tables update automatically. Soo.. if I update one of them, rest of them update accordingly.
    I thought I would be able to put a table in the header but it didn't work.
    Thanks in advance.

    Conferenceorg wrote:
    I would like to have one table with some information in the corner of each sheet, but I would like the tables update automatically. Soo.. if I update one of them, rest of them update accordingly.
    I thought I would be able to put a table in the header but it didn't work.
    Thanks in advance.
    CO,
    Program your master sheet with representative data in the cells that you would like to have repeated in the slave sheets.
    Prepare a typical slave sheet, with a table programmed to reference the key cells in the master sheet.
    Name the slave sheet "Template", or other distinctive name that you will recognize and keep otherwise empty and as a template for new sheets.
    When you need a new sheet, Click on the Sheet icon of Template sheet. Then Command-C, Command-V, and rename "Template-1" to identify it as a working sheet.
    Regards,
    Jerry

  • What tables which will link Ledger to Legal Entity?

    I am looking for the scripts to get all the Legal Entity under specific Ledger. In my example, I want to get all the Legal Entity which belongs to "ABC" Ledger. But I do not know what tabes will link from Ledger to Legal Entity.
    SELECT GL.NAME LEDGER,GL.LEDGER_ID LEDGER_ID,
    glc.configuration_id,
    GLCD.OBJECT_NAME
    FROM GL_LEDGERS GL,
    GL_LEDGER_CONFIGURATIONS GLC,
    GL_LEDGER_CONFIG_DETAILS GLCD
    WHERE GL.NAME = GLC.NAME
    AND GLC.CONFIGURATION_ID = GLCD.CONFIGURATION_ID
    AND GLCD.OBJECT_TYPE_CODE ='LEGAL_ENTITY'
    AND GL.NAME ='ABC'
    >
    Please kindly advice.

    Hi,
    Please refer the below view, it gives you the reference between LE and Ledger.
    GL_LEDGER_LE_BSV_SPECIFIC_V
    Regards,
    Yuvaraj.C

  • Basic type :HRMD_A07  in which table data will be store

    Hi,
    I have the basic type HRMD_A07 .so can any one tell me in which table data will store .
    Thanks in advance.
    Regard

    Hi,
    Check the following link for more information on tables and the flow of information in sd
    <u>http://www.erpgenie.com/sap/abap/tables_sd.htm</u>
    Award points if it adds information.
    Thanks
    Mohan

  • Tracking Discoverer Reports Usage, which table contains that?

    Hi there:
    Just wondering if anyone here knows which table that contains the discoverer reports. I'd like to come up with a list of all reports that have been created, when they get created and also how frequently they are used.
    Thanks
    Hui

    Here is a query to identify workbooks:
    List of Workbooks
    SELECT doc_name "Workbook",
    doc_developer_key ,
    doc_description "Description"
    FROM eul_owner.eul5_documents
    WHERE eul5_documents.doc_name LIKE '%&enter_workbook_name%'
    ORDER BY doc_name
    With respect to workbook usage, try this:
    SELECT a.QS_DOC_OWNER USERNAME,
    a.QS_DOC_NAME WORKBOOK ,
    a.QS_DOC_DETAILS WORKSHEET ,
    MAX(a.QS_CREATED_DATE) LAST_USED
    FROM EUL_OWNER.EUL5_QPP_STATS a,
    EUL_OWNER.EUL5_DOCUMENTS b
    WHERE a.QS_DOC_NAME = b.doc_name
    GROUP BY a.QS_DOC_OWNER,
    a.QS_DOC_NAME ,
    a.QS_DOC_DETAILS
    The Oracle Discoverer 10g Handbook in appendix A discusses many of the EUL tables.

  • In which files data will store in a database

    Hi All,
    there will be three folders =
    admin
    ora81
    oradata
    in these 3 folders where data (tables etc ) will store
    Thanks,

    Hi pradeep normally data is stored in datafiles which are placed on a tablespace. datafiles then consist extents which contain data blocks where data is stored, you can check the appropriate location of your datafiles by using v$datafiles view.

  • BI Report information :Report technical name - Report name - Last run date

    hi,
    I want to know how we gather the information about the total reports present in production environment in following format.
    Report technical name - Report name - Last run date
    I know a table RSZCOMPDIR where we can find technical name and last run information, but this table does not give Report name.(description)
    Is there any other table which can give me this information???

    Hi Amruta,
    check the following forum link which is already posted . probably it will help.
    [How to find out Query last used by whom|How to find out Query last used by whom]
    Regards
    Sree

  • Best method to design a table which can point to two different entities

    I have the following set of tables,
    Dimension1, Dimension2, Dimension3
    Dimension1 is dependant on the both Dimensions2 and Dimension3,  however the data mapping with Dimension3 will be very sparse (say only 1% of data will be available remaining will be NULL). So in this case, per my understnading there are the following
    options available,
    Option1: Have two columns in Dimension1 table and link them to the respective dimensions (However as mentioned the column which will be mapped to Dimension3 will have very less values ~1%), and have some conditional check to make sure that one of these
    two columns shuld always contain a value.
    Option 2: Split the Dimension1 table into two tables and map them to the respective dimensions. This removes the NULL aspect however is this is a right thing to do as per the DB design good practices and normalization techniques.
    Option3: Add one column (DimensionType) in Dimension1 table which will denote the type of dimension to which the data will be mapped into ('Dimension2' or 'Dimension3') and then add another column which will contain the actual ID and will map to both the
    dimensions based on DimensionType column (logically, because physically you cannot map a single column to 2 different entities).
    Which one of the above is a good design, also if we say either of option1 or option2 then what will be the case if Dimension3 will be dependant on a new dimension in future. Do we need to add a clumn or create one another table for this? Please let me know
    the thoughts.
    Regards, Murugan S

    Thanks Visakh
    Any other thoughts? or should option1 be considered the best approach given the scenario. Also this implies that if there is going to be a new dependancy in future which does not fit into Dimension2 and Dimension3, the solution is to add a third column in
    Dimension1 - Am I correct in the understanding?
    Regards, Murugan S
    Yes any new dependency have to be represented by a new foreign key column
    Now I'm getting one doubt 
    By new dependency do you mean a new related attribute? Are all these dimensions holding related attributes for the main entity?
    If yes then you may merge them to a single dimension ie attribute table like format with a type column to indicate the type of attribute
    Then you will always need only a single reference key (column) in your fact
    Any new dependency will just be a new record addition in the table with a new type value
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Which table keeps the Discoverer Report list?

    Hi,
    I'm new to Discoverer, actually I haven't started to use yet.
    I would like to know is it possible to retrieve a list of reports created in Discoverer so that I can add them to the standard reports that I developed using Oracle Report builder in my application. If possible, which table can I get the report list?
    My second question, is it possible to run a Discoverer report directly if I have the report link? Or everytime I run I must enter the schema username and password?
    Please advise.
    Thank you.

    Hi
    With regards to question 1, I don't believe this is possible any more. The older versions were rather flexible in that approach but sadly, no more.
    With regards to question 2, using a VPD you can authenticate to your heart's content using any custom defined table you wish. This is just an out of the box idea, and I don't know whether it will work, but here goes.
    The table that stores public connections is this one: orasso.wwsso_psex_user_info$
    I am wondering what would happen if we put a restriction on SELECT from that table to not allow selection if the SSO user was not of a certain class or did not have a certain privilege.
    Would anyone else care to comment here?
    By the way, inside SQL, this code SYS_CONTEXT('USERENV', 'CLIENT_IDENTIFIER') will return the SSO user.
    For more info on public connections, look here: http://download-west.oracle.com/docs/html/B13918_03/conns.htm#i1016752
    Best wishes
    Michael

Maybe you are looking for

  • System Update not working correctly

    Hi forum, System Update (Version 4.00.0024) is not working correctly on my T500 with Windows 7. 1: Not detecting old versions SU is not detecting, that there is an old version of Access Connection (5.42) installed although there is a new version 5.50

  • MY ITUNES IS SAYING ITUNES HAS ENCOUNTERED A PROBLEM AND HAS TO CLOSE ??? PLEASE HELP

    I can not ope itunes one day it just did not work and its driving me crazy ? please help

  • Flash Video Issue

    I keep getting the following error message when I try to insert flash video with a skin: "The URL cannot contain spaces or special characters. Change the path of file name and try again." I've changed to all lower case and eliminated spaces but to no

  • Delete an OM infotype

    How to  delete an OM infotype clearly? For example, I created an OM Infotye 9190, But when i delete it using T-code PPCI, the HRI9190 structure stills to be there. Thanks for all your help. victor ying

  • Firefox window size differ from GoLive 'preview in browser.'

    When I set up my site, all catagory pages was set to the correct size in the head actions resize window. When I download my site in Firefox the windows are smaller and are cut off at the bottom and right side. What gives?