Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Oracle Apex 4.2.4 cannot create PDF

user3216556Mar 6 2014 — edited May 20 2014

I Cannot create PDF reports via Apex using.

1)I have installed Oracle XE, updated Apex to Application Express 4.2.4.00.08

2) In Instance Settings set report printing to Oracle APEX Listener

3) Created a basic report of demo emp table

4) Set enable reporting printing = "yes"

When I run the report and select pdf I get error message not a vaild pdf.

Open file in wordpad and it contains, below data so does not appear to be converting from XML to PDF.  Any ideas what I'm doing wrong!!:

<?xml version="1.0" encoding="UTF-8"?>

<apexListnerFOP>

<DOCUMENT>

   <DATE>07/03/2014</DATE>

   <USER_NAME>STAFF</USER_NAME>

   <APP_ID>101</APP_ID>

   <APP_NAME>Ridgway Library</APP_NAME>

   <PAGE_ID>12</PAGE_ID>

   <TITLE>Report 1</TITLE>

   <REGION ID="2221822669173184">

      <ROWSET>

         <ROW>

            <EMPNO>7369</EMPNO>

            <ENAME>SMITH</ENAME>

            <JOB>CLERK</JOB>

            <MGR>7902</MGR>

            <HIREDATE>17/12/1980</HIREDATE>

            <SAL>800</SAL>

            <COMM></COMM>

            <DEPTNO>20</DEPTNO>

         </ROW>

This post has been answered by user3216556 on Mar 6 2014
Jump to Answer

Comments

baftos
Not sure if this will help, but try to consume() the events.
darrylburke
Note: This thread was originally posted in the [Java Programming|http://forums.sun.com/forum.jspa?forumID=31] forum, but moved to this forum for closer topic alignment.
darrylburke
It's this second-long delay which is the anomoly. I'm guessing it results from the fact that the KeyEvent is not being fired constantly or immediately after the release of the first key.
That's the usual key-repeat behavior on most OSs.
I'm wondering if there's a way to get rid of the delay
Probably by setting booleans in the keyPressed(...) / keyReleased(...) and polling those booleans at equal intervals using a Timer.

db
843807
>
Probably by setting booleans in the keyPressed(...) / keyReleased(...) and polling those booleans at equal intervals using a Timer.
>

I did something similar to this. Thanks.
1 - 4
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jun 17 2014
Added on Mar 6 2014
2 comments
2,220 views