Error in apex report Ora-20001 The printng engine could not be reached

I created a report query. When I test it I got the following error.
Ora-20001 Report engine colud not find the requested url.

hi All,
i want to have Print Option Enabled on my Reports
i did as mentioned in the Document
Configuring Report Printing in a Full Development Environment
To configure the printing of reports in a full development environment:
1. Log in to Oracle Application Express Administration Services. See "Logging in to
Oracle Application Express Administration Services" on page 2-3.
2. Click Manage Service.
3. Under Manage Environment Settings, click Instance Settings.
4. Scroll down to Report Printing:
5. For Oracle BI Publisher, select one of the following:
– Standard Support - This is the default setting. Standard Support enables you
to print report regions and report queries using either the built-in templates
provided with Oracle Application Express or other XSL-FO compatible
formats you provide. This setting does not support RTF (rich text format).
Standard Support provides declarative formatting of report regions and report
queries with basic control over page attributes, including orientation, size,
column heading formats, page header, and page footer.
– Advanced Support - Requires a valid license of Oracle BI Publisher (also
known as Oracle XML Publisher). Advanced Support provides you with all
the capabilities of the Standard setting plus the ability to define RTF-based
report layouts developed using the BI Publisher Word Template Builder.
To learn more about installing and configuring Oracle BI Publisher, see PDF
Printing in Application Express 3.1. See:
6. For Print Server Protocol, select the protocol that the print server uses.
7. For Print Server Host Address, specify the host address of the print server engine.
8. For Print Server Port, define the port of the print server engine. By default, this is
set to 8888 when the report server is installed.
9. For Print Server Script, define the script that is the print server engine. The default
setting is:
/xmlpserver/convert
10. Click Apply Change
After Configuring the Print Option,
i am having Oracle 10g Releae2 on Hp- Unix, and Apex 3.1
i didnt Install Oracle BI publisher
i want to Enable Print Option on my Reports
when i try to give the Print a Report
i am getting the Below Error
<div id="report_7026503216111526_catch"></div><pre>report error:
ORA-20001: The printing engine could not be reached because either the URL specified is incorrect or a proxy URL needs to be specified.</pre>
please Help me out
Many thanks

