Multi report print server error

a apex page has 4 report region and configured Apache FOP for converting report to pdf.
1) My problem is the print link converts only 1 report region to pdf and i want the whole custom page to convert pdf ?
2) During the converting the page to pdf want to store the pdf in table ?

To fix this problem we uninstalled everything related to Hyperion Reports and Adobe Distiller and then reinstalled Distiller, rebooted and then reinstalled Reports.Apparently the install configures itself specifically for the IP address or method (such as DHCP) used when installed.

Similar Messages

  • Crystal Reports: Print Engine Error when exporting a report

    We recently upgraded from Crystal Reports 2008 to BusinessObjects Edge Series X3.1. When exporting a report to an excel data-only format we get "Crystal Reports: Print Engine Error". All other formats work fine.  Any help is highly appreciated.
    Thanks,
    Jaseem

    Anyone?

  • CR 2008 Report Printing,hit error "Server Error in '/CRReport' Application"

    Hi
    We encountered Error Message when trying to print Crystal Report 2008 via Windows Internet Explorer.
    "Server Error in '/CRReports' Application."
    Failed to Open Report
    Description:
    An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error & where it originated in the code.
    Exception Details:
    "System.Runtime.interopService.COMException: Failed to open report."
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    I really appreciate your feedback.
    Jenny Heng

    Make sure you're using the latest SP:
    https://smpdl.sap-ag.de/~sapidp/012002523100009038092009E/cr2008win_sp2.exe
    Consider adding latest FP also:
    https://smpdl.sap-ag.de/~sapidp/012002523100001024152010E/cr2008_fp24.zip
    Make sure you are disposing of the report object once you are done with it and before you re-run it with new parameters (.close, .dispose).
    Test without the combo box. Let the report prompt. Can you reproduce the behavior now? If not, try to supply the parameter values via a text box. Can you reproduce the issue now? E.g.; is it the combo box that is the issue, or the report?
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Report Printing - Excel error

    Hi all,
    I'm not sure what's causing this error.
    With a regular report (not Interactive) region, I have enabled the report printing. All file types open/save correctly except for Excel.
    When opening the file, Microsoft Excel actually pops up this error:
    File cannot be opened because:
    The server did not understand the request, or the request was invalid.
    Error processing resource 'http://www.w3.org/TR/xhmtl1/DTD/xhtml1-strict.dtd'.
    Line 3, Position 57.
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">If I save the file and try to open it, Excel pops up this error:
    This XML file cannot be opened because of an error. Check to make sure the file is a valid XML file, and that the XML syntax is correct.
    You can also try re-creating the file and closing other applications before you attempt to open it again.Excel version is Excel 2002 SP3 (v10.x).
    Some additional info that might be helpful:
    When Excel is opening, the status bar shows it is "Opening HTML.XLA", the shows "Opening {filename}.xls" but fails halfway through that.
    Any ideas?
    Chris

    Hi Chris,
    This is the output I get when I click on the Print link
    <?xml version="1.0" encoding="UTF-8"?>
    <DOCUMENT>
        <DATE>04-AUG-08</DATE>
        <USER_NAME>nobody</USER_NAME>
        <APP_ID>17977</APP_ID>
        <APP_NAME>Test Export</APP_NAME>
        <PAGE_ID>1</PAGE_ID>
        <TITLE>Page 1</TITLE>
        <P1_ROWS></P1_ROWS>
        <P1_GO></P1_GO>
        <P1_REPORT_SEARCH></P1_REPORT_SEARCH>
        <REGION ID="4149756408582108901">
            <ROWSET>
                <ROW>
                    <COL1>value1</COL1>
                    <COL2>value2</COL2>
                    <COL3>value3</COL3>
                </ROW>
                <ROW>
                    <COL1>value12</COL1>
                    <COL2>value22</COL2>
                    <COL3>value32</COL3>
                </ROW>
            </ROWSET>
        </REGION>
    </DOCUMENT>Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://www.apex-evangelists.com/
    -- http://www.apexblogs.info/

  • Report App Server;Error code:-2147215349 Error code name:docNotReady.......

    Hi Experts,
    In our application we are trying to connect to the RAS server  for the ad hoc reporting capabilities that allow users to modify reports over the Web.
    In order to do this what are servers need to run on the server side( I am looking for settings on server side like, what are the servers and services to be run on).
    When we try to open the document  we are getting the error. The code and error msg are as follows.
    private void GetReportClientDocument()
              try {
                   sessionManager = CrystalEnterprise.getSessionMgr();
                   enterpriseSession = sessionManager.logon(username,password, servername, "SecEnterprise");
                   iStore = (IInfoStore) enterpriseSession.getService("InfoStore");
                   String sampleReportName = "Test_Open";
                   IInfoObjects infolist = iStore.query("Select SI_CUID From CI_INFOOBJECTS Where  SI_NAME='" + sampleReportName + "' and SI_INSTANCE=0");
                   int lookUpId = 0;
                   for (int i = 0; i < infolist.size(); i++) {
                        IInfoObject siId = (IInfoObject) infolist.get(i);
                        lookUpId = siId.getID();
                   System.out.println("The CUID is: "+lookUpId);
                   IInfoObjects list = iStore.query("select * From CI_INFOOBJECTS Where SI_ID="+lookUpId);
                   IInfoObject report = (IInfoObject) list.get(0);
                   ReportClientDocument rcd = new ReportClientDocument();
                   IReportAppFactory appFactory = (IReportAppFactory) enterpriseSession.getService("RASReportFactory");
                   try {
                        System.out.println("Name of Document: "+rcd.getReportDocument().getName());
                        rcd = appFactory.openDocument(report, OpenReportOptions._openAsReadOnly,null);
                   } catch (ReportSDKException e) {
                        e.printStackTrace();
              } catch (SDKException e) {
                   e.printStackTrace();
    Error:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKClientDocException: The document has not been opened.---- Error code:-2147215349 Error code name:docNotReady
         at com.crystaldecisions.sdk.occa.report.lib.ReportSDKClientDocException.throwReportSDKClientDocException(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.getDatabaseController(Unknown Source)
         at Viewer.GetReportClientDocument(Viewer.java:98)
         at Viewer.main(Viewer.java:27)
    Thanks in advance for your help.

    Hi Qiang,
    Please check http://metalink.oracle.com/metalink/plsql/ml2_documents.showFrameDocument?p_database_id=NOT&p_id=1047650.6 for possible solutions for this error.
    Thanks,
    Erik

  • Crystal Reports 2008 Server Error when viewing report

    Hello All,
       I have loaded a CR 2008 report onto the CR 2008 Server. When I view the report from InfoView or CMC, I get the following error message:
    Error in File <report name>: Unknown Database Connector Error .
    I setup the ODBC datasources on the server as they are on my client PC where the Report originally worked. Are the ODBC datasource connections supposed to copy over with the report? Or do I have to manually enter them into the "Database Configuration" section?
    Thank you in advance.

    1212487 - Error: "CRAXDRT Error Occured on Server. Error Number:-2147221005"
    Symptom
    A report is called through the Active Server Pages (ASP) Report Server to be displayed in the Report Viewer for ActiveX. However, the report is displayed with blank pages and when the viewer is switched to the Report Viewer for HTML the following error is displayed:
    "CRAXDRT Error Occurred on Server. Error Number:-2147221005 Error Description: 006ASP 0177 Server.CreateObject Failed~Invalid Class String"
    The same ASP application returns the report correctly when it is called from a client computer with the full version of Crystal Report 8 Developer Edition installed.
    Resolution
    It was found that the file, Emfgen.dll, was not installed and registered on the web server computer during the installation of the Crystal Reports ASP Reports Server. The report could be displayed correctly on the client computer, without Crystal Reports Developer Edition installed, after this file had been installed on the web server computer.
    For more information on installing the Crystal Reports web components please search for and download Scr8_WebManualInstall.zip from our website at:

  • Printer server error when attempting to print wirelessly

    Hope someone can assist me. I get the following error when I use system diagnostics when I attempt to print through the airport extreme wireless USB printer port, "Cannot connect to sever. Network diagnostics was able to connect to the internet, but not to the server "HP Photosmart 8100 series.riousbprint.tcp.local. This could be caused by problems with the server, or an Internet problem between this computer and the sever." When I attempt to print, the printer receives the signal and begins its cycle but I soon get a printer stop message with no reason.
    Thanks,
    Mike
    15" G4 Powerbook   Mac OS X (10.4.3)  

    Restart your AX (pull the power for a couple of minuter) and Shut Down the computers on your network. Boot the AX, then restart the computers. Can you connect?

  • View crystal report on server- error

    Hi,
    I have developed a very simple test report which simply displays one field of a database (so theres no code or nothing behind this particular test report). However, I am trying to view this report on a server which has a report viewer installed.
    There have been reports created by other people that are on the server that i am able to view. However when I upload mine and then try to view it, I get the following error:
    Cannot conect to database view - Incident
    SetRptLogin() - Object doesn't support this action ***
    The only difference I noticed between the reports that can be viewed and my reports are they way in which they are connecting to the database(they are connecting to the same database). Mine connects through OLE DB (ADO), whereas the other reports connect through ODBC (RDO).
    Could this be what is causing the problem?
    Can anyone tell me what the error above means?
    Thanks
    J

    Hi,
    Thanks for your reply.
    When in CR and I click on ODBC(RDO), an option screen is displayed which has:
    "select data source:"
             the data sources contained in the available window are:
             'dBASE files'
             'Excel Files'
             'FOO'
             'MS Access Database'
             'xrt'
             'Xtreme Sample Database'
    "find file dsn:"
    "enter connection string:"
    Unfortunately, I do not manage the DB. The DB is a central DB accessed by many people in the company where I work.
    Could you tell me how I would set up an ODBC(RDO) connection to this company database (called 'sd')?
    thanks.
    J

  • Crystal Report print layout error during print preview

    Hi Everyone,
    When I try print preview a marketing document, it will work the first time, and then when I try to print preview again it brings up a window asking me to login into the database with the sa username and password.
    When putting in the correct password, the login fails.
    When I click cancel, SAP hangs up and requires a restart.
    All print layouts were done in Crystal Reports, and imported via the report layout manager.
    This occurs on all marketing documents where there is a crystal print layout.
    Anyone will be able to help me with this?
    Thanks
    Best Regards
    Dario Moutinho
    Edited by: Dario Lopes Moutinho on Jul 7, 2011 3:19 PM
    Edited by: Dario Lopes Moutinho on Jul 7, 2011 3:19 PM

    Hi Rahul,
    Your solution worked. Thank you very much.
    I also did not include a stored procedure into the connection that was needed in the layout.
    This could have also added to the problem (for future reference).
    Best Regards
    Dario

  • Printing issue: Server-error service unavailable

    Help: It used to work but I suddenly am unable to print, using my intel (early 2006) iMac to an Epson Stylus CX 3200 ... I keep getting a "An error occurred while trying to add the selected printer. server-error-service unavailable. When I go to File > Print, it now says "No printer selected" ... I then go to Print/Fax, add printer, the Stylus shows up, but it will not let me add the printer. I am able to use the Epson printer utility from the computer to cue up the printer to run a head cleaning test...so the iMac is communicating with the printer. Any ideas? Many thanks.

    This is great if you happen to be lucky enough to
    be running 10.4 already. If you're a poor sod still
    running 10.3.9, you're out of luck.
    Can someone at Apple please package up a shell script
    that will achieve the same effect as "reset printing
    system" on 10.3.9? By searching on the forums, I find
    lots of other folks besides me (well, it's my Dad really)
    who have this exact problem after the latest security
    update.
    Regards,
    Paul
    MacBook Core2 Duo Mac OS X (10.4.8)
    MacBook Core2 Duo   Mac OS X (10.4.8)  

  • 11.1.2 print server installation

    Hi All,
    I wonder if anyone has had experience of installing 11.1.2 in a primarily Solaris environment.
    For our installation - everything seems to be going quite well apart from getting PDF's from financial reports.
    Since the print server needs to run on Windows - we have installed it in Windows Server 2003 and gone through the configuration. However when running a report in PDF, workspace shows the loading message forever and never returns a PDF. It is fine in HTML.
    Our environment is:
    Solaris 10 VM for foundation services - running Shared Services, Workspace and APS.
    Solaris 10 VM for essbase - running just Essbase.
    Solaris 10 VM for reporting services - running EAS, Essbase Studio, Web Analysis, Financial Reporting, Reporting and Analysis
    Windows Server 2003 VM for the Financial
    Looking at the logs give some clues that there are attempts to access non existent files and I believe I know the problem is where I configured the R&A repository directory on the server which for the both installs was local. On the unix install some of these errors are looking at paths to a C: drive (i.e. the print server install location). It looks like I need to configure both to the same location.
    So the advice I'm after is:
    - should I setup a unix share through Solaris and try and get the print server to access this
    - or should I setup a windows share and get both services to access this also.
    Or is there any other way to do this. The install guide is quite vague about the repository location.
    Cheers,
    Dan

    Hi, dlclarke
    I have a similar scenario here and also can't get the PDF output with 11.1.2. Right the same symptom and a very similar environment.
    One of the servers is a Linux 64bits with Essbase, WA, RA Framework, Foundation, Financial Reporting (except print server). The other is a VM with Windows 2008 64bits and ghoscript 8.63 32 bits with the Print Server.
    The Print Server is configured but when you open a financial reporting as PDF it becames loading and loading forever. The output of the Print Server is:
    Financial Reporting Print Server started successfully.
    Exception in thread "Thread-13" java.lang.NullPointerException
    at java.util.Hashtable.put(Hashtable.java:399)
    at com.hyperion.reporting.printserver.PrintServer.setOutputFileName(Unkn
    own Source)
    at com.hyperion.reporting.printserver.PrintInstanceThread.run(Unknown So
    urce)
    Was your problem appeared to mine? Is it needed to create a folder share between both hosts?
    Another thing, in what log files had you found errors looking for a C: drive path?
    Thank you in advance.

  • Financial Reporting Web Server can't find report server.

    Hi all,
    I've installed Financial reporting print server, report server, and scheduler on a separate server from the Web Server installed with Workspace. I can create and run a report with FR Studio and have saved it to the Workspace server.
    When I run the report on the Workspace server I get the following error:
    Your Financial Reporting Web Server is unable to locate the report server server1.na.ds.monsanto.com:8299. Please contact your administrator.
    (5514)
    I have the same configuration on two other servers and things are working fine. How do I tell the Web Server (server1) where the report server is. Why is it looking on the server1 server?
    Thanks.

    Thanks for your responses.
    I've run the configuration utility on the server where I have installed the report server and compared it to the report server that works. I looks like logically I have things set up correctly.
    The "Configure Financial Reporting" asks me where the "Workspace Web Application" is and that is set correctly and is working because I can get into studio and connect to the report server it lets me design and run and save the report. Studio saves the report to the correct workspace server so I know FR knows about the workspace server.
    I ran the config utility on the Workspace web server and selected "Configure Web Server". The second screen lists all of the components and "Financial Reporting" is one of the components. This is also set up logically identically to the server pair that is working. All of the components are set up on the web server to point at the web server.
    So I still don't understand how to tell workspace to look at the report server. The report server is finding the workspaces web server just fine.
    All services are up and running.
    Keith

  • Failed to read data from report file : Reason: Crystal Reports: Print Engin

    Hi,
    When we try to migrate the crystal reports from BO R2 to BO R3, some of the reports are faling with the error:
    Failed to create a new Report.Reason: Failed to read data from report file C:\DOCUME~1\xxxxx.rpt. Reason: Crystal Reports: Print Engine Error
    Would please someone help me in fixing the issue.
    Thanks and Regards,

    Few quick checks to identify the cause -
    1. Are you able to run report in your R2 system?
    2. In XI3.1, check SIA running on which account.
    3. Check the acount have sufficient rights on file system and registry.
    4. What's your web server?
    Give proper rights and import again. Hopefully it will resolve.
    Edited by: Das on Dec 6, 2010 9:47 PM

  • Report printing with BI pubisher - 500 Internal server error

    Hi,
    I was having problems using BI publisher to print with. I thought we didn't have it at first, however since found we do have BI Publisher Enterprise edition.
    When I put the settings into APEX, reports don't display as expected. I get
    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.Now if I navigate to the URL in my web browser, http://[server]:[port]/xmlpserver/convert, I get a 500 - Internal Server Error page. The requets is definitely hitting something because if I change "convert" to say "convert1" then I get 404 (as expected). So it seems as if convert is found but then a problem occurs.
    If I navigate to just http://[server]:[port]/xmlpserver/ then I see the BI publisher enterprise login screen.
    Any ideas what might be causing this or what I could do to resovle it?
    Our APEX instance is on a unix box and BI on a M$ box if that matters (long story)?
    Thanks

    Ignacio Cobos wrote:
    Hello
    >
    > I get this error when i try to access to Bex Analyzer
    >
    > ERROR: URL used, "http://sesue:50300", is not fully qualified.
    > A fully-qualified URL has a schema with the format "<protocol>://server.company.com:<port>". URLs with the format "<protocol>://server:<port>" or "<protocol>://<ip address>:<port>" are not fully qualified.
    > See SAP Notes 581329 (Not possible to implement) , 596698 (Not possible to implement) and 654326 (Not yet released)
    >
    > Can anybody say me any idea how to solve the problem?
    >
    > Thanks in advance
    Dear Cobos, For FQDN related issues : Set profile param "icm/host_name_full" with corresponding FQDN via RZ10 transaction. Also check login/create_sso2_ticket & /accept_sso2_ticket parameters in the profile you have created.  Instead of "http://sesue:50300" you may to have the URL like "http://sesue.domain.com:50300//SAP/BW/BEX/". Please refer this #scn article for more details : http://goo.gl/QPlrx Similar Issues : http://goo.gl/mRCh0 Hope it helps. Thanks.

  • Server error in printing in server using crystal report 2008 with VS2008

    Hi,
    We are using Crystal report 2008 in VS 2008. Everything working fine in local but when we deployed it in the server we are getting the below while print the report.
    "An error occurred on the server. Printing will be stopped. Would you like to view the error information"
    Anyhow the report is printing but I don't know why this error is occur and how to stop this. I had installed the CR runtime in the server. I dont know what is going wrong. The same we tested locally in a non crystal report installed PC.
    Please help me to get rid out of this error.
    Thanks
    Natraj

    Soemthing strange going on here.
    Typically this Integrated vs Classic is an issue with images where Classic uses web.config tags between <system.web><httpHandlers><u2026 crystalimagehandler../></httphandlers></system.web>
    Integrated uses tags between <system.webserver>u2026<handlers><..crystalimagehandler/></handlers></system.webserver>
    Not sure why this would affect printing.  Do you have tags that specifying where to download the printcontrol from?  On the other hand, I would think that if images had anything to do with it, then you'd get red Xs when viewing.  As far as I know, the printcontrol.cab doesnu2019t need to be specified in the <system.webserver> tags.
    This one may be best resolved over the phone. Phone support can be obtained here:
    http://store.businessobjects.com/store/bobjamer/en_US/pd/productID.98078100?resid=S6I@hgoHAkEAAGsiyVkAAAAR&rests=1282226845369
    Ludek

Maybe you are looking for

  • GETTING RUNTIME ERROR IN TEXT_CONVERT_CSV_TO_SAP FUNCTION MODULE

    HI TO ALL SDNERS,                    IM TRYING TO INSERT A COMMA SEPERATED FILE INTO AN INTERNAL TABLE BY USING FUNCTION MODULE "TEXT_CONVERT_CSV_TO_SAP",BUT IM GETTING A TYPE CONFLICT AND THE PROGRAM IS DUMPED TYPES : BEGIN OF TY_CUST,            KU

  • Settlement on tooling with AIAB

    Hello, I have an error when I run a settlement on tooling FXA with transaction AIAB The error detail is the following: what can be the reason ? Receiver categ. FXA is not allowed by settlement prof. NS for this sender Message no. KD031 Diagnosis The

  • Transferring 8 mm tape to FCE

    Hello, I have a Sony 8MM camcorder. I have tried to transfer those video to FCE. I have a USB Dazzler cable . I have tried a couple of he DV converter option on the set up but it still will not capture the images. I thought I could try imprting it to

  • Screen painter not working properly to edit an ALV screen

    Hi I am stuck with a problem, I want to edit a screen which is an ALV report screen and add a custom button to its toolbar. But the screen painter is not opening properly so that I can see the screen layout and add a button. Any help is greatly appre

  • Difference between IF I_STEP = 2 and IF I_STEP = 2 in CMOD user exit variab

    Whats the difference when i start an ABAP code in the CMOD, in the User exit variable like this: - IF I_STEP = 2 - IF I_STEP = 1 please explain me, i ll really appreciate it, thanks !