Report Report Interface: No applicable data found

Hi.
I m using the Report Report Interface and getting:
No applicable data found
while calling in GoTo the second Report.
While removeing  the filters threre is data .
What conditions needs to be met that there is data displayed?
Thank You
Martin

Hi,
Please execute the second report separtely with the same filter with which you are getting 'No applicable data found'.
Please check whether executing second report gives you any data with same filter or not.
If it doesn't give , then it means there is no data available to be displayed for that particular filter combination in cube.
In that case you will have to filter the data which is available in cube or need to load the data as required.
Regards,
Amit

Similar Messages

  • Hiding table items in web report when "no applicable data found"

    Hi,
    i want to hide a complete web item from a web report using web table interface
    when i have the situation "no applicable data found".
    I cannot use javascript due to requirements in my solution.
    can i set some attributes in the START method in the class?
    i can see there is an attribute N_NO_DATA which tells if no data is found.
    Can i use this in the other methods to hide the complete table including table heading?
    Best regards,
    Jarle

    Hello,
    datas are available in the Cube, they are displayed when there is no filter or when only one single value is selected in the filter.
    The problem happens when two or more values are selected in the filter.
    Example :
    The field selected is Profit Center.
    Without filter the I can see :
    PC1
    PC2
    PC3
    etc...
    If I select in filter the value PC1, I can see :
    PC1
    If I select in filter the value PC2, I can see :
    PC2
    But If I select in filter the values PC1 and PC2, I can see :
    No Applicable Data Found.
    BR,
    Pedro.

  • Bex report issue - no applicable data found when we drill down on free char

    Hi All,
    We are facing some strange issue  with one of the report.
    when user run the report for a week  (02/02/2009  - 02/08/2009) and then drill down on particular char  its working fine (first time).after that when he is trying to change and execute the report for other week on the same instence ( 02/09/2008 - 02/15/2009) by clicking on refresh and passing new values to the variable  its showing up correctly at the time of drill down on free char its showing as *no applicable data found.*
    when he logoff the system completey and run the report for the week( 02/09/2008 - 02/15/2009) values it is showing up with values even tough he drill down on free char.
    issue basically when he was trying to drill on free char by chaging different date values  in the same instance by clicking on refreh and by entering diffrent values  its showing up as not applicable data found.
    but when he enters the values for different weeks  each time by closing the system and relogin report is working fine and showing up data eventough he drill down on free char.
    Please help me out!

    Dear
    Please check if any condition or exception you have created for that query.
    Or still problem exists check SP level.
    Regds,
    Sachin J

  • Show "No Applicable Data Found" for Report 0SD_C01_Q22

    Hi Gurus,
    I just activated BI Content Report, 0SD_C01_Q22 and it's relevant InfoSource,  DataSource and so on. The data from R3 were loaded into the infoCube successfully.
    However, it shows "No Applicable Data Found" when I executed the query.
    I have tried to create a new query based on the same InfoCube but has NO limitation parameter. However the result was the same.
    Can anyone consult out?
    Cheers

    Hi my friends,
    I have tested it with a really simple report that has no selection condition. But the result is the same.
    Also, I have checked the data in infoprovider with LISTCUBE but the data are definitely available.
    By the way, I test it with an account hazing profiles as SAP_ALL and S_A.SYSTEM. The super user account should have enough authorization.
    So my friends, anymore ideas? Pls help out....
    Cheers.

  • Message "No applicable data found" after executing the report

    Hi all,
    I have 60 records in a cube which is extracted from a function module. I am able to see the data in the cube but when I execute the report I am getting the message u201CNo applicable data foundu201D. Why is that so?
    Can any one please explain me what to do to bring data when the report is executed?
    When I execute the query there is only one field selection criteria 0P_FPVANT and this is mandatory. When I checked the data in the cube I didn't find any field 0P_FPVANT but I found a field Fiscal Period Variant with the technical name, 0FISPER
    I executed the query in RSRT and there also I am getting the same message, "No applicable data found".
    Please advise what do I need to do inorder to get data when the report is executed?
    Thank you.
    Regards,
    Pavan.

    I think so.
    Ok let me take the other report 0FIAR_C02_Q1003. For this report the selection criteria is
    Company code,
    Customer and
    Period/Fiscal Year
    Of these only company code is mandatory. In the data in the cube I see that for co. code BP01 data is available. So I executed the report with co. code as BP01 but no data.
    Then I gave co. code BP01 and Period /Fiscal year as 2008, 2008.03, still I see no data.
    I tried with values in all the fields that are available in cube
    co. code - BP01
    Customer - PCS-C10
    Period/Fiscal Year - 2008011
    Now with respect to Period/Fiscal Year selection field in report, in cube there are 4 columns
    Fiscal Year Period,
    Posting Period,
    Fiscal Year Variant and
    Fiscal Year
    I've tried all of them but when I enter values in all the fields still I am getting the same error, "no applicable data found".
    Please advise.
    Thank you.
    Pavan.

  • PLSQL function body returning an sql report returns ORA-01403 No Data Found

    I am on APEX 3.1.2.00.02 and Oracle 10g.
    I am developing a report with SQL Query (PL/SQL function body returning SQL query) type. But on running the report I am getting
    report error:
    ORA-01403: no data found
    Region Source
    declare
      qry varchar2(32767);
    begin
      --Procedure call
      my_pkg.get_query(qry);
      htp.p(qry);
      return /*select 1 from dual */ qry;
    end;
    Procedure
    PROCEDURE get_query (V_QRY OUT VARCHAR2)
    IS
      qry varchar2(32767);
    begin
      qry := ' select name
         , max(decode(to_char(service_date,''Mon-YY''), ''Jan-09'', value, null)) as "Jan-09"
         , max(decode(to_char(service_date,''Mon-YY''), ''Jan-09'', value, null)) as "Feb-09"
         from MY_TABLE
         group by name ';
      V_QRY := qry;
    end;
    The query will be enhanced later to add more months and year based on user parameters once I am successfull in running report on this.
    I wish to use Query Specific Column names. I have seen this suggestion from Scott in a number of threads to use /*select 1 from dual */ with query but not working in my case.
    Can someone please suggest what can I do to make it working?
    Regards,
    Amir

    Firstly, have you unit tested the procedure (namely, within the SQL Workshop, SQL*Plus, SQL Developer,etc, etc.) to see if it produces the right output in the first place?
    If you have, and the query string generated is valid, try assigning the output to a page item (thus allowing you to view it in the session browser) or even pass the procedure output into the debug window (with the use of the wwv_flow.debug function). This might reveal some state or session change which is causing it not to return.You might find this easier to achieve if you change from a 'procedure and out parameter' combination to a 'function returning string' approach.
    Alternatively, try re-creating the report in a new region - occasionally I've come across weird bugs with report regions which resolved themselves in this manner.

  • PL/SQL function body returning SQL - report error:ORA-01403: no data found

    Hi,
    I am working on Application Express 4.0.2.00.06, and 11G database.
    I have a problem with classic report area of type - PL/SQL function body returning SQL query. Query works if I define region area as - Use Generic Column Names (parse query at runtime only), and does not when I define it - Use Query-Specific Column Names and Validate Query.
    I am getting error:
    report error:ORA-01403: no data found
    This is my query that is returned from function, and displayed with htp.p, and it works ok and returns data in SQL Developer and SQL Workshop (in Apex).
    <code>
    /* select 1 from dual */ SELECT SIFPRO, NAZIV, VODITELJ, DATPZA,SUM(DECODE(TJEDAN,'2010/46',BRDJEL,null)) as "2010/46" ,SUM(DECODE(TJEDAN,'2010/49',BRDJEL,null)) as "2010/49" ,SUM(DECODE(TJEDAN,'2010/50',BRDJEL,null)) as "2010/50" ,SUM(DECODE(TJEDAN,'2010/51',BRDJEL,null)) as "2010/51" ,SUM(DECODE(TJEDAN,'2010/52',BRDJEL,null)) as "2010/52" ,SUM(DECODE(TJEDAN,'2011/01',BRDJEL,null)) as "2011/01" ,SUM(DECODE(TJEDAN,'2011/02',BRDJEL,null)) as "2011/02" ,SUM(DECODE(TJEDAN,'2011/03',BRDJEL,null)) as "2011/03" ,SUM(DECODE(TJEDAN,'2011/04',BRDJEL,null)) as "2011/04" ,SUM(DECODE(TJEDAN,'2011/05',BRDJEL,null)) as "2011/05" ,SUM(DECODE(TJEDAN,'2011/06',BRDJEL,null)) as "2011/06" ,SUM(DECODE(TJEDAN,'2011/07',BRDJEL,null)) as "2011/07" ,SUM(DECODE(TJEDAN,'2011/08',BRDJEL,null)) as "2011/08" ,SUM(DECODE(TJEDAN,'2011/09',BRDJEL,null)) as "2011/09" ,SUM(DECODE(TJEDAN,'2011/10',BRDJEL,null)) as "2011/10" FROM (SELECT * FROM PMV_PLAN_TVRTKA) GROUP BY SIFPRO, NAZIV, VODITELJ, DATPZA ORDER BY SIFPRO, NAZIV, VODITELJ, DATPZA
    </code>
    As you can see, I even tried with workaround that I found on the previous post on the forum, and that is to put /* select 1 from dual */ to start query.
    Any help would be appriciated.

    /* select 1 from dual */ SELECT SIFPRO, NAZIV, VODITELJ, DATPZA,SUM(DECODE(TJEDAN,'2010/46',BRDJEL,null)) as "2010/46" ,SUM(DECODE(TJEDAN,'2010/49',BRDJEL,null)) as "2010/49" ,SUM(DECODE(TJEDAN,'2010/50',BRDJEL,null)) as "2010/50" ,SUM(DECODE(TJEDAN,'2010/51',BRDJEL,null)) as "2010/51" ,SUM(DECODE(TJEDAN,'2010/52',BRDJEL,null)) as "2010/52" ,SUM(DECODE(TJEDAN,'2011/01',BRDJEL,null)) as "2011/01" ,SUM(DECODE(TJEDAN,'2011/02',BRDJEL,null)) as "2011/02" ,SUM(DECODE(TJEDAN,'2011/03',BRDJEL,null)) as "2011/03" ,SUM(DECODE(TJEDAN,'2011/04',BRDJEL,null)) as "2011/04" ,SUM(DECODE(TJEDAN,'2011/05',BRDJEL,null)) as "2011/05" ,SUM(DECODE(TJEDAN,'2011/06',BRDJEL,null)) as "2011/06" ,SUM(DECODE(TJEDAN,'2011/07',BRDJEL,null)) as "2011/07" ,SUM(DECODE(TJEDAN,'2011/08',BRDJEL,null)) as "2011/08" ,SUM(DECODE(TJEDAN,'2011/09',BRDJEL,null)) as "2011/09" ,SUM(DECODE(TJEDAN,'2011/10',BRDJEL,null)) as "2011/10" FROM (SELECT * FROM PMV_PLAN_TVRTKA) GROUP BY SIFPRO, NAZIV, VODITELJ, DATPZA ORDER BY SIFPRO, NAZIV, VODITELJ, DATPZA

  • Report error: ORA-01403: no data found.

    Hi,
    I was getting a following error and not able to figure it out.
    Here what I have:
    I have a page where I have 3 regions and out of them, there are 2 Html conditional regions
    and one SQL updatable report. Also, I have a validation to validate a field on the tabular form
    based on one field on the HTML region. The validation works fine but it also throws following error :
    report error: ORA-01403: no data found.
    Code:
    Declare
    v_office_id number;
    Begin
    SELECT count(id) into v_office_id from dar_asd.asd_office;
    if (:P299_ROLE_TYPE_ID = 1 and apex_application.g_f30.COUNT = v_office_id ) or
    (:P299_ROLE_TYPE_ID = 2 and (apex_application.g_f30.COUNT < v_office_id
    and apex_application.g_f30.COUNT >= 1) ) then
    return null;
    else
    RETURN 'Error: '||'Not a valid office selection.';
    end if;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    RETURN 'Error: '||SQLERRM;
    end;
    Thanks.

    Marc,
    Thanks for the reply.
    It is derived columns i.e. Use Query-Specific Column Names and Validate Query. The select statement returned by the stored procedure function will allways have all list of columns in select list. But the report displays allways some fixed number of columns in the secod region and remaining will be dependent on the check boxes and lov items selected in the first region. For e.g. if the select has 20 columns. Out of this, let's say 8 will allways displayed and remaining 12 will be displayed depending on the check box and lov items defined for them in the first region. I mean if 3 check boxes are checked and if the user selected some value from lov for the corresponding check box items, then the report will display 8+3 = total 11 colums. And the lov values selected will be used in the where condition of the SQL.
    How can I go to the report attributes? I can go to page definition, but I am not finding report attributes here. Please let me know...
    Thanks,
    Srini

  • No Applicable Data Found

    Hello All
    I am having a strange problem in BI 7.0 when running a query in BEx I receive, as expected, a report filled with data. My problem occurs when I save this query as an Excel worksheet open the file and refresh it, with exactly same filters as the original query, I then recieve the message No Applicable Data Found! 
    I hope someone can help explain this?
    Thanks
    Phillip

    Hi Padmanabha,
    Check whether the records are in "A" --Active mode or "M" -modified..
    In some cases Changes to Master data Texts can be seen immediately..but attributes can't been seen unless and until the mode is "A"..
    Hope this might be of some use to you.. 
    Regards,
    Manga
    Message was edited by: Manga
    Message was edited by: Manga

  • No applicable data found.. Erro in standard cubes.

    Hi,
    I am getting an error during the utilization of standard cubes in BI 7.01.
    After the data load is complete, when i tried to execute the standard cube "Warehouse Workload History - Deliveres" , or
    any other standard cubes, NO DATA CAN BE FOUND.
    When using Bex Query Designer on Web, the message is : NO DATA CAN BE DISPLAYED. This could be due the current selection of variable or filter values.
    When using Analizer in excel, the message is : NO APPLICABLE DATA FOUND
    But if we create the same query from beginning, not using the standard cube, with the same fields and indexes and records,
    the values are displayed.
    We also try to save as the same standard report with another name and doesn`t work.
    My system is SAP EHP1 for SAP NETWEAVER 7.0 in SO Linux and Oracle Database.
    SAP_ABA , SAP_BASIS, PI_BASIS, SAP_BW is 701 level 07.
    BI_CONT is 705 level 01.
    please any advices

    Check whether the standard report is created on the Info-provider on which the data is loaded .You can see the same in the query properties next to the check query button in query designer as you are able to see data , by creating another query on the inforprovider .

  • No Applicable Data Found during query execution !

    Hi friends,
    I know this question has been posted on sdn so many number of times and i have gone through all of those thread. i checked all the things menssioned in the previous thread and did accordingly, but not able to resolve this issue. Here is the details of the problem encountered:
    I am trying to execute a query <b>wihout</b> any selection crieteria. after runnig for 10-15 secs i am getting the following message:
    "No Applicable Data Found."
    I went to the Infocube manage and checked all the requests are green and "Request for reporting availble" option is also checked for each and every request loaded.
    I checked the LISTCUBE Tcode and checked that the data is there.
    Any idea how to fix this thing?
    manmit

    Thanks Bhabu for ur quick reply..actually i am in Production and so i can not remove that filter from the query design. we are using "Current calander month" as the filter. and when i go to the LISTCUBE. how can i put the same filter in LISTCUBE as i can see the date in the list cube upto only 2006 year.
    I think it is not getting data because of this filter...as the current month filter takes the data of current month and there is not data for this month in the cube i guess. plz correct me if i am wrong..
    assigned points for ur help already...
    Manmit

  • "No Applicable Data found" message in BEx Analyzer Query

    Can anyone help me on this problem? I have encountered this problem when i tried to view the results in analyzer after i completed the database with all the data.
    Query - Demo: ICDEMOBC00_Q01 - Key Date: 31.12.9999     
    Calendar Day     
    Customer ID     
    Material number     
    Key Figures     
    Sale representative     
    No Applicable Data Found.

    You key date 31.12.9999, is this the date you entered in a variable?  If so I presume you don't have data on your system for this time period.
    If you take the date filter out of the report do you see data?
    Also check if there are any conditions on the report that may be active.
    Regards
    Gill

  • No applicable data found - Error in BEx

    Experts,
    I have data (material, qty and amt related with future commitments) in cube. I see that data activated in cube and available for reporting. But when I execute report (no filters) I can see that some material is no displayed and if I run report selecting that material it says no applicable data found. This is so wierd problem. Anyone come across this type of situation? Any suggestions or comments please? Thanks.
    Regards,
    Nimesh

    Hi,
    you are facing this issue only for few materials.....then it's not a data issue.
    If you are looking the values of the basic key figure or some RKF's or CKF's.
    It could be possible that the RKF's are defined in such a way that it would be giving only specific materials only.
    you said you have activated the master data..... have you run an attribute change run after that??
    Do you have any conditions at the report level??? just check that...
    Thanks

  • Display 0 value for not applicable data found in Company Code Hierarchy

    Dear Expert,
    How to display 0 value inside company code hierarchy which has no data applicable data found in BW Report?  I have created queries with Profit Center(PC) Hierarchy and inside this hierarchy there are several PC. Based on data in BW Cube some of the PC has no applicable data found. But my report should display all the PC inside this hierarchy with 0 value for no applicable data found. What should i do to default 0 value for no applicable data found for that PC so that my report will be display all PC in that hierarchy?
    Best regards and thank you,
    Lin

    Hi Lin,
    Right now what value you are seeing when executing the query?
    Thanks & Regards,
    Vipin

  • How to replace "No Applicable data found." message with other message ?

    Hi all BW Gurus
    I have a very specific requirement wherein the user wants to see different message instead of "No Applicable data found." in Web result of query.
    I think this should be possible with Table Interface Class but i am not sure how to go about this.
    If anybody can help me in this regard with sample ABAP code to be written in Table interface class it would be highly appreciated as the requirement is very urgent.
    Thanks in Advance
    Regards
    Swapnil.

    Hi  Swapnil,
         If you are using Web Application Designer means... Through Java Scripting you can solve ur problem.... if it BEX means  through Macros  you can solve ur problem...
           let me know,  if you are using Wad means.. i will give the  java script.... for  displaying different message....
    thanks
    @jay

Maybe you are looking for

  • Random shutdowns/screen off on Mavericks

    I've been getting random shutdowns on my MBA 2013. It almost always happens when I've closed the lid to put it to sleep. After that when I open it the screen always stays black and nothing happens. I have to press down on the power button for a while

  • XI Database problem

    Hi All, I have strange situation in XI Development, My server guys told that Database is full . Tables are SAPXD2   SYS_LOB0000046998C00020$$    LOBSEGMENT   PSAPXD2DB         83.062.784    10382.848     1.454      1-           0 SAPDAT   SXMSCLUR   

  • XSS Authorizations Question

    Hello all, XSS System Landscape components are installed. JCo configured, WebDynpro configured, users configured. Employee Search and profile changes are already properly working. But as I begin to check on the other ESS services - there are a lot mo

  • Transfer markers/comments to PP?

    I have an m2t file already captured.   I want to use Ol CS5 to add markers/comments that will import into PP CS5.   I've scanned the help, and watched one video tutorial on Adobe TV but still can't get it to work.  I've added the markers with comment

  • Unity Connection 8.5(x), single inbox, and smartphones

    If the customer sets up the following environment: Unity Connection 8.5(x) WITH SECURE MESSAGING Single Inbox with Exchange 2010 Customer has smartphones (blackberry, etc). We're trying to figure out if this is set up, will the smart phones be able t