Similar Messages

  • ORA-20001: The printing engine could not be reached because either the URL

    Hi all,
    created a report and tried to have a pdf report
    using this link
    http://www.oracle.com/technology/obe/apex/apex31nf/apex31rpt.htm
    when i did a sample with apex.oracle.com
    it is working fine.
    but in my site
    when i click the print button i am getting an error
    <div id="report_4897903101326173_catch"></div><pre>report error:
    ORA-20001: The printing engine could not be reached because either the URL specified is incorrect or a proxy URL needs to be specified.</pre>
    Using : Oracle-Application-Server-10g/9.0.4.0.0 .
    Oracle-HTTP-Server.
    I am working on Remote server. How to find whether the printserver is configured or not?
    Is there any query to check it out?
    can any one please help? I really need to get this work.
    bye
    Srikavi

    hi guys . i have the same problem and i dont know how to fix it . I use APEX on my PC and i just install BI Publisher 10.1.3.2.1 and made the settings in APEX as follows:
    Print Server : Advanced (requires BI Publ...)
    Print Server Protocol: HTTP
    Print Server Host Address: http://192.168.1.2/ ---> IS THIS MY HOST ? when i start the BI Publisher Server the address is" http://192.168.1.2:9704/xmlpserver"
    Print Server Port :9704
    Print Server Script: /xmlpserver/convert
    Now when i click PRINT and choose to open or save it on my pc inside the document ( word/html ) it gives me error "ORA-20001: The printing engine could not be reached because either...".if its PDF i can open it becouse of some problem.Sorry for my english i hope you uderstand what im trying to say.thx in advance

  • ORA-20001: The printing engine..Is this related to a BIP licensing issue?

    Hello all,
    The error "ORA-20001: The printing engine could not be reached because either the URL..." happens in 2 cases:
    <pre>
    1. When our BIP is down or being bumped
    2. As an APEX administrator, in workspace environment settings, the print server is set to OFF.
    </pre>
    I'm thinking that this is a licensing issue but I need some clarification on what is causing the error, because all we are trying to do is bring up a PDF report that a user can open or save. BIP is not involved at this point. Is it because the report was developed using BIP that APEX needs BIP up? How does APEX even know the report was developed using BIP? Were are using APEX 3.2.1.00.12 and BIP 10.1.3.4.1
    The error happens when a user clicks on a PDF icon that calls an "After Submit Process". The following is the code and the report that was created in BIP is loaded into APEX with a "Named Columns (RTF)" layout type.
    Alex.
    declare
      l_xml                         clob;
      l_template                    clob;
      l_request_blob                blob;
      l_response                    blob;
    begin
       ...call up a stored proc to populate l_xml with report data
      -- Fetch template
      select page_template
      into   l_template
      from   apex_030200.wwv_flow_report_layouts
      where  flow_id = :app_id
      and    report_layout_name = 'pdf_report';
      -- Convert CLOB to BLOB
      l_request_blob := wwv_flow_utilities.clob_to_blob(l_xml);
      -- Call unsupported and undocumented APEX function
      l_response :=
        apex_030200.wwv_flow_print_util.convert(
          p_report_data   => l_request_blob,
          p_template      => l_template,
          p_template_type => 'rtf',
          p_output        => 'pdf'
      -- Set correct mime type and download response                                           
      owa_util.mime_header('application/pdf', false);
      htp.p('Content-length: ' || dbms_lob.getlength(l_response));
      htp.p('Content-Disposition: attachment; filename="Claim_details.pdf"');
      owa_util.http_header_close;
      apex_application.g_page_text_generated := true;
      apex_application.g_unrecoverable_error := true;
      wpg_docload.download_file(l_response);

    See, http://www.oracle.com/technetwork/developer-tools/apex/configure-printing-093060.html
    http://download.oracle.com/docs/cd/E17556_01/doc/install.40/e15513/otn_install.htm#CBHBJDDE
    (excerpt copied here, for you convenience)
    7. Enabling Network Services in Oracle Database 11g
    By default, the ability to interact with network services is disabled in Oracle Database 11g release 1 (11.1). Therefore, if running Oracle Application Express with Oracle Database 11g release 1 (11.1), use the new DBMS_NETWORK_ACL_ADMIN package to grant connect privileges to any host for the FLOWS_030100 database user. Failing to grant these privileges results in issues with PDF/report printing, specifically, you will get the following error message:
    ORA-20001: The printing engine could not be reached because either the URL specified is incorrect or a proxy URL needs to be specified.
    Follow the steps mentioned in the Oracle Application Express Installation Guide, Enabling Network Services in Oracle Database 11g. Also refer to the troubleshooting section in case you receive an ORA-44416: Invalid ACL error after running the previous script.

  • BEA-141151 The admin server could not be reached at ...

    I have been at this for 3 days now... I created a new ManagedServer, but I'm not able to make it connect to the Admin server.
    The Admin server is running and listening on port 5306. I can connect to the Admin Console (web).
    I can also connect to the Admin server via WLST, using this command: connect('operator','operator01','t3://localhost:5306')
    However, when I try to run the managed server from a script, it does not see the Admin server. This is the command I run:
    java -Dweblogic.Name=ManSer1 -Dweblogic.management.server=t3://localhost:5306 -Dweblogic.RootDirectory=<path to my domain> weblogic.Server
    This is the error I get:
    <BEA-141151> <The admin server could not be reached at http://localhost:5306.>
    I believe it's trying to connect using "http", because I've never actually connected in the past. Here is a website explaining this: http://download.oracle.com/docs/cd/E17904_01/web.1111/e13749/weblogicserver.htm#i1031832
    Note: Regardless of which protocol you specify, the initial download of a Managed Server's configuration is over HTTP or HTTPS. After the RMI subsystem initializes, the server instance can use the T3 or T3S protocol.
    I'm not sure what else to try... Firewalls are not in play, since this is traffic moving around on the local machine. I'm running on SunOS. Weblogic is version 9.2 MP3.
    Appreciate any help.

    Is the NodeManager , AdminServer running ?The NodeManager is not running. Is it required?
    Also, I haven't closed the command prompt.
    I noticed the issue when I tried to deploy my project. Connected to Localhost/7001 but in the deploy project window, I dont see any soa_server instance
    running. Also, in the console the soa_server status is shutdown.

  • The admin server could not be reached

    Dear All,
    I have oracle weblogic server running on red hat enterprise Linux, with one managed server. I created a self-signed certificate to access the admin server using SSL connection, after creating the certificate and start running the domain, The admin server run fine, but when i start running the managed server using
    $ ./startManagedWebLogic.sh osb_server1 https://server_ip:7006 i got that error, " The admin server could not be reached on https://server_ip:7006
    and the managed server running independence of admin server, as well as admin server can not establish jmx:t3 connection with the managed server on its SSL port
    also in admin server log i got this error
    <Sep 30, 2013 6:51:00 PM EET> <Warning> <JMX> <BEA-149504> <The adminstration server was unable to establish JMX Connectivity with the osb_server1 at the JMX Service URL of service:jmx:t3://172.17.11.13:8011/jndi/weblogic.management.mbeanservers.runtime.>
    how can i resolve this error?
    thanks in advanced 

    Hi John,
    Thanks. Notable errors in this log are:
    Failed to connect.[Root Cause: Connection refused ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    Native Directory is not reachable. Will try to re-connect after 3 seconds... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    Attempting to connect to Native Directory: Retry Count: 10 com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    Failed to connect to native directory. com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    Any ideas?
    Thanks.
    Edited by: 960369 on 21-Sep-2012 02:56
    Edited by: 960369 on 21-Sep-2012 03:33

  • So i restarted my iPod and it is telling me that the activation server could not be reached! I don't know how to fix it. please help!

    So i restarted my iPod and it is telling me that the activation server could not be reached. And I don't know how to fix it. Please help!!

    Maybe this is applicable
    Try:
    - Powering off and then back on your router.
    - iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    - Change the DNS to either Google's or Open DNS servers
    Public DNS — Google Developers
    OpenDNS IP Addresses
    - For one user uninstalling/reinstalling iTunes resolved the problem
    - Try on another computer/network
    - Wait if it is an Apple problem
    This says the Activation Servers are on-line
    http://www.apple.com/support/systemstatus/

  • I've had a 4s for two years and today when i turned it on it told me my phone could not be activated becasue the activation server could not be reached.  what should i do?  i'm lost.

    i've had a 4s for two years and today when i turned it on it told me my phone could not be activated becasue the activation server could not be reached.  what should i do?  i'm lost.

    i do not know what this means.  I purchased the phone brand new two years ago and have never had any problems with it.  The message i am getting reads:
    "your iphone could not be activated because the activation server cannot be reached.  try connecting your iphone to itunes (which i don't have) to activate it, or try again over cellular connection in a couple minutes. (which i have tried several times with no success)  you can also try to activate using wi-fi connection (which i do not have).  if this problem persists, contact apple support at apple.com/support."

  • "Your iPhone could not be activated because the activation server could not be reached"

    It won't let me set up my phone due to the wifi- it keeps coming up with "Your iPhone could not be activated because the activation server could not be reached". The wifi is definitely working- I'm using it now! However, after you have entered the password for this wifi you do have to enter details into a portal but this hasn't popped up so I can't do it.  This is the wifi I have, any ideas? Thank you in advance

    3 possible causes for this message:
    1] activation server is actually down. Extremely rare occurrence and of very short duration
    if it happens.
    2] iPhone is jailbroken or hacked.
    3] computer the iPhone is hooked to has been used to jailbreak or hack iOS devices.
    For 1], try again. Try different wifi at friend's, school, public place like Starbucks or McDonalds.
    For 2] & 3], you are on your own. Google may provide some insight. Terms of Use for this
    forum prohibit discussion of hacked and jailbroken devices.

  • HT203175 My phone downloaded and installed the iOS 7, but it is telling me I can not activate it.  That the activation center could not be reached.  Please help!

    My phone downloaded and installed the iOS 7, but is telling me my phone cannpt be activated.  It says that the activation server can not be reached.  Please help!

    Hi again razmee209!
    It has been updating since your last message and it says there's another 6 hours to go, does this sound right or is there a possibility I've been sent a re-con and the update will slow down my new handset considerably?!

  • Query run in Sql prompt correctly but give error in APEX report ORA-01843

    Hi. all APEX user
    Last week I upgrade APEX 3.2 to 4.0.2 . Now i have a problem. PL/SQL reports which are working in APEX 3.2 not working in 4.0.2. Help me.....
    I am working on a mission critical application we have to upgrade there next month.
    Query code is :-
    select * from (
    Select pp.PAYMENT_DATE,pp.PATIENT_ID,p.name as name,pa.Service_Subtype,pp.PAYMENT_RECEIPT_ID,pa.Ward_Type,(pp.TOTAL_CHARGE-pp.discount) as amount ,pa.Service_Booked_By,pp.PAYMENT_COLLECTOR,
    case when pp.discount=0 then 1
    when pp.TOTAL_CHARGE = pp.discount then 3
    else 2
    end payment_status
    from patients p,PATIENT_Payment pp,PATIENT_account pa where p.patient_id = pp.patient_id and pp.patient_id=pa.patient_id and pa.SERVICE_SUBTYPE=pp.SERVICE_SUBTYPE AND pp.SERVICE_REGISTRATION_ID=pa.SERVICE_REGISTRATION_ID and
    (pp.PAYMENT_DATE>=to_date(:P15_date_from,'dd-mon-rr')) AND
    (pp.PAYMENT_DATE<=to_date(:P15_date_to,'dd-mon-rr'))AND
    (pa.GROUP_NAME=:p15_Group or :p15_Group='ALL') AND
    (pp.service_type=:p15_Service_Type or :p15_Service_Type='ALL') AND
    (pp.SERVICE_SUBTYPE=:p15_SERVICE_SUBTYPE or :p15_SERVICE_SUBTYPE='ALL') AND
    (pa.WARD_TYPE=:p15_Ward or :p15_Ward='ALL') AND
    (pp.PAYMENT_COLLECTOR=:p15_Collector or :p15_Collector='ALL')
    )order by pp.PAYMENT_DATE
    ) where payment_status=:p15_status
    order by 1

    In your query, you expect the date to have the format 'dd-mon-rr'. Have you checked if the format of the date-items is of this format?

  • HT4623 my ipad could not activate because the activation server could not be reached. tried to connect to itunes error about network was rese. how to fix?

    ipad could not activate because activation center could not be reached .  I plugged to itunes then something bout my network connection was reset

    Authentication servers are ALSO slammed right now.
    Give it some time.   
    download servers VS. authentication servers 

  • HT4623 I'm upgrading to ios 7, and I'm getting a message saying "Your iPhone could not be activated because the activation server could not be reached" I've gotten this now 10 times and have even tried activating it through iTunes which also did not work.

    I am trying to upgrade my phone to iOS 7, I restored it so it would download the new software and now it is telling me that it cannot be activated. How do I get around this?

    unfortunately no, a million people are attempting to update their phones right now, and thus activate them. Patience will have to suffice.
    For the future, I would recommend not updating essential work devices on the launch day

  • The repository "(null)" could not be reached when trying to commit in Xcode 4.5

    When i create a new project under Xcode 4.5 and try to commit it when it still blank, i got this message:
    Yes, i checked the option: Create Local Git repository for this project.
    Is it a bug in Xcode 4.5 ?

    Try restoring your iPhone from a different computer.
    kpower28
    Please mark this as "solved my problem" or "helped me"!

  • Error: A user with the specified SID could not be found in the domain.

    Hi All,
    I am getting a error as below,
    A user with the specified SID could not be found in the domain.
    Check the spelling of the account name 'domain\usersAMAccountName' and try again.
    -    at Microsoft.Office.Server.UserProfiles.UserProfileGlobal.GetSidFromAccount(String strAccountName, SID_NAME_USE[] IntendedAccountType, SID_NAME_USE& sidUse)
       at Microsoft.Office.Server.UserProfiles.UserProfileGlobal.GetSidFromAccount(String strAccountName)
       at Microsoft.Office.Server.UserProfiles.UserProfileGlobal.GetSidFromAccount(UserProfileApplicationProxy proxy, Guid partitionID, String strAccountName, Boolean isWindowsAccount)
       at Microsoft.Office.Server.UserProfiles.UserProfile.set_SID()
       at Microsoft.Office.Server.UserProfiles.UserProfile..ctor(UserProfileManager objManager, String strAccountName, String strPreferredName)
       at Microsoft.Office.Server.UserProfiles.UserProfileManager.CreateUserProfile(String strAccountName, String strPreferredName)
       at Microsoft.Office.Server.UserProfiles.UserProfileManager.CreateUserProfile(String strAccountName)
    Any help?
    Thanks,
    Mohakk

    Hi,
    Per my understanding, the code should be OK, I have two suggestions as below:
    1. Please ensure that the account of that user is valid in your production environment;
    2. Try other accounts in the CreateUserProfile() funciton to see if it can work.
    Feel free to reply if there any progress.
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • JDBC Error - The Network Adapter could not establish the connection

    Hi all,
    I appreciate if anyone could help me out with my issue. I wrote simple java code on win 2000 to test whether I will be able to access Oracle 8i DB resided at some xxx.xxx.xxx.xxx machine within the network.
    The code is:
    DriverManager.registerDriver(new oracle.jdbc.OracleDriver());
    Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@111.111.11.11:1526:DBinstance","user","password");
    The fist line here is executing and the problem is with second line of code. After executing this application from my DOS window, I am getting error:
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:169)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:211)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:324)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:266)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:365)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:260)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at DBConn.getConn(DBConn.java:15)
    at DBConn.main(DBConn.java:40)
    I have installed Oracle client, where I can access the same database using SQL * Plus, but why I am unable to access the database from a Java Application? Do I need any web/application server to access it?
    Any suggestions please?
    Thanks,
    cs

    I am sorry guys, I was using the port number as 1526, where I need to use 1521...

