No data found in report csv or pdf output on first page load

No data found in report csv output on first page load. Report shows up on page, but no data found in csv or pdf output. I always need to submit the page and then it shows data in downloads. The page contains a form (read-only) with a report that references 4 page items by using something like the following:
and b.employee_no = v('P5_EMPLOYEE_NO')
and c.fisc_year_pk = v('P5_FISC_YEAR_PK')
and b.job_class = v('P5_JOB_CLASS')
and b.organization = v('P5_ORGANIZATION')
Again, report in the page shows up except there is no data in downloads. Can anyone help me solve this problem? I'm running Oracle APEX 4.2.1 in Oracle database 11gR2.
Thanks.

Sounds like a classic session state issue.
You need to populate you page items using page rendering computations to ensure they're set to session state.
Or if the download is triggered from a button press, you need to ensure those page items are submitted to session state, perhaps via a PL/SQL action.
Scott

Similar Messages

  • When I print a pdf file, the first page is dramatically  reduced in size while remainder pages print correct size. How do I fix this pro blem?

    recently, when printing pdf files, the first page prints out as 1/10 or 1/20th original size while rest of document prints correctly.
    I have no idea how this happened or why and I have no idea how to fix. I cannot get the first page of any pdf doocument to
    print correctly and thus, I am virtually unable to print pdf files.

    Sometimes if a .pdf is smaller than actual 8 1/2 x 11 or bigger, you'll either get way too much of the image and it's cut off, or the image is too small. You should also try to do this in the print driver window: Properties -> Advanced -> Image Options -> Disable "PostScript pass-through"

  • Report export to csv - no data found in report

    Hi all,
    I've followed the steps to export my report to a csv file. In the Report Attributes, Report Export section I have:
    Enable CSV output: Yes           Separator: ,           Enclosed By:
    Link Label: Export
    Filename: Changes.xls
    But when I open it in excel, no data found is the only test showing in cell A1.
    Is there something else I need to do? I don't understand why it's not exporting my report - there is data on my screen in the report.
    Thanks,
    Dave

    Dave,
    Have a look in my blog:
    http://deneskubicek.blogspot.com/2007/03/csv-export-problem.html
    There is an explanation on how to avoid that.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Getting no data found error while CSV download

    Hi,
    I have a report generated from the PL/SQL returning the query and I enabled the CSV Download option. But, when I try downloading the report contents using CSV download option, the excel sheet contains message "no data found". I enabled sorting and sum on few columns. Is it anywhere related to CSV download? Any solution would be really helpful..
    Thanks,
    Prabhakar

    Thanks for the help!! yep, it is indeed the wrong session state value. In the report, I was modifying the value to display the report, hence when CSV download is given, it was taking wrong session state value. So, giving "no data found" error. Probably, this may help some people.
    Regards,
    Prabhakar

  • No data found for Report

    Hi, I am new to Apex so please be clear with your answers.  We use a report based on a view when I access the report in the application I receive "no  data found" error.  If test the query in SQL commands it works fine.  If I check the view in object browser I see data.  I am perplexed as to why I receive a no data found error on the front end.  Any suggestions will be greatly appreciated.  Thank you in advance.
    Apex Version:   4.1.0.00.32
    Newbie tryin to learn(Texas twang)

    Thank you for your quick response!  Sometimes as a tech we look for the hard answer vs the easy one.   One of the binding variables(P0:PLANS) was misspelled after correcting the issue we were able to see the report.

  • No data found on Report based on a collection

    Hi all,
    I got a page with this 'after-header' process :
    begin
      if(apex_collection.collection_exists(p_collection_name => 'users')) then
        apex_collection.delete_collection(p_collection_name => 'users');
      end if;
      apex_collection.create_collection_from_query(
        p_collection_name => 'users',
        p_query => 'select user_name from demo_users');
    end;And then, I try to display the collection data in a report, like with this SQL statement.
    select *
    from apex_collections
    where collection_name='users'I got a 'No data found' for this report... I try this very basic example to understand collections, and I don't know what I'm missing...
    Thanks a lot
    Dovik

    Hi,
    No problem
    Check collection naming
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/advnc.htm#CIHHCGGD
    Have nice day
    Br,Jari

  • Hide button if no data found in report

    Hello,
    I am using oracle 10g apex 3.2
    I am displaying a report with print button.
    What i want is if the report doesn't show any data i.e. no data found then i want to hide print button.
    How to do this.
    thanks
    Swapna

    Hi Swapna,
    In the print button's Condition, select condition type as 'EXISTS (SQL Query returns atleast one row)' and in expression1 copy and paste the report SQL.
    Regards,
    Sagay

  • How to display a message when no data found in report

    Hi all
    i have report with few user parameters
    when i run the report and no data found then i want a message
    Please Guide
    thanks And Reagds
    Vikas Singhal

    Hi,
    one solution is to
    1) create a summary column CS_COUNT where you count the number of records returned by your query (Function: count, Source:any field of your dataset Reset at:Report)
    2) create a text area where you say for example "No records found...", and enclosing it in a frame.
    3) Create format trigger for the frame like
    IF :CS_COUNT = 0 THEN
    return (TRUE);
    ELSE
         RETURN (FALSE);
    END IF;
    OR, if you launch your report from a form and you want a popup message, you can create a before report trigger like:
    if :CS_count = 0 then
    srw.message(1000, 'your message');
    raise srw.program_abort;
    return(false);
    else
    return(true);     
    end if;

  • Strange problem: ORA-01403: no data found when report has a sort

    Hi,
    I have a report which behaves very strangely but only for one particular user. The report runs fine when no columns are set as sort-by in the report attributes. As soon as I try and set a column to sort (any column, it doesn't matter) this user gets the error message:
    failed to parse SQL query:
    ORA-01403: no data found
    appear where the report should be on the page. The rest of the page displays OK. No other users are affected. If I remove the sort then the report is OK for this user (unsorted though!)
    The report is a structured query with custom column headings, nothing unusual, quite basic. I have tried exporting and reimporting the page but it doesn't fix it. Same behaviour for this particular page in our test system as well.
    I could rebuild the page but I'd rather know what is wrong in case it happens to some other region.
    Thanks,
    Steve

    Steve,
    The reports engine stores the sort settings in the user preferences. This is done so that when you return to a report, it maintains the earlier sort settings. Like in your response to the HTML DB studio posting, you would keep your report sorted by "Created On" descending or ascending even when you come back another time. It's save to remove those preferences; all that's going to happen is that your users will see the report using the report's default settings the next time they go to that page. I will try to investigate this problem further, whatever additional information you can provide, will be helpful,
    Marc

  • 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.

  • How To use Arial (Cyrillic) font  in Reports 10g for PDF output

    Hi,
    My reports are in Arial (Cyrillic) font, but there are only hieroglyphes in pdf output. Is there a problem with fonts on Report Server or something else?
    My Report Server is 10g R2 (10.1.2.2) and OS is RHEL 4.
    I followed metalink notes 750805.1 and 356221.1 but it didn't help me.

    You also have to be careful with fonts. The font you download may be the same name, but a different font. Just because you find a Zurich BT font, does not mean it is the same. If you search on the internet, there are several sources of some Zurich BT fonts free. However, they may or may not be the same font. Editing is best done on the original document and not the PDF. One of the PDFs I found on the Landis site was only in Zurich font. I would think that the original file is available from the company and that should be the document you edit, not the PDF. It appears the original was created in InDesign (CS3).

  • Date Picker has to submit the default value after the page load???

    Hello All,
    I have 2 date pickers 'Start' and 'End' on a screen with report that has a where clause using above values. Start defaults to current date, End defaults to current month end date, I have another radio group with default to Monthly......
    Now when the page loads, I see the default values for 'Start' and 'End' date pickers but the report doesn't reflect those values. I added an on change dynamic action, and so when I change the value of 'End' date picker, it submits the page and now the values are reflected in the report........
    I tried creating another dynamic action > with event On Page Load.....and disable fire on page load, and to submit the page, this is causing an infinite loop of submitions........can you please tell me how to achieve this with out putting an exclusive submit button on the Screen.......
    Thanks for your time.
    DK

    user12296343 wrote:
    Hello All,
    I have 2 date pickers 'Start' and 'End' on a screen with report that has a where clause using above values. Start defaults to current date, End defaults to current month end date, I have another radio group with default to Monthly......
    Now when the page loads, I see the default values for 'Start' and 'End' date pickers but the report doesn't reflect those values. I added an on change dynamic action, and so when I change the value of 'End' date picker, it submits the page and now the values are reflected in the report........
    I tried creating another dynamic action > with event On Page Load.....and disable fire on page load, and to submit the page, this is causing an infinite loop of submitions........can you please tell me how to achieve this with out putting an exclusive submit button on the Screen.......
    Thanks for your time.
    You don't have to submit the page here.
    What version of apex?
    What report is it? i.e. Interactive report/Classic report
    Depending on your version of apex you can simply use the Page Items to Submit attribute to set the session state

  • Can't see my PDF after the first page when i put the security on!

    i have a PDF file protected by password that cause me problems.
    If i put security by password on this PDF, and i look at the infos, i found : Encrypted with Acrobat Distiller 9.2.0
    But if i don't secure it by password, i got Adobe Distiller.
    But the real problem, with security, when i try to see my PDF on a website, il looks like this
    If i don't put the security, it is ok, i can see the other pages. In my example, all what you see is the end of the first page, on 30 pages.
    Am i the only person with this problem? I'm looking for another version of my acrobat to see if the "distiller" is the same and if i'll get the problem again.
    Thanks

    Moving to Acrobat forum.

  • Help - Trying to email 2 page PDF but only first page is attaching

    I have been trying to email a two page pdf (resume) but each time in Mail, it only attaches the first page (actually, it doesn't attach it but paste the first page of the pdf into the document).
    I've tried this three different ways, all with the same result: 
    1) First I created the document in Pages '09, then saved it as a PDF.  When I open up the PDF itself, the entire two page document is there.  When open on the PDF document, I click the share button, select mail, and when a mail window opens up, only the first page of my resume appears pasted into the body of the email.
    2) I open a new window in Mail, I click on the paperclip to attach a document, I select the two page PDF I created, and once again, only the first page appears pasted into the body of the email.
    3). When on the Pages version of my resume, I go to File, then Print, and select "Mail PDF" from the PDF drop down menu...once again only page 1 is pasted into the body of the email.
    I also tried this with a different document and once again only the first page gets pasted.
    I am running Mac OSX Version 10.9
    Thanks in advance for your insight.

    Are you sure that it is only the first page? It is a file and usually only the first page shows, but the rest are there.
    What happens when you double click on the pdf in the email?
    Peter

  • Printing an ALV Report: Header to be printed on first page only

    Hi All,
    I was just wondering if there's a way such that the header of an ALV report appears on the first page only when the report is printed out?
    Thanks for your replies.
    Edited by: Chris Estanislao on Sep 21, 2010 4:22 AM

    Hi Chris,
    Which ALV technique will you use to print out?? (LIST, GRID or something else...).
    Please give us more information.
    Thanks,

