NI Reports print function default printer behaviour

Just an FYI... Using the NI Reports Print Report.vi without wiring the printer name does not always work as expected at least for Excel. If you do the following with an Excel worksheet:
1) Print to "Printer1"
2) Print to "" (default)
The second printer operation will print to "Printer1" because it is now set as the 'Active Printer' in the open Excel workbook.
The Print Report.vi does not actually write the name of the default printer to the Excel _Print.vi PrintOut method. It passes an empty string, so Excel will print with the current active printer which may or may not be the default printer. 
The Print Report.vi documentation should probably be changed to reflect that passing an empty string to the 'printer name (default)' terminal will not print to the default printer in all cases.

That is all good information - and all information which I already know and which does not answer my question.
The issue that I am having is that Safari and Safari alone is ignoring the printer setting. Could be something in the Safari plist file or somewhere else in Safari that is not working correctly - or at least I am assuming that it is a problem that Safari is not doing what it is supposed to for some reason - rather than Safari deliberately being programmed to ignore the system pref for printer setting.

Similar Messages

  • How to print report on client default printer ?

    I develop web application. I use jdev 10.1.3.4.0 . I can print report in PDF format.
    My Problem
    I can't print report on client default printer. when Client run application and print. Report is printed at server default printer
    How can I do.
    _My source code for print to PDF format._
    FacesContext context = FacesContext.getCurrentInstance();
    response = (HttpServletResponse)context.getExternalContext().getResponse();
    String urlSchema = "jdbc:oracle:thin:@localhost:1521:ORCL";
    String schemaName = "hr";
    String schemaPass = "hr;
    reportPath = "D:\\Project\\Reports";
    Class.forName("oracle.jdbc.driver.OracleDriver");
    conn = DriverManager.getConnection(urlSchema, schemaName, schemaPass);
    reportPath = reportPath.endsWith("\\") ? reportPath : (reportPath + "\\");
    input = new File(reportPath + reportName + ".jasper");
    reportParameters.put("SUBREPORT_DIR", reportPath);
    reportParameters.put("P_IMAGE_PATH", reportPath);
    jasperPrint = JasperFillManager.fillReport(input.getPath(), reportParameters, conn);
    response.setContentType("application/pdf");
    response.addHeader("Content-Disposition", "attachment;filename=" + reportNameOutput + ".pdf");
    OutputStream outputStream = response.getOutputStream();
    JasperExportManager.exportReportToPdfStream(jasperPrint, outputStream);
    outputStream.flush();
    outputStream.close();
    conn.close();{code}
    _My source code for print to *printer*._
    {code}FacesContext context = FacesContext.getCurrentInstance();
    response = (HttpServletResponse)context.getExternalContext().getResponse();
    String urlSchema = "jdbc:oracle:thin:@localhost:1521:ORCL";
    String schemaName = "hr";
    String schemaPass = "hr;
    reportPath = "D:\\Project\\Reports";
    Class.forName("oracle.jdbc.driver.OracleDriver");
    conn = DriverManager.getConnection(urlSchema, schemaName, schemaPass);
    reportPath = reportPath.endsWith("\\") ? reportPath : (reportPath + "\\");
    input = new File(reportPath + reportName + ".jasper");
    reportParameters.put("SUBREPORT_DIR", reportPath);
    reportParameters.put("P_IMAGE_PATH", reportPath);
    jasperPrint = JasperFillManager.fillReport(input.getPath(), reportParameters, conn);
    JasperPrintManager.printReport(jasperPrint, false);
    conn.close();Edited by: jaae251 on Jun 18, 2009 2:29 AM

    If you offer a PDF to the end user, they usually know what to do with it. OTOH, if you wish to provide software to facilitate the local printing, you might launch an application on the client side that accesses the JNLP API's PrintService - that can be done in a sandboxed application.
    A signed application might access the normal J2SE based print services. Though I heard that Sun had decided to make printing a 'prompt on first attempt' deal - even for sandboxed apps., from 1.5 plus (or was it 1.6 plus?).
    It would be a serious security bug if a web site could print on the client printer, without trust or active involvement from the end user.

  • Report printer was not valid, switching to default printer.

    We are using a Crystal Report viewer in Tomcat. Everything works but sometimes in the Tomcat log we get the following error:
    ERROR com.crystaldecisions.reports.reportdefinition.ReportDefinition - Report printer was not valid, switching to default printer.
    Is there a way to stop this error from being reported? If not, is it safe to ignore since everything appears to be working fine?

    Generally safe to ignore, unless of course you want to print to that printer
    Just means report was designed connected to specific printer which is not available where you are now publishing report. YOu could try going into printer set up and selecting No Printer.
    Ian

  • Report printing

    Hi All,
    I am working on Apex with Oracle XE universal...i just tried to acheive print pdf functionality throgh integration of Apex with Apache cocoon...
    Everything is working fine...my Apache server is working,cocoon is working but when i m clicking on print button ....it showed me the following errors:
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1186
    ORA-12570: TNS:packet reader failure
    I don,t know what problem is there in my application...or I need to do some settings....
    if anyone knows please help me....
    I did the following settings in my report page:
    In APEX, I logged in as ADMIN into apex/apex_admin and went to Instance Settings and did the following:
    - Print Serverr: Standard Support
    - Print Server Protocol: HTTP
    - Print Server Host Address: XYZ
    - Print Server Port: 8181
    - Print Server Script: /cocoon/fop_post
    In my APEX application, in the Regions section, I click on the Print link next to my report. I have the following settings:
    - Enable Report Printing: Yes
    - Link Label: Print
    - Response Header: Print Server
    - Output Format: PDF
    - Report Layout: Default Report Layout
    - Print URL: f?p=&APP_ID.:1:&SESSION.:FLOW_XMLP_OUTPUT_R1063230002781575
    Edited by: user9139675 on Mar 23, 2010 1:54 AM

    what was your solution?

  • Report print attributes - custom report layout

    Hi there,
    I've looked for this information in the web and in this forum without luck so far...
    We have here BI Publisher and I use the "Enable Report Printing" option in a traditional report in Apex 4.0.2. That works great.
    But instead of using the "Default Report Layout", I want to use a custom one based on a RTF file. However I have no idea what the data XML looks like in order to build a custom layout.
    To be clear: if you go to Shared Components > Report Queries, you have a Download XML Data option so you can build your report layout based on the XML structure. For instance, you can use <?for-each:ROWSET1_ROW?>, <?COLUMN_NAME?> etc
    Any ideas about what that XML structure is for a traditional report?
    Thanks
    Luis

    Found it: change temporarily the output format to XML and download the report. The XML structure is all there. Very helpful to know that all page items are included in the XML as well. It would be good to have this functionality detailed somewhere in the Apex documentation.
    What I still need to know is how to access the substitution strings below in my RTF (NOT XSL-FO) template:
    Select Default Report Layout to use the built-in generic report layout.
    To use a custom generic report layout, select it from the list.
    You can use the following substitution strings when building custom XSL-FO report layouts:
    #PAGE_HEADER#
    #PAGE_HEADERFONT_COLOR#
    #PAGE_HEADER_FONT_FAMILY#
    ...Any ideas?

  • Crystal Report Printing - A4 Issue

    Hello Experts,
    One of our customers use third party rental add-on with SAP B1. The add-on has cyrstal reports files. All these reports are set to letter size by default in report page setup. Client does not to print in A4 .
    When the user clicks on Print Preview / Print Icon on  rental order the , the report loads, but when sent to Printer for printing it becomes A4 (It should be letter).
    The rental reports works fine on the SAP Server, meaning when sent to printer it goes as Letter size which is what we want but this does not happen at Client's machine's.
    Also , i have an add-on running on my local machine and the reports prints in letter size with out any issue. I have been searching online regarding this issue but i haven't found any solution.
    Can any one advise me on this issue. Is there any setting that i can do in crystal or printer ?

    Is the default page size for the client's printer set at Letter or A4?

  • Report printing issue after upgrading from LV 8.2 to LV 2009

    Hello,
    I am upgrading an application from LabView 8.2 to LabView 2009. It uses the Report Generation Toolkit to create reports based on Word templates. The reports are pretty complicated, with a lot of bookmarks, tables, and graphs, but only one page long.
    The reports are generated correctly. However when sent to printing (using Print report.vi), the printer goes into spooling status and if you are patient enough you may get the report after at least 7 minutes. I tried changing the printer setting to "Print directly to the printer", as per an old KnowledgeBase article. No luck. I have installed a local printer. No luck again.
    If I close the LabView application while the printer is shown in spooling status, the report prints right away, every time.
    Never had this issue in LabView 8.2. On that machine I had Office XP. Now I have Office 2007...
    I do not get any error whatsoever, and I cannot figure out where the solution may be.
    I have one single report that prints right away every time I try. Coincidence or not, this is the only one that has no tables to print. It has graph though and plenty of bookmarks.
    I have exhausted all the ideas on how to deal with this situation, and I must find a solution ASAP. Any suggestion would be greatly appreciated.
    Thanks.

    Brandon,
    Thanks for your input.
    Not sure how I can use it to narrow down the problem though. I ran it, and I see that the printers are correctly identified, the default one is correctly found, however absolutely nothing is being printed out (I typed a text in the string control, and the Print control was on).
    Everything runs with no errors. I would prefer to see a bunch of errors ...

  • Report Print Directly to Client Printer in Linux

    Hi,
    I m doing migration of Forms and Reports from 6i to 10g.
    In this 6i form contain the Direct Report Print to Client Printer.
    But in 10g, How to achive this,
    I don't want to show the report in screen, i want directly report goes to Client Default Printer for Printing Purpose.
    Can any one tel me if you have any solution.
    Thanks
    Gany

    Thanks For you reply,
    I already tried this, But I don't Know ,how to create Java Bean.
    So Any Other Method is there.
    If Any one know any other Solution for Print Directly to Client Printer.
    Thanks,
    Gany

  • Crystal report printing in halfsize paper

    Hi Guys,
         Can you help me printing my crystal report 2008 report in half sheet?
    i want to print it in size 8x6. i did create a printing profile in printer and set it in default.
    but when i click the print button and check the preferences it always on "Letter" though i set the "halfsheet" profile in default.
    "halfsheet" profile size is 8x6. when i manually select the halfsheet the printing is good. but when i dont changed it the
    report print in Letter mode. can you please help me?
    thanks
    -karlo

    Hi Sastry,
              Yes i do have admin rights to set the default profile of printer. and it also installed on the same computer i am printing. when i check the printer. the default is "halfsheet" where the size is 8x5.5.
    but when i try to print, and check the preferences, it always show on "letter" and its consuming the whole letter size page when i try to print. and when i try to print the report and select the halfsheet, all is doing fine. its just to time consuming for the user to set the profile and print.
    Hi Don
              I did configuring the page size of the report but whenever i try to make it on 8x5.5 landscaape is auto select. but i need is portrait type since im printing on continues paper.

  • ALV report Print out.

    Hi,
    I have developed a ALV report .
    I also want to take the print out of this report.
    How can i do this.

    Hi,
    Refer this code
    DATA : wa_variant  TYPE disvariant,       "Work area for variant
           wa_variant1 TYPE disvariant,       "Work area for variant
           wa_layout   TYPE slis_layout_alv,  "Work area for layout
           wa_print    TYPE slis_print_alv,   "Work area for print
    *&      Form  sub_alv_display                                          *
    This form displays the output using REUSE_ALV_GRID_DISPLAY          *
    function module                                                     *
    FORM sub_alv_display .
    *--Local Internal Table
      DATA : li_sort  TYPE slis_t_sortinfo_alv.
    *--Define print list
      wa_print-no_print_listinfos = c_chk.
      wa_print-no_coverpage = c_chk.
    *--If the No zero stock lines is checked in the selection screen
      IF  p_sline IS NOT INITIAL.
        DELETE i_final WHERE einme = c_zero.
      ENDIF.
      IF NOT i_final[] IS INITIAL.
    *--Call the function module to display the ALV report
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_callback_program = v_repid
            is_layout          = wa_layout
            it_fieldcat        = i_fieldcat
            i_default          = c_chk
            i_save             = c_save
            is_variant         = wa_variant
            it_events          = i_events
            is_print           = wa_print
            it_sort            = li_sort
          TABLES
            t_outtab           = i_final
          EXCEPTIONS
            program_error      = 1
            OTHERS             = 2.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ELSE.
    *--No data found for the given selection criteria.
        MESSAGE i001.
        LEAVE LIST-PROCESSING.
      ENDIF.
    ENDFORM.                                  "sub_alv_display
    Regards,
    Prashant

  • Help in abap list report printing

    Dear all,i did a customized list report using abap.the usual size for report print out is A4 which is line-count 65 and line-size  255. but for this report,my line-size is 296. i define at the begining of my program with "REPORT ZMM_STKVAL_VIEW LINE-COUNT 65 LINE-SIZE 296 MESSAGE-ID ZA."
    i can run this program but the output is not complete.i can only see untill the line-size of 255..anything exceed 255 kenot be displayed..
    Is there anyway to overcome this problem? My user doesnt required this report to be printed out but just to download it into EXCEL file. Thank you.

    Ok, if user doesn't need a list output, then simply gather the data and fire excel.
    report zrich_0001 .
    data: imara type table of mara with header line.
    start-of-selection.
      select * into table imara up to 100 rows
                from mara.
      call function 'WS_EXCEL'
           exporting
                filename = 'TEST.XLS'
           tables
                data     = imara.
    Regards,
    Rich Heilman

  • Custom Purchase Oder Report Printing

    Hi All,
    We have custom purchase order report XML with Default Output Type as PDF, the report as such has no issues with it. We would like to capture the print count on the po_headers_all each time the custom report is printed by the user.
    I would be glad if any one could throw light as what will be the initiator for the print action so we could update the print count.
    Thanks in Advance.
    Regards

    Hi Guys,
    Anyone please throw anylight on the above issue of PO printing.
    Regards

  • International SSRS report printing for both A4 and Letter

    I've been reading a few articles on the net about making reports either A4 or Letter and I am aware of how to change the layout of the page to be specific for either
    The problem we have is that we have some users that use A4 paper, and other users that use Letter size paper.
    We would ideally like the user to press the print button from the browser window (note not exported to PDF) and for the report to be printed off on their favourite printer
    We have modified the layout to be the lowerst common denominator size (210mm x 279mm).  When we print to our printer which uses A4 paper, it errors because the paper size is odd and needs confirmation to use A4 instead.  I am making the assumption
    that using a printer with Letter size has the same problem.
    We do not want our users to have to deal with errors on their printer every time they try to print a report, it doesn't look good.  We don't want to write 2 versions of each of our reports as that will be time consuming and a maintenance nightmare
    Has anyone managed to make SSRS reports printer agnostic or at least be able to print out on either A4 or Letter without additional intervention on the printer?
    Tony

    Hi Tony,
    What version of SSRS are you using? Are you seeing this from the Report Viewer control or Report Manager?
    In my Report Manager, when I try to print a report (SSRS 2008 R2), the Layout defaults to Letter. When I look at the report (RDL) property in BIDS, the PageSize property is set to 8.5in (Width), 11in (Height), which refers to PageWidth and PageHeight respectively.
    The following blog explains these properties:
    http://blogs.msdn.com/b/bwelcker/archive/2005/08/19/alien-lanes-_2800_logical-and-physical-pagination-rules_2900_.aspx
    In SSRS 2005, for the Report Viewer control, due to a VS 2005 issue, we had a situation where it would not allow custom paper size. By modifying the report page size to the exact Letter size (279.4mm = 11 inches), for example, we would be able to see the
    Letter size in that situation. This should be fixed on and after SSRS 2005 SP2.
    In general, after rendering a report, Reporting Services sends the height and width information to the printer driver when we try to print a report, which selects the appropriate paper type based on the report size.
    In my test, when I tried to print, it chose Letter with Portrait Orientation. I was able to change it to A5 from the Print Dialog and was able to print in both ways (A5/Letter) without any error message.
    Thanks,
    Cathy Miller
    Microsoft Online Community Support

  • Wide Report printing issue

    Hello everyone,
    I have a wide report in pdf and spreadsheet format. It has too many columns. It does not even fit on a legal size paper. I am using reports 10g to develop this report.
    When I print the pdf format on legal paper, the report is shrunk to fit the page and the fonts are really small. Do you know of anyway to print this report on 2 separate pages side by side instead of one page? Or do you have any ideas on how to make this report print better with a font that is easily readable?
    Thanks

    Brandon,
    Thanks for your input.
    Not sure how I can use it to narrow down the problem though. I ran it, and I see that the printers are correctly identified, the default one is correctly found, however absolutely nothing is being printed out (I typed a text in the string control, and the Print control was on).
    Everything runs with no errors. I would prefer to see a bunch of errors ...

  • Hyperion Financial Reporting-Print Service is not Starting-11.1.2.1

    Hi,
    We are using Hyperion 11.1.2.1 and when i look at my Hyperion Financial Reporting-Print service it shows me at stopping and when i right click to stop/start it the options are greyed out.
    I have completely stopped all the hyperion services and started them again and now the HFR Print service is showing me as Starting.
    Kindly help me what should i do to resolve this issue.
    You can see the screen shot at my blog.
    http://hyperion-consulting.blogspot.in/2012/08/hi-we-are-using-hyperion-11.html
    Regards,
    AS
    Edited by: Don'tKnow999 on Aug 30, 2012 9:52 PM

    Hi John,
    Thanks a lot for your reply. I saw the log file however i am not able to understand where the issue lies. Can you kindly hlep me out. Below is the FRPrintLogging.log
    [2012-08-31T02:42:54.565-04:00] [EPMFR] [ERROR] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vQRewCSs85njp2iZ1GG5mQ000000,0] [SRC_CLASS: com.hyperion.reporting.registry.FRSystem] [SRC_METHOD: lookupHsServer] [[
    com.hyperion.reporting.util.HyperionReportException: Could not connect to the server.
    Please make sure that the server is running as specified in the logon dialog (including port number if not default).
         at com.hyperion.reporting.registry.FRSystem.lookupHsServer(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    [2012-08-31T02:42:54.565-04:00] [EPMFR] [WARNING] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vQRewCSs85njp2iZ1GG5mQ000000,0] [SRC_CLASS: com.hyperion.reporting.config.FRConfig] [SRC_METHOD: getFRConfig] [[
    java.lang.NullPointerException
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    [2012-08-31T03:12:21.914-04:00] [EPMFR] [NOTIFICATION] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.printserver.StandalonePrintServerLauncher] [SRC_METHOD: <init>] Oracle Workspace
    [2012-08-31T03:12:22.198-04:00] [EPMFR] [NOTIFICATION] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.printserver.StandalonePrintServerLauncher] [SRC_METHOD: <init>] Copyright&#169 2000, 2011 Oracle and / or its affiliates.
    [2012-08-31T03:12:22.198-04:00] [EPMFR] [NOTIFICATION] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.printserver.StandalonePrintServerLauncher] [SRC_METHOD: <init>] All Rights Reserved.
    [2012-08-31T03:13:46.993-04:00] [EPMFR] [ERROR] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.registry.FRSystem] [SRC_METHOD: getObjectFromURL] [[
    java.net.ConnectException: Connection timed out: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
         at java.net.Socket.connect(Socket.java:529)
         at java.net.Socket.connect(Socket.java:478)
         at java.net.Socket.<init>(Socket.java:375)
         at java.net.Socket.<init>(Socket.java:249)
         at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(DefaultProtocolSocketFactory.java:80)
         at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(DefaultProtocolSocketFactory.java:122)
         at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707)
         at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387)
         at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171)
         at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397)
         at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:323)
         at com.hyperion.reporting.registry.FRSystem.getObjectFromURL(Unknown Source)
         at com.hyperion.reporting.registry.FRSystem.lookupHsServer(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    [2012-08-31T03:13:47.011-04:00] [EPMFR] [ERROR] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.registry.FRSystem] [SRC_METHOD: lookupHsServer] [[
    com.hyperion.reporting.util.HyperionReportException: Could not connect to the server.
    Please make sure that the server is running as specified in the logon dialog (including port number if not default).
         at com.hyperion.reporting.registry.FRSystem.lookupHsServer(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    [2012-08-31T03:13:47.025-04:00] [EPMFR] [WARNING] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.config.FRConfig] [SRC_METHOD: getFRConfig] [[
    java.lang.NullPointerException
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    ]]

Maybe you are looking for