Finding list of reports with diff info objects

Hi,
I have two info objects. I want to know the list of the reports which contain these two info objects. Please let me know how can I proceed further.
Thanks:SMS

Hi,
Goto RSA1 --> Metadata Repository --> Infoobject catalog and find the required infoject and just click on the object, in next screen you can see all the reports which are using this infoobject.(InfoObject Directly Used in These Queries:List of Queries )
hope it helps...
regards,
Raju

Similar Messages

  • How to create Webi Reports with SAP BW Objects

    Hi,
    I have no knowledge on creating webi reports with SAP BW Objects like (InfoCube, DSO, MultiProvider, Infoview, MasterData Infoobject).
    As per my understanding Webi reports can be developed with universe which is created on BEx Queries or OLAP BAPI interface, unfortunately i don't have BEx App installed. So, i have to create OLAP universe in this case.
    Here my question is can we create universe with all the available BW objects like InfoCube, DSO, MultiProvider, Infoview, MasterData Infoobject.
    Please, Can anyone suggest a solution
    Thanks,
    Siva
    Edited by: siva@chinni on Apr 25, 2010 4:45 PM

    Hi,
    Yes we can create WebI on the top of SAP Objects - InfoCube, DSO, Characteristics etc...
    But we have to keep in mind that for WebI we must create Universe.
    When we create universe we make direct connection with SAP Objects but we get less functionality - such Calculated Key Figures, Restricted Key Figures, formulas etc. Now you have to achieve all these missing components at Universe Level and at WebI level.
    If you are creating your universe on the top of DSO and InfoObject then make sure they set for reporting.
    There are some online documentation which tells that what functionality you can achieve.
    Check the following document to have a bird's eye view.
    [http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/100369a7-033e-2c10-94a4-f254f8578153?quicklink=index&overridelayout=true]
    There is another document in PPT which I could  not find online. It is very helpful document. It is:
    II. SAP BusinessObjects BI Solutions XI 3.1 and SAP NetWeaver BW 7 Current risks, approach, and mitigating strategies for Client Partners, License Sales, and Consulting Delivery Managers
    Partner Enablement Seminar
    Regards,
    Bashir Awan

  • Create a listing of reports with last run date and # of times run

    Hi All,
    I want to create a listing of reports with last run date and number of times report is run in the past 18 months.
    If anybody can please help me with the query for the same.
    Regards,
    Sk
    Edited by: user10989244 on Aug 18, 2009 7:12 AM

    Hi Sk
    Assuming you have the collection of statistics enabled, which it is out of the box, you can get the information you need from the EUL5_QPP_STATS table. This script will help:
    SELECT
    QPP.QS_DOC_OWNER WORKBOOK_OWNER,
    QPP.QS_DOC_NAME WORKBOOK_NAME,
    QPP.QS_DOC_DETAILS WORKSHEET_NAME,
    QPP.QS_CREATED_BY RUN_BY,
    TRUNC(MAX(QPP.QS_CREATED_DATE)) LAST_USED_DATE,
    COUNT(QPP.QS_ID) TIMES_USED
    FROM
    EUL5_QPP_STATS QPP
    WHERE
    QPP.QS_CREATED_DATE >= ADD_MONTHS(SYSDATE, -18)
    GROUP BY
    QPP.QS_DOC_OWNER,
    QPP.QS_DOC_NAME,
    QPP.QS_CREATED_BY,
    QPP.QS_DOC_DETAILS
    ORDER BY 1,2,3;
    Best wishes
    Michael

  • How to find list of materials with customer wise

    hi,
    how to find list of materials with customer   wise. is there any t.code.

    HI
    if you want for one customer  material combination T-code: VD52
    For multiple customer material combination T code:VD59
    Regards,
    Krishna

  • List View Report with pipelined function in Mobile application and ORA-01007: variable not in select list

    Hi!
    I have a problem with List View Report in mobile application (theme 50 in apex) after updating to apex 4.2.2. I created Report -> List View. I used select from pipelined function in Region Source. Then when page is running and submited three times (or refreshed three times) I get an error:
    Error during rendering of region "LIST VIEW".
    ORA-01007: variable not in select list
    Technical Info (only visible for developers)
    is_internal_error: true
    apex_error_code: APEX.REGION.UNHANDLED_ERROR
    ora_sqlcode: -1007
    ora_sqlerrm: ORA-01007: variable not in select list
    component.type: APEX_APPLICATION_PAGE_REGIONS
    component.id: 21230833903737364557
    component.name: LIST VIEW
    error_backtrace:
         ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 4613
         ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 3220
    I get this error only when I use select from pipelined function in Region Source (for example: "select value1, value2 from table(some_pipelined_function(param1, param2)) ").
    You can check it on http://apex.oracle.com/pls/apex/f?p=50591 (login - demo, password - demo).
    In this application:
    - I created package TAB_TYPES_PKG:
    create or replace PACKAGE TAB_TYPES_PKG IS
    TYPE cur_rest_r IS RECORD (
        STR_NAME          VARCHAR2(128),
        INFO              VARCHAR2(128)
    TYPE cur_rest_t IS TABLE OF cur_rest_r;
    END TAB_TYPES_PKG;
    - I created pipelined function TEST_FUNC:
    create or replace
    FUNCTION TEST_FUNC
    RETURN TAB_TYPES_PKG.cur_rest_t  PIPELINED IS
    r_cur_rest TAB_TYPES_PKG.cur_rest_r;
    BEGIN
    r_cur_rest.STR_NAME := 'ROW 1';
    r_cur_rest.INFO := '10';
    PIPE ROW (r_cur_rest);
    r_cur_rest.STR_NAME := 'ROW 2';
    r_cur_rest.INFO := '20';
    PIPE ROW (r_cur_rest);
    r_cur_rest.STR_NAME := 'ROW 3';
    r_cur_rest.INFO := '30';
    PIPE ROW (r_cur_rest);
    r_cur_rest.STR_NAME := 'ROW 4';
    r_cur_rest.INFO := '40';
    PIPE ROW (r_cur_rest);
    r_cur_rest.STR_NAME := 'ROW 5';
    r_cur_rest.INFO := '50';
    PIPE ROW (r_cur_rest);
    RETURN;
    END TEST_FUNC;
    - I created List View Report on Page 1:
    Region Source:
    SELECT str_name,
           info
    FROM TABLE (TEST_FUNC)
    We can see error ORA-01007 after refresing (or submiting) Page 1 three times or more.
    How to fix it?

    Hi all
    I'm experiencing the same issue.  Predictably on every third refresh I receive:
    Error
    Error during rendering of region "Results".
    ORA-01007: variable not in select list
    Technical Info (only visible for developers)
    is_internal_error: true
    apex_error_code: APEX.REGION.UNHANDLED_ERROR
    ora_sqlcode: -1007
    ora_sqlerrm: ORA-01007: variable not in select list
    component.type: APEX_APPLICATION_PAGE_REGIONS
    component.id: 6910805644140264
    component.name: Results
    error_backtrace: ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 4613 ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 3220
    OK
    I am running Application Express 4.2.2.00.11 on GlassFish 4 using Apex Listener 2.0.3.221.10.13.
    Please note: this works perfectly using a classic report in my desktop application; however, no joy on the mobile side with a list view.  I will use a classic report in the interim.
    My region source is as follows:
    SELECT description AS "DESCRIPTION", reference AS "REFERENCE" FROM TABLE(AUTOCOMPLETE_LIST_VIEW_FNC('RESULTS'))
    The procedure:
      FUNCTION AUTOCOMPLETE_LIST_VIEW_FNC(
          p_collection_name IN VARCHAR2)
        RETURN list_row_table_type
      AS
        v_tab list_row_table_type := list_row_table_type();
      BEGIN
        DECLARE
          jsonarray json_list;
          jsonobj json;
          json_clob CLOB;
        BEGIN
          SELECT clob001
          INTO json_clob
          FROM apex_collections
          WHERE collection_name = p_collection_name;
          jsonobj              := json(json_clob);
          jsonarray            := json_ext.get_json_list(jsonobj, 'predictions');
          FOR i IN 1..jsonArray.count
          LOOP
            jsonobj := json(jsonArray.get(i));
            v_tab.extend;
            v_tab(v_tab.LAST) := list_row_type(json_ext.get_string(jsonobj, 'description'), json_ext.get_string(jsonobj, 'reference'));
          END LOOP;
          RETURN(v_tab);
        END;  
      END AUTOCOMPLETE_LIST_VIEW_FNC;
    Thanks!
    Tim

  • How to list all reports with details for when it was last run by whom?

    Hi, Expert:
    We are running BW3.5. I need to create a report to get a list of all reports (including queries, workbook, web report) with the details of on which day was the report last executed and which user ran it.
    Is there any report in bussiness contact provide this information?
    I was tring of using statistic cube 0BWTC_C02. Is it the right cube to use?
    I was setting up filter by characteristics "Process Type OLAP" including only values of "Execute Query/Navigation Step" and "Query in WWW", also by characteristics "Object Version" including only value of "Active". Will these filter get correct data?
    Can someone please tell me what the following date/time fields mean? e.g. when it is executed, changed, data captured?
    Key Figure: "Start Date"
    Characteristics: "Calendar Day"
    Characteristics: "UTC Timestamp"
    Thanks,
    Jenny

    Hi,
    This below help link provides a detail description of each and every field of 0BWTC_C02.
    Also it gives details about the calculated key figures like "when the query was last run" etc.
    Check if all your reports based on InfoCubes and are the statistics ON for those cubes or reports?
    http://help.sap.com/saphelp_bw33/helpdata/en/52/e91c3b85e6e939e10000000a11402f/frameset.htm
    Thanks
    El.

  • Report with customer info for an Sales Order with batch details

    Hi
    Can any one please tell me the SAP REPORT with contains data of customers were shipped a specific product (material number) by batch number.  report with the name and address of the customer, the sales order number and the number of products that were shipped.
    Thanks
    Nick

    Hi nick,
    See if anybody has worked on SIS (sales information system) in your team.
    He can help you out to create one info structure , by selecting desired characteristics, key figure with respective update rules. though its require lot of configuration but you can make it without abap development.
    (I couldn"t make it in time to provide you detailed configuration but below given path will take you to the configuration area )
    IMG - LG -Logistick information system -logistick data werhouse- data basis- field catalogue.
    IMG - LG -Logistick information system -logistick data werhouse- data basis -
    infostructure.
    IMG - LG -Logistick information system -logistick data werhouse- data basis - updating - update defination & update rules.
    ( MC18, MC21, MC24,& MC30)this transaction help to create field catelogue, info system, update rule & generation log respectively.
    karnesh

  • Project Site custom list data reporting with Odata connection, BI reports in Project online 2013.

    Hi,
    Can we create an excel report with Odata feed connection which includes project site custom list data?
    Example: My Project is "ProjectTest" and it has a project site in which i created a custom list "ProjectNotes" with some new columns. I want to include these columns in my report.
    sandeep

    Hello,
    when using the SharePoint ODATA or REST APIs each list and site would have a different endpoint URL. Some example URLs are below:
    REST API:
    https://test.sharepoint.com/sites/pwa/Project01Test/_api/Web/Lists/getByTitle('ProjectNotes')/Items
    https://test.sharepoint.com/sites/pwa/Project01Test/_api/Web/Lists/getByTitle('Risks')/Items
    ODATA SVC:
    https://test.sharepoint.com/sites/pwa/Project01Test/_vti_bin/listdata.svc/Issues
    https://test.sharepoint.com/sites/pwa/Project01Test/_vti_bin/listdata.svc/ChangeRequests
    The down site is that in Excel you cant dynamically update the connection URL so would have to add all of these in manually and create the data models - I guess this is ok if you don't have many projects and don't create many new projects. In code such as
    JavaScript it is easy and you can build up the URL dynamically using variables like below:
    projSiteUrl + "/_api/Web/Lists/getByTitle('ProjectNotes')/Items"
     The options to explore to see if you have make this dynamic and get the data you want are:
    Potentially look at the search API and use that in Excel:
    http://sharepoint.stackexchange.com/questions/98159/retrieving-list-items-from-multiple-sites-via-odata-with-excel
    http://social.technet.microsoft.com/Forums/windows/en-US/727c1893-6b42-478b-afca-b32fb259a53d/retrieve-custom-lists-from-all-projects-for-excel-reports-by-using-odata?forum=sharepointgeneral
    Power Query:
    http://blog.oraylis.de/2013/05/using-dynamic-parameter-values-in-power-query-queries/
    JavaScript (put the data on a page), example:
    http://gallery.technet.microsoft.com/scriptcenter/Server-Risks-and-Issues-on-65dcbe0e
    Or bring the data down to a custom SQL database table and report of that data:
    http://nearbaseline.com/blog/2014/04/project-site-custom-list-reporting-using-ssis-odata-connector/
    Hope that helps
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • Authorization with standard info objects

    Hi Guys,
    I want a small clarification.
    Is it true that Authorization cannot be done for the Standard Infobject, we need to create reference objecs to the standard objects, and the master data of the standard object would be passed to the reference object
    When i went to the standard object, this option is actually available for them too.
    Thanks..
    Regards,
    Charu

    Making Authorization relevant to the Standard Info-objects are not recommendable.
    Make these standard info-objects as references and create info-objects with Z or Y.
    you could see the bussiness explorer tab in the info object properties. There is one option called Authorization relevant.
    you should enable the authorization relevant tab. Once it done then it will reflect while creating authorization object.
    Hope this would help you in understanding.

  • How to find list of reports by searching a string

    Hi experts ,
    I want to know the list of reports which are using the logic ( like if  personnel sub area(PSA) starts with y ).
    can any body tell me the standard report names which is give list of report names by using a string.
    I know one standrad reportname : 1. RPR_ABAP_SOURCE_SCAN
                                                     2. RPINCL10 .
    <b>I WANT OTHER THAN THESE STANDARD REPORTS.</b>

    HI
    in your program
    select that string
    and follow this path
    <b>utilities - > where used list</b> then it will show that string where it is used in that repository
    reward if usefull

  • Porblem with One  Info Object. in Two Structures

    Hi,
    I am have a Object like Material Type which i need to use in KF structure by filtering in selection,
    and also same in char Structure with different selection in one query.
    But my Problem is I am unable to Drag this Object in to the selection panel.
    if i delete in KF Structure than i can do this. I want both
    Pls help me anybody how can i salve this.
    Regards,
    Madhu.

    Once you restrict the characteristics value in teh structure in ROWs, your KFs will be automaically restricted by that value. Why do you want to create another selection in KF structure?
    System does not allow because of a simple reason.
    You have already put the restriction on this characteristics from the ROW area. You can do two things.
    Either you can create the same selection in the KF structure or you will create a different selection in KF structure. If you create a same selection, there wont be any change in the result. (So, doesnt make any sense to allow you to drag it). If you create with different selection (So, doesnt make any send as it will not bring any number being different selection at that cell).
    Can you please explain your requirement? May be possible that report can be designed with different design.
    - Danny

  • List of reports using custom OM object

    Hi Experts,
    I have a requirement to retrieve all the reports and interfaces which are using a custom OM object. Since I cannot do a where used list for the custom object in HRP 1000, which approach I should use ?
    Thanks in advance.
    Regards,
    Megha

    Megha,
    You can use SAP program RS_ABAP_SOURCE_SCAN to search for your custom object used in SAP programs. In this report you can specify the search string, program name (can be Z*) and other selection criteria.
    This program will give the list of all the SAP objects where your string is being used. This program may take some time for processing depending on your selection criteria.

  • # of SRs - drill down -   List of SRs with SR #- info availablefromSiebel

    Hi,
    I had a requirement where i need to display
    Ex:
    Columns year, SR type, #SR(No.Of SR's)
    2007,Open,10
    2006,Close,2
    When i click on #SR's it has to display the list of SR Id corresponding to the SR type.(i.e. SR#, Retype, DESC
    1, Close, xxxxx
    2, Close, xxxxxxx )
    And when click on SR# = 1,it should navigate to Siebel application for the corresponding SR.
    Please advice me in detail all the steps i need to perform.
    Please advice me at the earliest.
    Regards,
    Damodar
    [email protected]

    Hi,
    I have a similar doubt, i am in the process of creating reports similar to the one in Customer Support Management using balanced scorecard, because the reports do not fulfill our rqmts. But, I am not able to launch the SR Summary page from the backlog/closure detail report. Need to know how can I launch the page and also pass parameters to the page.
    Appreciate your help!
    Shakir

  • Reporting the parent node of InfoObject in a report having the info Object

    Hello Gurus,
    Can I populate a column with a Parent node of an InfoObject1 in the hierarchy just like if it was an attribute of that InfoObject.
    Eg: Lets take ZXXXX which is in a hierachy HXXXX at the child level1 and the Parent is PXXX.
    PXXX is not an attribute of ZXXXXX.
    In a Query QXXXX, I am pulling ZXXXX. Can I Pull PXXXX as well in the report thro the hierarchy.
    Please suggest how?
    Thanks a lot in Advance.
    -Simmi

    Hi Simmi,
           When you create the Hierarchy, you can include the characteristic PXXX in the External Characteristics tab of the Hierarchy maintenance screen. Then you'll be able to specify values for this characteristic in the Hierarchy and use them in the Query.
    Regards
    Hari

  • Report painter report with diff. periods for different company codes

    I need to create a report showing different period data for diff. company codes.
    If company code = 1000, start date = 1, end date is user selected
    If company code = 2000, start date = 6, end date is user selected.
    Can this be done?
    Thanks experts.

    Hello
    Can you please explain a little more in details. I know how to create a formula variable but am not sure how to frame the if statement. The company code is coming from the selection screen when the user runs the report. How do I put an If statement to say "If company code is XXXX, then start period is "06"?
    Thanks for your help,

Maybe you are looking for

  • Two capture scratch/render/audio render folders? Settings OK.

    I know what you are going to say. But in system settings I have it correct ( I think ). Media Drive: capture scratch. That is it. Why am I getting another set of capture scratch folders? Not a huge deal, but I am just trying to understand all element

  • Please help!  Having trouble finding records when searchign two tables.

    Hi, I've been trying to solve this problem for several weeks now, and I have exhausted all of my knowledge and experience. I need help, and I hope someone here can give me some direction. I am using VB 2008, and the CR that comes bundled with VS 2008

  • Unable to locate Pages

    Cant find the Pages software even though the software has been installed and updated

  • Finder folders not updating in real time

    OS 10.8.2  - I have a folder on my desktop that I keep pdf printouts in that i generat in a MS Remote Desktop window at work.  I have the folder linked thru the RDC.  Prior to 10.8.1, this folder worked fine.  The file would show up at the top of the

  • [Survey] Which features do you want for EJB 3.0 modeling ?

    JDeveloper is currently looking/considering at modeling capabilities to support EJB 3.0 session beans and JPA entities. The modeler might let you view and/or edit the EJB components and their related artifacts, like database objects, related classes,