Scheduled Report Output to Printer

Hi Guys,
hope you are all well.
Can someone help me.  I am have created a report and set this to be schedule at X time.  I need the report output via Business Objects XI to be to Printer.
I have set up a printer and set it as a shared printer on the same server BO runs on.  I have also set the printer to Default.  When I schedule the report and set the Print Settings to Default Printer it does not print...no error messages...but no print.  Helppppp as I am going mad.
Many thanks

We just recently migrated to XI R2 on a new server, and did not consider the print settings...until a user noticed they could not print like normal
We recreated the printers on the new server, and people could then choose a specific printer now. (We named the printers the same as the print ID on the server.)
However, people could not choose Default Printer in Infoview (during Schedule). When they chose it, the report would be successful, but we were not sure where the output would go.
I found a few articles on Knowledge base, and I think #1 and #2 may be our best alternatives.
1202786 - A Crystal report printed through InfoView does not use the default printer on the client computer
1203768 - The default printer is not chosen when printing from Infoview
This last one seems little drastic - all scheduled reports on a jobs server would take the behavior of the job server. This seems excessive.
1217095 - Report does not print when scheduled to printer in Crystal Enterprise or BusinessObjects Enterprise
Article #1 &2 will require retooling of the rpt files, but we plan to address the user issues on a per report basis.
Walter

