APEX 3.0 PDF REPORT

Hi all
I installed APEX 3.0 (no errors) but i have a problem printing.
It seems that i am missing something. whenever i tried to print i am getting the following message:
Acrobat could not open 'obe_ projects[1].pdf' because it is either not supported file type or the file has been damaged
Pls Help. Thanks
Ribhi

Scott:
I have now tried this with Oracle Business Intelligence Enterprise Edition 10.1.3.2 and it worked without issues. We’re currently updating our PDF Printing configuration document:
http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html
So you’ll find more details about this on that page soon. Im short though, I downloaded the two CDs, ran the installer (I’m using Windows XP) and selected to only install BI Publisher. Once the install completed, and I rebooted my server, all I had to do was start up OC4J (which can be done from the BI Publisher folder in the Windows start menu). And then enter the host address, port and servlet information (/xmlpserver/convert) into my Application Express instance settings and everything worked just fine afterwards.
Regards,
Marc

Similar Messages

  • Apex 4.1 PDF report generation

    On Apex 4.1 when I attempt to download a report in PDF mode, it appears that it downloads,
    but when I go to open it up I get an error that the file is of the wrong type or possibly corrupt.
    Upon opening the file in Text editor, there is an error
    Ora-20001
    ORA-20001: The printing engine could not be reached because either the URL specified is incorrect or a proxy URL needs to be specified.
    What is this all about. DId I miss something in the install.
    It can generate HTML and eXcel just fine just not PDF.
    Any help appreciated.
    greG

    Greg,
    This error typically indicates that something is wrong with your print engine configuration. Did this work before, or is this the first time you're trying this? Also, are you using BI Publisher or Apache FOP? And have you enabled networking services if you're using 11g?
    Details can be found here:
    http://www.oracle.com/technetwork/developer-tools/apex/application-express/configure-printing-093060.html
    Regards,
    Marc

  • Can BI Publisher comes with EBize be used to print pdf report from APEX?

    Hi,
    We have EBiz suit (11.5.10) with APEX 3.2. Both are working fine. I want to enable APEX to develop PDF reports. I would like to know whether I can use BI Publisher comes with EBiz to print PDF from APEX.
    If yes where can I get instructions on how to setup APEX with BI Publisher with EBiz.
    TIA
    DineshS

    I'm not aware of the BIP/XMLP Web Services being available in the embedded EBS version (XML Publisher 5.6.3). But you might be able to create your own wrapper to the XMLP APIs in EBS.
    Regards,
    Gareth

  • Altova StyleVision 2013 - APEX PDF Report

    Hello,
    I read this tutorial for create report : http://www.oracle.com/technetwork/developer-tools/apex/learnmore/custom-pdf-reports-1953918.pdf
    But I have a problem when I create report for APEX with Altova StyleVision.
    I use Oracle XE 11gR2, APEX 4.2 and APEX Listener 2.0.4.
    In APEX, I created a state with 14 queries, and I exported in XML format.
    I can built four tables (from 4 different queries / rowset) in my report, and PDF printing works.
    But I have a problem when I want to add a fifth query (table) in my report :
    When I generate the PDF document from my APEX application, I have the following error message :
    "Error displaying the error page ORA-01403: No data found ORA-06502: PL / SQL: numeric or value error"
    Do you know why I get this error message when my report has 5 queries ?
    The number of queries in a PDF report is limited?
    Thank you very much for your help ! And sorry for my english ;-)

    Thank you for your answer !
    This is what I checked :
    APEX is configured to print via Listener --> ok !
    XSLT is the 1.0 version --> ok !
    5th query actually produces data --> ok ! If I create a new Report (with Altova) with only this query, the PDF works.
    Your Report is assigned to the correct Report Layout --> ok !
    Making a new Report Layout in APEX using the same XSLT file --> same error !
    Build a new XSLT in StyleVision using the new XML sample data --> same error !
    Downloading the XML from within the Report definition (ie 'run the report but download XML instead of making PDF') --> here there is maybe an error. When I open with a text editor the xml file downloaded, it contains this : "String index out of range: -1". BUT when I do the same operation with a pdf file who works (only 4 queries), the xml file downloaded contains the same message (String index out of range: -1).
    I forgot to say that I use the trial version of Altova, and my APEX Listener run in Standalone mode.
    Do you have any other answer to my problem ?
    Thank you very much for your help !

  • PDF report Page Size

    I am using BI publisher in APEX to generate PDF report. Data is displayed only on paper size 8.5 X 11 regardless any paper size I select i.e. Letter 8.5x11, Legal 8.5x14, Tabloid 11x17, Custom 8.5x20.

    You need to specify the paper size in the RTF template. Iif you are using RTF templates? If not its an APEX issue and needs to be addressed by them
    Tim

  • How to Create new PDF Report in ORacle Apex3.2 without having XML Publisher

    I am an Apex developer , my requirement is to develop the PDF file from Apex 3.2 with out using Oracle BI Publisher.
    Can anyone let me know the possibility??
    Thanks,
    Dhana

    Dhana,
    What reports are you trying to generate? I believe Apex can generate PDF reports out-of-the-box.
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/apex/r31/apex31nf/apex31rpt.htm
    APEX forum: Oracle Application Express (APEX)
    regards,
    Rownald

  • Complex pdf reports

    configuration
    apex 4.2.3
    listener 2.0.5 (configured for Listener printing)
    DB 11.2.0.3
    problem
    I'm following the whitepaper for developing a custom PDF (http://www.oracle.com/technetwork/developer-tools/apex/learnmore/custom-pdf-reports-1953918.pdf)
    I can get simple reports to work.
    Now, I'm trying to create a more complex report.
    Each row of data contains (the equivalent of) an embedded table.
    I can easily create an XML document for the embedded table.
    But, when I 'download' the "XML Data" for testing, the XML data is not what I am expecting.
    Example Report Query SQL
    with xml_results as (
      select deptno,
        xmlelement( "employees", xmlagg(
            xmlelement( "employee", ename )
        )) as xmldata
      from emp
      group by deptno
    select D.deptno, D.dname, d.loc
      ,X.xmldata emp_xml
    from dept D
    join xml_results X
      on (D.deptno=X.deptno)
    This produces the XML snippet similar to:
    <emp_xml>[data type not supported]</emp_xml>
    questions
    For the APEX developers:  Why is XMLType "not supported" in this context?
    I've changed X.xmldata to X.xmldata.getClobVal(), but, the data shows up "encoded". (ie "&lt;employees&gt;" instead of "<employees>" )
    Is there a way to prevent this?
    So, far, the only work-around I see, is to generate the XML data myself and use APEX_UTIL.GET_PRINT_REPORT()
    Does anybody have any other ideas?
    Thanks
    MK

    Are you married to using the APEX Listener based PDF reports?  If look at alternative products..I would suggest PL-jrxml2pdf (PL-jrxml2pdf / Wiki / Home)
    I have used it and find it to be a nice reporting toll.  Also like the gui report building tool it uses (IReports)..
    Thank you,
    Tony Miller
    LuvMuffin Software

  • Report Logo - Displays on HTML, not on PDF report  (Apex report_)

    Hi Gurus.
    I thought I'd report this here, as we are having a BI Publisher error, and I'm not getting any help on the Apex subforum.
    +We have a system environment setup where we have BI Publisher Enterprise and Apex 3.1.2 talking together to create PDF reports on a Oracle 10g database (R2 I think, I'm uncertain). As part of a business requirement, depending on what project you are looking at within our apex application, when printing a report you see a logo specific to the project. We have already developed this using a RTF template with a dummy image embedded, and url:{concat(.//URL,.//PROJECT_ID)} in the Alternative Text field of the Web tab of the Format Picture dialogue.+
    This worked fine when using the RTF templates as Report Layouts within Apex and as templates within a BI Publisher report.
    However, now logos aren't appearing.
    We are on  BIP 10.1.3.2 according to the Help File, and we are running Apex 3.1.2.00.02 on Dev and Apex 3.1.1.00.09 on test and prod, however none of these environments are outputting logos in the PDF reports.
    Curiously, if I go into the BI Publisher interface and ask for the report to be outputted as HTML, the image shows. Running the HTML version of the report from Apex also shows the logo -- but the logo isn't showing in the PDF reports.
    As I continue trouble shooting, any assistance would be greatly appreciated.

    If anyone could give us any insight on this, it would be appriciated.
    I'm unsure if its a permissions problem with the PDF seeing the image, or something related to server setup. We currently have a redirect in place to production that doesn't include the :7777 in the URL, and for some reason, if the G_URL for the image is changed to this portless URL, the image is embedded. However, this redirect was in place for another application, and will soon be locked down, so is not available for a long term solution to this problem

  • How to print a BLOB (image) on a PDF report using Oracle APEX Listener as Print Server

    Hi,
    I use APEX 4.2.
    I have the following query as SQL text for a Report Queries in Shared Components:
    select
        customer_id,
        cust_first_name,
        cust_last_name,
        cust_street_address1,
        cust_street_address2,
        cust_city,
        cust_state,
        cust_postal_code,
        phone_number1,
        phone_number2,
        credit_limit,
        cust_email,
        filename,
        company_profile,
        -- customer_image,
        decode(nvl(dbms_lob.getlength(customer_image),0),0,null,
        '<img style="border: 4px solid #CCC; -moz-border-radius: 4px; -webkit-border-radius: 4px;" '||
        'src="' ||
        apex_util.get_blob_file_src('P22_CUSTOMER_IMAGE', customer_id) ||
        '" height="75" width="75" alt="Photo Customer" title="Photo Customer" />') customer_image,
        mimetype,
        image_last_update
    from
        demo_customers;
    I am unable to have the image printed on the PDF report. Even when the P22_CUSTOMER_IMAGE is defined as session state item.
    Does someone knows how to print such image/BLOB in a PDF report?
    Thanks by advance.
    Kind Regards.

    Hi,
    Indeed, I would need a custom layout.
    Unfortunately, it seems (according to this white paper) not possible with the APEX listener only. I would need a third pary tool. A pity...
    For me strange, that I cannot generate such a report having images or pictures in a pre-definied report layout... Maybe a future enahancement for Oracle.
    Kind Regards.

  • Create PDF report with APEX and Oracle 11g doesn't work

    Hi everyone,
    I have a problem with the downloading of PDF reports from APEX with Oracle 11g.
    When I try to download a PDF, Acrobat Reader says it can not open the file.
    I have done the same test in an environment with APEX and Oracle 10g and it works perfectly.
    Does anyone know if there is a known bug for version 11g.
    Thank you very much.

    Hi Munky,
    I open the generated file the Notepad++ I can read the next message:
    *<HTML><HEAD><TITLE>500 Internal Server Error</TITLE></HEAD><BODY><H1>500 Internal Server Error</H1>OracleJSP:*
    An error occurred. Consult your application/system administrator for support. Programmers should consider setting the init-param <code>debug_mode</code> to "true" to see the complete exception message.</BODY></HTML>
    I have not idea can I solve the problem.
    Have you got any solution for this problem??
    Thank you so much.
    Victor Muñoz.

  • Pdf reports in APEX

    Hi,
    I need to generate pdf reports using interactive reports feature in oracle APEX. But everytime, I am getting error like print server is not configured and like this. Can any one help me over this?
    Is there any other way of generating pdf reports in oracle APEX without using pdf printing.
    Also,do we need BI publisher for simple/standard pdf printing? Please suggest.
    Thanks and Regards
    VG.

    While you can enable simple APACHE FOP printing in APEX 3.1 and beyond, it is not easy and not very robust. Oracle recommends BI Publisher for a reason (besides wanting to make money!)
    Here are links with information:
    http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html
    Marc has an excellent APEX Blog that includes this:
    http://marcsewtz.blogspot.com/2008/06/heres-another-posting-on-pdf-printing.html
    Marc made this presentation - slide 15 shows the APACHE FOP architecture:
    http://www.nyoug.org/Presentations/2008/Dec/Sewtz_Advanced%20Printing.pdf
    I am sure you can find more info if you Google. But I will share our experiences. We installed APEX 3.1 but were not going to be buying BI Publisher. We had previous success with integrating Oracle Reports (web) into APEX 3.0 and liked that but wanted to explore the APACHE FOP solution mentioned in the APEX documentation.
    We installed APEX 3.1 in an Oracle 10g Database. We used the included HTTP Webserver (Apache, I think?) that comes with APEX then installed the APACHE FOP piece in an OC4J container. We aren't Apache experts - more DBAs - so maybe people with lots of experience in OC4J and Apache would have an easier time. We did not and were not able to get much support from Oracle Support. They kept citing BI Publisher solutions - which we weren't using.
    Anyway, we get the whole thing installed and running to find out that APACHE FOP has limitations (memory issues, rendering issues, layout issues). I think if we learn XSLT coding enough to make custom layouts, we might get past the layout issues but the memory usage is of more concern.
    We are now revisiting Oracle Reports. BI Publisher might be great but we already own Oracle Reports licenses and don't have a budget to purchase something new.

  • Does creating Excel,Word,PDF reports & printing in Apex need licensing ?

    I am new to this Apex 4.0
    I have installed the Apex 4.0 with Oracle 10g database.
    Now using Apex if I create any web application, and develop some reports in the web application.
    1) Now to do the printing of the reports in Excel,Word,PDF does Apex need some other components to be installed ?
    2) Does those components needs licensing ? or are they free like Apex 4.0 ?

    Hi,
    Yes you need other components
    http://www.oracle.com/technetwork/developer-tools/apex/configure-printing-093060.html
    Some of solutions need license, like BI Publisher.
    There is also free solutions using e.g. Cocoon, Jasper reports ...
    http://carlback.blogspot.com/2007/03/apex-cocoon-pdf-and-more.html
    http://www.poveravoce.net/blog/?p=85
    http://ubuntuforums.org/showthread.php?t=1004742
    http://daust.blogspot.com/2010/09/jasper-reports-integration-v1100.html
    ANNOUNCE:JAPEX Open Source PDF reporting & Blob Download/Flash upload
    Regards,
    Jari

  • Logo in Apex PDF report

    Hi Folks,
    I have created a classic report in Apex. Have enabled the print PDF link on the report for the business users to download it in a PDF format. Is is possible to put a logo in a downloaded PDF from the report?
    Thanks
    Harry

    Hi Peter,
    Note that this is a solution that I haven't tested but I have investigated it to the extent that I see no reason why it wont work.
    One option to get better looking pdf reports is to go down the report queries/layouts path in the shared components part of an application . The generic pdf printing used in Apex uses a generic XSL-FO layout that can be edited or replaced. Doing this manually would be quite difficult but there are several commercial XSL-FO editors out there on the market that should make this a relatively easy task. Google "XSL-FO editor" and you will see a range of products from about $50 upwards and this is a developer license, meaning you may need only one or two licences.
    Regards
    Andre

  • Generating PDF Report and Mailing from APEX through DBMS_SCHEDULER job

    Hi,
    We have a requirement to generate pdf reports and mail them from our apex app through a DBMS_SCHEDULER job. The DBMS_SCHEDULER job calls a PL/SQL procedure which has the logic for calling the APEX_UTIL.GET_PRINT_DOCUMENT API (Function Signature 3) passing the application_id, the report_query_name and the report_layout_name  to generate the pdf report output. The APEX_UTIL.GET_PRINT_DOCUMENT call is returning NULL when called from the DBMS_SCHEDULER job (It doesn't throw any exception as well!). But the same procedure when called from an APEX App Page Process that is invoked on an event like a Button click, the API returns the PDF report output.
    I am also setting the APEX workspace security_group_id at the beginning of the PL/SQL procedure as follows:
    l_workspace_id := apex_util.find_security_group_id (p_workspace => 'MY_WORKSPACE');
    apex_util.set_security_group_id (p_security_group_id => l_workspace_id);
    Any idea on what might be going wrong? Any alternative ways to generate the report output in the PL/SQL procedure?
    Thanks & Regards,
    Sujesh K K

    I was able to do a workaround for this issue by rebooting the DB.
    As per ID 579281.1, this is a bug in 11.1.0.6 and we need to upgrade the version to 11.1.0.7 or apply a one -off patch.
    Thanks,
    Arun

  • Custom Report Layout in APEX 3.0 PDF

    How much freedom do we have when developing a custom report layout using BI Publisher when we create the template file using the Word XML add-on?
    Why I am asking is, I am trying to replicate several Crystal based reports that use multiple lines of for data. They group on several columns and display the grouped data on separate lines in the report.
    Grouping 1 Line one has customer detail information
    Next grouping 1 or more lines are provider of service line information
    Last Line count of detail lines for customer
    Or would I be better off porting these reports to Oracle Reports?
    Thank you!
    Tony Miller
    UTMB/EHN

    Marc, I was able to create reports based on a layout and a report query...Is it possible to let the end user (not apex developers) download the report layout, make modifications and load it again. They will only be changing the text and very rarely will modify the fields..
    Thanks
    Ashlee
    update: i found the following logic in the f4000 app on page 1405 for download
    declare
    l_report_document blob;
    l_file_ext varchar2(255);
    l_mime_type varchar2(255);
    begin
    for c1 in (
    select *
    from wwv_flow_report_layouts
    where id = :P1405_ID
    ) loop
    if c1.report_layout_type = 'RTF_FILE' then
    l_mime_type := 'application/rtf';
    l_file_ext := 'rtf';
    else
    l_mime_type := 'application/xml';
    l_file_ext := 'xml';
    end if;
    l_report_document := wwv_flow_utilities.clob_to_blob(c1.page_template,wwv_flow_lang.get_db_charset);
    sys.owa_util.mime_header (l_mime_type ,false);
    sys.htp.p('Content-Disposition: attachment; filename='||lower(replace(c1.report_layout_name,' ','_'))||'.'||l_file_ext);
    wpg_docload.download_file( l_report_document );
    end loop;
    end;
    and 1406 for upload
    declare
    l_report_layout clob;
    l_report_layout_id number;
    begin
    for c1 in (
    select blob_content from wwv_flow_files
    where name = :P1406_LAYOUT_FILE
    ) loop
    l_report_layout_id := wwv_flow_id.next_val;
    l_report_layout := wwv_flow_utilities.blob_to_clob(c1.blob_content);
    insert into wwv_flow_report_layouts (
    id,
    flow_id,
    report_layout_name,
    report_layout_type,
    page_template
    ) values (
    l_report_layout_id,
    :FB_FLOW_ID,
    :P1406_REPORT_LAYOUT_NAME,
    'RTF_FILE',
    l_report_layout
    end loop;
    end;
    are these the tables/apis i could use ?

Maybe you are looking for

  • Quicktime player produces incorrect codes PRETTY DESPERATE PLEASE HELP

    I have tried to upload a movie to my webpage utilzing the quicktime player export to webpage.  I would really appreciate someones help, I have been going around and  around with this problem for a month now, I am getting pretty desperate. Use this co

  • Files visible in Windows Explorer but not in Finder

    Hi, I'd burned a dvd around a year back with around 30 audio files on a PC. I now use a Mac. All the files in the dvd are visible on any Windows machine, but only 4 of the files are visible in the Mac Finder. Could somebody explain how can I access a

  • Rows to Coulmns

    hi guys, I am having trouble converting rows to columns. Read a few articles on Pivot and Decode but still could not figure it out. For eg. Table info Unit_no.                       Unit_id 001                                xyz 002                  

  • Global Application Settings? Mail calls wrong browser, etc

    I don't understand what determines which app is called when I click on a URL in an email? It still brings up Firefox even though I use only Opera now. And in Finder I have .html files set to open with TextWrangler, so why is that different? And in Op

  • Allow the "Select a Color" eyedropper to select from the image.

    For example: you want to enhance the sky with blue...  it takes several attempts to get a natural oxygen blue from the rainbow box.  The ability to select that color direct from the image would give quicker and more accurate results.