Maybe you are looking for

  • Hi Expert

    Hi experts, I want complete coding for interactive report in alv and please demonstrate code for user-command and pfn and it is possible to use 'AT LINE-SELECTION ' in ALV report if so how? if not why? please help.

  • What do I do if my Mac doesn't support installing Windows from an external USB drive or DVD?

    I have connected now: an external hardrive with windows support software, and a disc with Windows 7 ISO files on it. I have tried to run bootcamp assistant, but when I am given the first dialogue box titled "select tasks", I am not given the first op

  • Acrobat X crashes directly after completing first-side scan from Canon MF4570DN (both usb & network)

    Hi all, There was a time when, blissfully, scanning via Acrobat X Pro worked perfectly. Around 6 months ago, Acrobat X Pro crashes directly after completing the first side scan for whatever documents I have placed in the Automatic Document Feeder (or

  • Has anyone had any problem with Linksys?

    I haven been trying to connect to my Linksys with speedbooster and I can't figure it out. My entire life I have never used an apple computer. I have called the Linksys support people and they tell me the same thing: "We don't provide support for appl

  • Known networks not recognizing

    Below is a post from Mac Rumors, but it discribes my problem perfectly.  BTW: Mac Rumors did not solve the problem on the thread located here: http://forums.macrumors.com/showthread.php?t=1408213 Every time I open my MacBook Pro it requires that I se