Similar Messages

  • Unable print scheduled report on network printer using BOEXI 3.0

    Hi,
    I'm unable to print a scheduled report on network printer using BOE XI 3.0. I get the following error
    Error Message: Error in File ~ce6a054be1a25b52.rpt: Request cancelled by the user. ]
    Has anyone encountered this kind of problem and know what the solution is?
    Thanks,

    Hey Falk,
    Thanks for the response.
    I can print on a network printer after I changed 'Crystal Reports Job Server' to run under a user account that has privileges to access the printer.
    To answer your questions regarding the problem:
    >Can you schedule the report successfully ?
    >>Yes I was able to schedule the report successfully
    >Can you print the report successfully?
    >>NO the scheduled task would fail with the error message as posted above.
    Thanks,

  • Add CSV file as Scheduled Report Output Format

    Is there any option in BOXI R2 and R3 - Add CSV file as Scheduled Report Output Format. If not, how do we achieve this?

    Hai
    http://www.christiansteven.com/products/crd/
    http://webtrends.dbt.co.uk/wrc/help/webhelp/hlp_exrpt.htm
    http://www.businessobjectstips.com/tips/infoview/business-objects-cannor-not-create-an-excel-file/

  • Scheduled Reports Output Format

    Dear All,
    Does anyone know how I can schedule WEBI reports in the same formats as crystal reports? I currently use BOXI r3.
    The current WEBI options are only:
    Web Intelligence
    Excel
    Adobe Acrobat
    Where the crystal options are:
    MS Excel
    MS Word
    PDF
    RTF
    TXT
    TTX
    CSV
    XML
    I need to be able to schedule a series of WEBI reports in csv & txt formats to an FTP location.
    Thanks in advance,
    Stuart

    I believe the only option for WEBI reports output formats are Web Intelligence, Microsoft Excel and Adobe Acrobat.
    We have been having problems with scheduled reports output format in Excel. WEBI report's page layout is set to Legal and Landscape. But, MS Excel does not keep the same WEBI page layout margins for legal and landscape, and the report does not fit to page on Excel. WEBI formatting works best on Adobe Acrobat.
    We opened a ticket with SAP... their response was it is a known issue with no solution.

  • Unable to send report output to printer when using RUN_REPORT_OBJECT in 10g

    Hello All,
    When I try to send my report output to a file from my form(10g), I get 'FRM-41213: Unable to connect to report server'. I can sucessfully send my report to printer when I set the REPORT_DESTYPE to 'PRINTER'.Here is the code from my when-button-pressed trigger.
    Am I missing something?
    declare
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN                
    repid := find_report_object('PWRR_CTRL_TYP_MAINT');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'rep_ipkcaf7vm');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,FILE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'DFLT');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,'C:\TEST1.doc');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
         LOOP
         rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
              msg_alert('Report print successfully', 'I', FALSE);
    ELSE
         msg_alert('Error when running report', 'I', FALSE);
    END IF;
    END;
    Thanks,
    Anna

    Hi,
    its because
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,'C:\TEST1.doc');
    references the report rdf pr rep file to run, not the output file. The Reports output file is always specified with DESNAME
    Frank

  • Error when sending report output to printer from Forms 10g

    Hi,
    I have a simple report that I am running from a form using run_report_object built-in. I can successfully send the report output to a file but when I send the report output to a printer my report is
    terminated with report status of 'TERMINATED_WITH_ERROR'. I am using the default forms service and reports server that comes with the forms builder. How do I specify the reports server to user my default network printer ?Following is the code that runs my report.
    Thanks,
    Anna
    PROCEDURE SEND_TO_PRINTER IS
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(50);
    rep_server system_variables.reports_server%type;
    alldone          exception;
    BEGIN
         select reports_server
         into rep_server
         from system_variables;
         if rep_server is null then
              msg_alert('Error getting the reports server name', 'I', FALSE);                
              raise alldone;
         end if;
         :ctrl.run_report_errors := 'N';                    
         repid := find_report_object('REP_OBJ1');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,rep_server);
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
         IF :ctrl.rg_print = 'P' THEN
              --Send the output to printer.
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,PRINTER);
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'dflt');
         ELSIF :ctrl.rg_print = 'R' THEN
              --Rich Text Format
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,FILE);
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'rtf');
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,:ctrl.filename);
         END IF;
         v_rep := RUN_REPORT_OBJECT(repid);
         rep_status := REPORT_OBJECT_STATUS(v_rep);
         WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
         LOOP
              rep_status := report_object_status(v_rep);
         END LOOP;
         IF rep_status = 'FINISHED' THEN
              null;
         ELSE
              :ctrl.run_report_errors := 'Y';
              msg_alert('Error when running report.' || rep_status, 'I', FALSE);           
         END IF;
    EXCEPTION
         when no_data_found then
              msg_alert('Error getting the reports server name', 'I', FALSE);      
         when alldone then
              null;     
    END;

    If you use Windows the user that runs the reports server is usually LocalSystem. Check this in the Windows Services panel.
    LocalSystem has no printer access. To be able to print, you have to use a real domain user that has access to the printer. So, change the Log on properties in the Services panel.

  • Scheduling Report output to a Database Table

    Hi,
    Scenario:
    I have a RPT - loaded on the BO server (BO XI R2) - (which uses a stored procedure and a formula to populate the report) which generates the data in a tabular format.
    Requirement:
    I would like to insert the resultant rows generated in the report to a database.
    Is there a possibility to schedule a report output to a database table?

    It seems that what you want to do is some kind of ETL, you should consider a right tool for doing this. For example, BusinessObjects Data Integrator. By BODI, you can directly transform the source data to what you need to the destination.
    If you still need the report for presentation, rather than purely using it as a transformation tool, I suggest you do this. Implement a Java program (.NET is also possible) to implement the Program interface, so that you Java program can be added to BusinessObjects Enterprise as a program object. In this Java program, what you do is: first, schedule the report, and then open the report, read the row sets and insert them to the destination table. This process involves the Business Objects Enterprise SDK and the Report Application Server SDK.
    Finally, you can in turn schedule this program objects, so that it will periodically run the report and output to the destination table.

  • How to send report output to printer

    Hi,
    In Oracle applications one of my AR report has printer parameter
    when user submitting the request he needs to choose the printer name for that
    parameter then this report output needs to go to automatically to that printer after completion of report.
    Do I need to change report system parameter values for this?
    Could you help me in this?
    Thanks in advance.

    Hi,
    If you use ORARRP, you reports will automatically go to the default printers.
    Regards,
    Soumyajit

  • Report output to PRINTER

    I posted this in Application server forums. I didn't get any resolution for this.
    We migrated forms 6i application to 10g. Our apllication has three options for the report output.
    1. Output to preview
    2. Output directly to printer
    3. Output to file.
    I have couple of questions regarding the output to printer and file.
    1. Right now the application server uses the unix printer commands in /usr/bin to print. We need to print the report output from the application server with the printer commands in /opt/cups/bin instead of /usr/bin.
    How to do this?
    2. If the report output destination is set to FILE. Then the server generates and store the ouput in the default directory /exports/../.../../. How do I change the default destination location.
    Thanks,
    Vijay.

    Hello,
    1) Since, 9.0.2, Reports uses the script rwlpr.sh (OH/bin) to send the ouput to a printer when DESTYPE=PRINTER. If you want to change the executable used to print, modify this script
    2) When DESTYPE=FILE, it is possible to specify a "full path name " in DESNAME
    Regards

  • How to Schedule Report Output in EXCEL (.cvs) format for Planning 11.1.2.1

    Hi all,
    I'm using Planning 11.1.2.1 for entering data and generating reports manually via Workspace. I wanna set up an automation process with a batch scheduler.
    I've gone over the documentation. I've read about creating batches first then scheduling batches next.
    However, the biggest issue I have is that I want to extract all my reports into EXCEL Spreadsheet (.cvs) format and according to the docs, it only supports output in PDF or HTML for 11.1.2.1.
    Is this true? Is there a way to work around this by using Business Rules at command prompt?
    Thanks,
    N

    If you have the Financial Report open there are two options:
    - in the bottom right hand corner of the report click the link: "Export In Query ready Mode"
    (this opens the report so you can use it as an Excel retrieve)
    - from the Hyperion menu, select File>Export>Excel
    (this exports the headers as objects and the data grid, so you can manipulate in Excel).
    Cheers, Iain

  • Sending report output to printer directly (on Unix)

    Hello.
    Please help.
    I was previously using LPD for printing my oracle character mode reports. Now we have migrated to a new versions which has more graphics and colours. Also, some of my new reports are in PDF format.
    I would need some help sorting out how to configure my new printers (Deskjets and Laser - replacing some of my dot matrix).
    I had created all my printers using SAM->Printers and Plotters->LP Spooler->Printers and Plotters
    Also, i use Print Server Emulator programs running under Microsoft Windows to accept printjobs from queues and print.
    Thank you in advance for a reply
    YD

    Check the reports job queue for the exact error message.
    I doubt if this is a valid printer name. Check if this printer is defined on the server. It can also be that the user that runs the Oracle reports service has no access to the printer.

  • Save report output to file

    Hi, I'm using BI publisher web service to schedule reports to email, printer, fax..etc
    How can I save report output to file? I tried both options saveOutputOption and saveDataOption but I can't find report output on the server.
    Thank you,

    option 1: bursting
    option2:
    you have to get the output, search for ReportResponse and getReportBytes,

  • Urgent -Oracle 10g - report is getting printed square of no of copies

    Hi All,
    I am printing oracle 10g report from form using server side printer. If I specify the number of copies to 1 then it prints 1 copy of report. but if I specify 2 then it prints 4 copies of the report.
    It prints square of no of copies.
    Pl. give me some pointer to resolve this issue.
    Thanks in Advance

    Hello,
    This is a known problem and documented in the note :
    Note 316849.1 With 'destype=printer' and 'copies=n', 'n*n' Copies of Report Output are Printed
    A workaround is suggested in this note.
    Regards

  • Sharing scheduled reports

    Hi,
    We have an apps mode EUL - all users logon using their Oracle apps id and a single responsibility which has access to all business areas.
    Our problem is when user A schedules a report and shares the output with user B, user B cannot see the output in Discoverer Plus or Viewer. However user B can see the scheduled report output if they logon to Discoverer Desktop.
    As we like almost all of our users to use Plus this is obviously a problem. I cannot figure out why this behaviour has started happening as it used to work ok.
    We use Discoverer 10.1.2.48.18, appreciate any suggestions.
    Thanks.

    Hi Colin
    Out of the box Discoverer is installed as 10.1.2.48.18 which is the version you say you have. That is an extremely buggy version and you need to upgrade.
    Please take a look at this posting on my blog: http://learndiscoverer.blogspot.com/2008/04/most-useful-patch-numbers.html
    Personally I would not be surprised to hear that you have all kinds of issues. If you were to bring your issue to Oracle Support's attention they will tell you that you need to upgrade too. I am not saying 100% that this will cure your issue but the chances are that it will and a multitude of other problems that you may or may not have come across yet. :-)
    Best wishes
    Michael

  • Schedule webi document to printer and save the output in shared drive

    Hi all,
    Is it possible to schedule a webi document via java BOE SDK, run at once, save the output in pdf format in a shared drive and at the same time, send the output to printer? Or I need to run the webi document to run 2 times? Thanks.
    Best regards,
    Grace

    Hi Adam,
    How about can I schedule a webi document to printer only? In Crystal report, I can do this but seems for webi, no such function?
    Best regards,
    Grace