Maybe you are looking for

  • Engineering character issue in conversion of jsp page to ms-excel format

    Hi, I have a requirement of down loading the jsp page into an ms-excel sheet. for this I am using following code: response.setContentType("application/vnd.ms-excel;charset=UTF-8"); the conversion is fine but the numeric fields whose length exceeds 11

  • Xferred from VHS to jerky video

    I have used my ADVC 100 digital video converter many times in the past to transfer VHS tapes to my hard drive and eventually to DVDs. Hadn't done it in months until yesterday when I tried it and discovered that as the tapes were being recorded onto m

  • Encrypting data J2ME

    Hi I am developing a number of applications using J2ME. They run on mobile phones and need to be able to send data to a server. I need to encrypt this data as it contains personal information about the user. I cant use HTTPS because some of the appli

  • Photo View in Master Data

    Hi, I know the basic procedure and i have upload the photo but I am able to see in the infotypes but i am unable to see in PA30 in Master Data . So please let me know if u have specific settings for the same . Thanks Mag

  • Error binding table components with database tables

    Hi, when i try to bind table components with database tables y receive this error java.lang.NullPointerException      at com.sun.sql.rowset.CachedRowSetXImpl.initMetaData(CachedRowSetXImpl.java:861)      at com.sun.sql.rowset.CachedRowSetXImpl.getMet