Maybe you are looking for

  • Why Case-Sensitive while assigning tasks to other users??

    I am trying to assign a task to another user through AdminUI. While searching for users, I am supposed to provide case-sensitive search text to find actual users. In previous installations it is not a problem. i.e only in production it happens. Is th

  • Merged Projects in Robohelp 10

    When I publish my master project in IE(8 or 9) using Robohelp 10, the child projects do not appear in the TOC. However, if I open the published master project in Mozilla Firefox, the child projects do appear. My office only supports IE. Is there a so

  • PDE plug in error code cannot print in Mavericks os

    I get this error when trying to print from anyy app since I upgraded to mavericks. Missing PDE plug in....help! Process:         Preview [2309] Path:            /Applications/Preview.app/Contents/MacOS/Preview Identifier:      com.apple.Preview Versi

  • OS X 10.5.6 update warning.

    After installing the 10.5.6 update on my Master boot up drive, all my internal drives ( 4 ) now read maximum capacity at 128 gig in Disc Utility ? They are actually, in the real world. 160, 300, and 500 gig ???? Be careful and back everything up befo

  • Bonjour, j'ai un problème avec itunes,

    Bonjour, J'ai un problème avec itunes , je dois désimlocker mon iphone 4, Du coup J'AI SUIVI Les instructions de Mon Opérateur ORANGE, mait il me Faut Restaurer l'iphone, lorsque je clic sur "Restaurer", j ' ai un message  "effectuer la mise à jour i