Reports-3.0 - Printing in compressmode & related doubts

Dear Friends,
I am working as an Oracle-Developer/2000 Programmer in Oman. As I am new to this Software, having some problems and very much expecting your valuable suggestions/solutions from your side. Please Help me!.
Problem 1: Printing Compress Mode
Software/Program specification:
- Oracle 8.0.5 / Developer 2000 (Forms 5.0/Reports 3.0) on
Windows N.T 4.0
- Report Layout with 250 characters (Designed in Character mode)
- Printer Epson LQ 2170
Now my requirement is
* How to take the Print out in Compress mode using 132 colum
width paper. Meantime User wants to preview the Out put in
Preview screen also.
Problem 2: How to programmatically maximize the Preview Screen in
Reports 6.0.
Problem 4: Why, in Form 6.0, by Default Page Up/Down Key is not
functioning.
Note : Reply by [email protected] / [email protected]
Thanking you.
Syed Ali.M
null

hi there,
this is jitu here.
i want to design reports in character mode format !!it seems that u are already on it and have some succcess in it !!
on my side the case is that whatever changes i do in the properties of layout like orientation or page size ...i see no effects while printing or previewing etc..
tell me if u can help me on it !
thanx in advance,
best regards,
jitu :-)

Similar Messages

  • Reports attachement pdf printing after report printing

    Oracle : 9.2.0.6
    forms 6.0.8 reports
    os : linux :
    I have a peculear requirement for the inhouse application.
    I generate a standard Purchase order report with normal requirements using d2k reports. This report is being printed as soon as the transaction commits and goes to the printer.
    The Purchase order comes in 2 pages dependsing on the items and terms and conditions.
    I have a standard Pdf doc comp_prof.pdf (which changes regular intervals conists of various comp. info and not related any database activity).
    Currently this information is being printed manually after the Purchaae order is being printed.
    I tried to incorporated in after report trigger. I was not succesful.
    Pl. help what are the various options I have to solve this.
    If I convert a PO to mail this doc also should go.

    the pdf need to print is not from oracle d2k report. That is pdf is a particular location. The pdf is not getting generated form oracle or any d2k component.
    It is a standard any pdf doc consists of 3 page information.

  • Print customized report on client printer

    I'm evaluating HTMLDB as an option to some MS Access applications we have in place and I have to add I'm a new user with no experience on HTMLDB.
    One of my applications basically generate a report to be printed on pre-printed forms. For what I've read the reporting capabilities of HTMLDB are very limited, so I'm not sure how we can implement this type of reports with HTMLDB.
    Any suggestions are appreciated.
    Thanks

    I'm evaluating HTMLDB as an option to some MS Access
    applications we have in place and I have to add I'm a
    new user with no experience on HTMLDB. HTML DB is a far superior development environment to MS Access. I did Access for quite a while and don't ever really want to look back. Although, I'm forced to sometimes. I think you'll really come to appreciate HTML DB pretty quickly.
    One of my applications basically generate a report to
    be printed on pre-printed forms. Printing to preprinted forms will get tricky. Basically, you're going to have to work with standard HTML constructs (generated by the Oracle server of course) to create your page output. I'm not saying it's impossible but it will be a significant challenge to line up your data output with preprinted forms. Especially given the variability of browsers.
    Could be that someone has more experience with some other reporting (e.g. Oracle Reports) that could accomodate your need better than HTML DB page templates.
    I'm sure everyone here would be interested to hear how your evaluation goes. Keep us posted. Good luck.
    Earl

  • Print a report to a printer (server-side printing) Error

    <p>Hi ran into some hiccups following a sample from crxi_r2_jrc_desktop_samples</p><p>JRCPrintReport</p><p>I am attempting to send a report for printing on a Thick Client Application.</p><p>This is the error.</p><p align="left">- All configurations cleared.</p><p align="left">- CRConfig.xml not found</p><u><font color="#000080">com.crystaldecisions.sdk.occa.report.lib.ReportSDKPrinterException</font></u><font color="#ff0000">: Printer name could not be set: Brother MFC-8840D Printer on Megatron---- Error code:-2147215357 Error code name:internal</font><font color="#ff0000"> <p align="left">at com.crystaldecisions.sdk.occa.report.lib.ReportSDKPrinterException.throwReportSDKPrinterException(Unknown Source)</p><p align="left">at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.printReport(Unknown Source)</p><p align="left">at com.crystaldecisions.reports.sdk.PrintOutputController.printReport(Unknown Source)</p><p>at JRCPrintReport.main(<u><font color="#000080">JRCPrintReport.java:78</font></u><font color="#ff0000">)</font></p><p>... </p><p>...</p></font><p><font color="#ff0000"> The printer name is verified to be correct.</font></p><p><font color="#ff0000">I tried to place ReportPrinter.jar at the first order but to no avail.</font></p><p><font color="#ff0000">Orbid</font></p>

    Sean:
    This is similar to mine which i followed from the sample.
    Code:
    <font color="#7f0055"><p align="left">public <strong><font color="#7f0055">class</font> JRCPrintReport
    <font color="#7f0055">static</font> final String <font color="#0000c0">REPORT_NAME</font> = "JRCPrintReport.rpt";
    <font color="#7f0055">public</font> static <font color="#7f0055">void</font> main(String[] args)
    <font color="#7f0055">try</font>
    //Open report.
    ReportClientDocument reportClientDoc = <font color="#7f0055">new</font> ReportClientDocument();
    reportClientDoc.open(<font color="#0000c0">REPORT_NAME</font>, 0);
    //Create and set print options.
    PrintReportOptions printOptions = <font color="#7f0055">new</font> PrintReportOptions();
    printOptions.setPrinterName("
    Megatron
    1160-TID");
    printOptions.setJobTitle("Sample Print Job from JRC.");
    printOptions.setPrinterDuplex(PrinterDuplex.<font color="#0000c0">horizontal</font>);
    printOptions.setPaperSource(PaperSource.<font color="#0000c0">auto</font>);
    printOptions.setPaperSize(PaperSize.<font color="#0000c0">paperA4</font>);
    printOptions.setNumberOfCopies(1);
    printOptions.setCollated(<font color="#7f0055">false</font>);
    PrintReportOptions.PageRange printPageRange =
    <font color="#7f0055">new</font> PrintReportOptions.PageRange(1, 1);
    printOptions.addPrinterPageRange(printPageRange);
    //Print report.
    reportClientDoc.getPrintOutputController()
    .printReport(printOptions);
    //Release report.
    reportClientDoc.close();
    System.<font color="#0000c0">out</font>.println("Successfully send report to the printer.");
    <font color="#7f0055">catch</font> (ReportSDKException ex)
    ex.printStackTrace();
    Any views on this error?
    Printer name could not be set:
    Megatron1160-TID---- Error code:-2147215357 Error code name:internal
    Anybody else having problems with sending a report to a printer?
    Orbid

  • AR aging report does not print alphabetically by customer name in 8.8

    AR aging report does not print alphabetically by customer name in version 8.8.
    It is possible to create a custom layout for the receivables aging summary report (to print alphabetically by BP name) to overcome this problem. However, itu2019s not possible for the u201Cdetailed receivables aging reportu201D or u201Ccustomer statement reportu201D.
    Why has SAP changed this functionality? In version 2007 SAP takes the order of the rows set on the screen unless other order is specified in the layout.
    How can we make the u201Cdetailed receivables aging reportu201D and u201Ccustomer statement reportu201D print alphabetically by customer name?
    Steps to reproduce:
    Business partners > Business partner reports > Aging > customer receivables aging
    Doubleclick on customer name to sort it in alphabetical order.
    Click on preview and select u201Creceivables aging summary reportu201D.
    The system layouts do not print by customer name in alphabetical order.
    Click on preview and select u201Cdetailed receivables aging reportu201D. The system layouts do not print by customer name in alphabetical order.
    Also, customer statement report does not print by customer name in alphabetical order.
    In SAP 2007 versions, when a marketing document or aging report is printed, SAP takes the order of the rows set on the screen unless other order is specified in the layout.
    In SAP 8.8 although it works the same way for marketing documents, it doesnu2019t work like this for Aging reports.
    I was able to change the order for the u201CReceivables Aging Summary Reportu201D only.  We cannot overwrite a System report, I had to create a new layout called:  u201CBusiness Partner Aging (Summary) (Alphabetically Sorted)u201D.
    I couldnu2019t set up the order based on BP Name for the other 2 options: Detailed Receivables Aging Report and Customer Statement Report (One page per Customer).
    Iu2019ve checked print settings and properties, and I donu2019t see any way of changing the default order for these reports.

    Reported it to SAP support + they plan to fix it in a future patch.

  • CRVS2010 Beta 2 - report does not print in Landscape mode correctly

    I am using Crystal Reports Beta 2 for Visual Studio 2010 on Windows XP. I am trying to print a report in landscape mode. The WPF Crystal Report Viewer displays the report correctly in landscape view. When I print it, it moves all the data to the center of the page, prints it in smaller font and to the left and cuts off a lot of the data on the right hand side.
    I have tried various different suggested solutions from reading other forums and nothing seems to work. Is this a known Crystal Report Viewer issue?
    Solutions I have already tried:
    1. Page setup under Crystal Reports - selected no printer (optimize for screen display)
    2. Page setup under Crystal Reports - checked dissociate formatting page size and printer paper size
    3. Setting paper orientation and page orientation at run-time to landscape.
    4. Printing to different printers
    Something to note, I can export this report as a .pdf file and it prints perfectly from adobe. This only seems to be an issue when printing directly from the WPF Crystal Report Viewer to the printer.
    Any help would be greatly appreciated! I have been stuck on this issue for a while...
    Thanks!

    Hi Sharon,
    There have been issues with printing and printers in CR 2008 and the same routines are in CR 2010. The patches we have done to help with standard paper sizes in CR 2008 are not in the Beta releases.
    Not sure if they will make it into the GA release next month. As a work around I suggest you continue exporting to PDF and then printing the PDF file until they have been resolved and patches are available.
    Thank you
    Don

  • 10 g report on line printer

    Hello Here Sumit ,
    Please Help me, I want To print My report which is made by 10 g report, in line printer.
    Thanks.

    Hi Sumit,
    You can define 10g reports to be character mode reports and then output to a character mode lineprinter using a prt file to control the output.

  • 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,

  • Print report directly to printer using RUN_PRODUCT in Forms6i

    Hi all,
    I would like to have information regarding print any .rdf directly to printer from form 6i using RUN_PRODUCT.
    I got help from Form Builder Help option and tried following coding in form
         DECLARE
         PL_ID                    PARAMLIST;
         printername          VARCHAR2(50);
         BEGIN
         PL_ID := GET_PARAMETER_LIST('WEIGHMENT');
              IF NOT ID_NULL(PL_ID) THEN
                   DESTROY_PARAMETER_LIST(PL_ID);
              END IF;
              PL_ID := CREATE_PARAMETER_LIST('WEIGHMENT');
              printername := '"'||'I.T Printer'||'"';
              Add_Parameter(pl_id, 'DESTYPE', TEXT_PARAMETER, PRINTER);
              Add_Parameter(pl_id, 'DESNAME', TEXT_PARAMETER, printername);
              Add_Parameter(pl_id, 'P_EQ_NBR', TEXT_PARAMETER, :weighment.eq_nbr);
              Add_Parameter(pl_id, 'P_WT_GKEY', TEXT_PARAMETER, :weighment.gkey);
              Run_Product(REPORTS, 'c:\wegt001r', ASYNCHRONOUS, RUNTIME, FILESYSTEM, PL_ID, NULL);
         EXCEPTION
              WHEN OTHERS THEN
              MESSAGE(SQLERRM);
         END;
    END IF;
    But report did not printed and following message received in Reports Background Engine
    Error submitting report [Thu May 07 18:49:23 2009] ...
    REP-0159: Syntax error on command line.
    Pls help.
    Thanks,
    Hassan

    Hi Heidi
    I have already tried printername := 'I.T Printer'; but result is same.
    This is also my default printer and I tried to add / remove the following coding
    Add_Parameter(pl_id, 'DESNAME', TEXT_PARAMETER, PRINTER);
    but in both cased I received the same error.
    I also tried to print thru HOST command as follows
    the_username := Get_Application_Property(USERNAME);
         the_password := Get_Application_Property(PASSWORD);
         the_connect := Get_Application_Property(CONNECT_STRING);
    the_command := 'rwrun60 report=c:\wegt001r.rdf userid= '||the_username||'/'||the_password||'@'||the_connect||' DESTYPE=Printer BACKGROUND=NO BATCH=YES ERRFILE=c:\reports\error.log LOGFILE=c:\reports\joblog.log p_eq_nbr='''||'TESTMKI'''||' p_wt_gkey=118306';
    Host( the_command );
    Host command displays correctly but no printing.
    I then change my command as follows
    the_command := 'rwrun60 report=c:\wegt001r.rdf userid=test/test@test DESTYPE=Printer BACKGROUND=NO BATCH=YES ERRFILE=c:\reports\error.log LOGFILE=c:\reports\joblog.log p_eq_nbr='''||'TESTMKI'''||' p_wt_gkey=118306'; and now report prints on printer.
    But I cannot hard coded the username, password and connect.
    Thanks,
    Hassan
    Edited by: Hassan Raza Khan Lodhi on May 7, 2009 6:55 PM

  • Can not print report directly to printer.

    Hi,
    We are using Crystal Report Server for reporting in our project.
    The version we are using is Crystal Report Server XI R2 and Crystal Report Server XI R2 SP 2.
    Please kindly advice us on the following issues we faced:
    - Can not print report directly to printer.
      The print button on the Crystal Report Viewer prints the report to pdf and user have to click "Print" again in the pdf file. This is unusual and not convenient. As we have hundreds of reports to print, is there a way we can print the reporrt directly to printer?
    - "Set to Null"
      In the default interface of the Crystal Report View, there's is this "set to null" check box that we can not remove. Is there a way to do without it?
    Thank you,
    Kenny Tew

    Morning Kenny,
    The printer settings are in server management console. Additionally see what settings you have setup for the printer for the report in the server. If it is setup to use End User printer then check your End user machine settings and make sure the printer is setup as a default printer on his/her machine.
    Please let us know how you get along with the issue.
    As far as "Set to Null" I am not sure where it is set up. A screenshot of it might help understanding it better?
    Many thanks
    Regards
    Jehanzeb
    Edited by: Jehanzeb Navid on Oct 6, 2008 11:07 AM
    Is this issue on all computers or only one computer?
    I have just tested this on my colleague machine and it asks for default printer and not pdf however on mine I setup for pdf.

  • Form 6i printing report directly to printer

    Hi Professionals,
    I am in badly need of help to print my barcode report directly to printer from form, currently it is working fine if i make it preview first and then user has to select network printer to print, but user is not accepting that manual step, and therefore we are unable to launch our material management module.
    MY CURRENT CODE WHICH WORKING FINE WITH PREVIEW..................
    add_parameter(PL_ID, 'DESTYPE', TEXT_PARAMETER, 'PREVIEW');
    add_parameter(PL_ID, 'MAXIMIZE', TEXT_PARAMETER, 'YES');
    add_parameter(pl_id,'paramform',TEXT_PARAMETER,'NO');
    add_parameter(pl_id,'STR',TEXT_PARAMETER,:IM_STR_ISSUE_MASTER.STR_CODE);
    add_parameter(pl_id,'BAT',TEXT_PARAMETER,:IM_STR_ISSUE_DETAILS.BAT_ID);
    add_parameter(pl_id,'DIV',TEXT_PARAMETER,:IM_STR_ISSUE_DETAILS.GRP_CODE);
    add_parameter(pl_id,'GRP',TEXT_PARAMETER,:IM_STR_ISSUE_DETAILS.SUB_GRP_CODE);
    add_parameter(pl_id,'ITM',TEXT_PARAMETER,:IM_STR_ISSUE_DETAILS.ITEM_CODE);
    add_parameter(pl_id,'COPIES',TEXT_PARAMETER,:IM_STR_ISSUE_DETAILS.QTY);
    RUN_PRODUCT(REPORTS,'F:\IMS\REPORTS\STOCK_IN_BARCODE.rep',SYNCHRONOUS,RUNTIME,FILESYSTEM,PL_ID);
    IF I CHANGE IT TO THE FOLLOWING FOR DIRECT PRINTING IT IS NOT WORKING
    ADD_PARAMETER(PL_ID, 'DESTYPE', TEXT_PARAMETER, 'PRINTER');
    ADD_PARAMETER(PL_ID, 'DESNAME', TEXT_PARAMETER, 'SOLABEL');
    I appreciate any efforts to resolve this issue.
    Thanks
    Ahon
    Edited by: [email protected] on Oct 4, 2009 11:20 PM

    Guide to Implement local printing on client in 10gas/9ias
    To archive this goal we have used orarrp(Oracle Reports Remote Printing Utility), which can be downloaded from the OTN website http://otn.oracle.com/sample/products/reports/index.html.
    Steps:
    1.Add the required ORARRP mime types to the Oracle HTTP Server configuration.
    (Note: This will be the Oracle HTTP Server belonging to the Oracle Application Server 10g/9ias middle (BI & Forms) tier)
    Do this manually by editing the httpd.conf
    or
    via the Oracle Application Server 10g AS Console e.g.
    Navigate to the Middle Tier Components Page
    Click on HTTP_Server -> Administration -> MIME Types
    NOTE: MIME types added in httpd.conf are as per requirement mode in which report has to be run e.g. pdf, rt(rtf) and html etc. syntax for manual entry in httpd.conf is given below.
    AddType application/x-orarrp-text     rrpt
    AddType application/x-orarrp-ps     rrpp
    AddType application/x-orarrp-pdf     rrpa
    AddType application/x-orarrp-rt     rrpr
    AddType application/x-orarrp-ini     rrpi
    AddType application/x-orarrp-html     rrph
    2. Create an aliasmatch in forms.conf pointing to a physical directory \tmp- for example, directory will be c:\tmp
    Do this by manually editing the forms.conf
    or
    via the Oracle Application Server 10g AS Console e.g.
    Navigate to the Middle Tier Components Page
    Click on HTTP_Server -> Administration -> Advanced Server Properties -> forms.conf
    Add a line like :
    # Virtual path for physical directory of temp
    AliasMatch ^/tmp/(..*) "C:\tmp/$1"
    ** IMPORTANT NOTE **
    The advantages of making the changes via EM / AS console, rather than editing the files manually, are:
    - the EM / AS console will put the mime type entries in the correct place
    - the EM / AS console automatically issues a 'dcmctl updateconfig' which synchronizes the file changes with the Infrastructure Metadata Repository
    - the EM / AS console will do the required restart of the HTTP Server component
    (Only the HTTP Server needs to be stopped and restarted – Oracle AS 10g components can remain up and running)
    If the changes are made manually then the following commands must be issued after the changes to httpd.conf and forms.conf have been made.
    Run these command at run prompt
    DRIVE:\oracle\FRHome_1\dcm\bin\dcmctl.bat updateconfig -ct ohs -v -d
    (to synchronize the changes with the Metadata Repository)
    DRIVE:\oracle\FRHome_1\dcm\bin\dcmctl.bat stop -ct ohs -v -d
    DRIVE:\oracle\FRHome_1\dcm\bin\dcmctl.bat start -ct ohs -v -d
    where DRIVE: is the drive where \oracle\frhome_1\ is installed.
    3. Copy and run orarrp.exe on client machine in program files\orarrp\ folder.
    4. Set value of options '”choose_printer=no” in orarrp.ini created at above folder.
    5. Add following lines in your code of run_report procedure.
    In declare section
    vc_file varchar2(225);
    In begin block add
    /* Generate a pseudo unique filename */
    vcfile:=:global.user_code||to_char(sysdate,'YYYYMMDDHHMISS');
    vcfile:=vcfile||'.rrpr';
    /* In this example - output will be rtf so adding .rrpr extension */
    set_report_object_property(repid, report_filename,store_var);
    set_report_object_property(repid, report_server, :global.r_server);
    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,'rtf');
    set_report_object_property(repid,REPORT_DESNAME,'C:\tmp\'||vcFile);
    ---- path can be made dynamic by making a database entry in makess.path_entry for tmp folder and
    ---using proc_path procedure from path lib.
    :GLOBAL.PrintOutPut := vcFile;
    In Run report section make following change:
         vc_reportserverjob := RUN_REPORT_OBJECT(repid,pi_id);
         report_job_id:=substr(vc_reportserverjob,length(:global.r_server+2,length(vc_reportserverjob));
         v_rep_status:=report_object_status(vc_reportserverjob);
         if v_rep_status='FINISHED' then
              web.show_document('/tmp/'||:global.printoutput,'_blank');
         else
              message ('error when running report'||v_rep_status);
    end if;
    Edited by: amitphynyl on Oct 5, 2009 1:36 AM

  • Error - Printing a report directly to printer

    Hi,
    i'm using oracle forms 9i and i'm trying to print a report directly to printer. I using the code above:
    SET_REPORT_OBJECT_PROPERTY(ReportId,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(ReportId,REPORT_SERVER,GetReportTnsName);
    IF ReportDesType = 'CACHE' THEN
    SET_REPORT_OBJECT_PROPERTY(ReportId,REPORT_DESTYPE,CACHE);
    ReportServerJob:=RUN_REPORT_OBJECT(ReportId, PList);
    rep_status := report_object_status(ReportServerJob);
    IF rep_status=’FINISHED’ THEN
    JobId := substr(ReportServerJob,length(GetReportTnsName)+2,length(ReportServerJob));
    WEB.SHOW_DOCUMENT ('/reports/rwservlet/getjobid'||JobId||'?server='||GetReportTnsName,'_blank');
    ELSE
    message ('Error’);
    END IF;
    -- logic for sending report directly to printer
    ELSIF ReportDesType = 'PRINTER' then
    SET_REPORT_OBJECT_PROPERTY(ReportId,REPORT_DESTYPE,PRINTER);
    SET_REPORT_OBJECT_PROPERTY(ReportId,REPORT_DESNAME,:parameter.p_print);
    ReportServerJob:=RUN_REPORT_OBJECT(ReportId, PList);
    rep_status := report_object_status(ReportServerJob);
    IF rep_status=’FINISHED’ THEN
    message ('Report sent to printer successfully');
    ELSE
    --handle errors
    message ('Error’);
    END IF;
    end if ;
    i get this error :
    REP-50157: Erro no envio do ficheiro para a impressora lp65. Sair com o código de erro 64
    NEED HELP !!
    Regards,

    The printer has to be known on the server where the Reports service runs.
    Also, the user who runs the Reports service has to have access to that printer. If you are running on Windows, Reports Service runs as Local system by default. Change that to a real (domain) user, who has access to the printer.

  • Crystal Reports export and print fails with SSL / https but works with http

    Windows 2008 Server, 32-bit (IIS7)
    ASP.NET 2.0
    Ajax 1.0
    Crystal Reports version 10.5.3700.0
    http:  printing works, export works
    https:  printing not working, only export to MS Excel and MS Word work.
    I am able to generate reports using both http and https, and the toolbar icons are all showing.  However, I am unable to print or export properly with SSL.
    Printing prompts me with a select printer window, and then a window 'Retrieving Page 1' follow by two messages from Crystal Print Control both stating:
    A communication error occured.  Printing will be stopped.
    Exporting generates various errors depending on which export method is being selected (however Excel and Word work over https).
    I've found the same problem on this site and other forums, but never a resolution to get exporting and printing to work with SSL.  Will someone please provide me assistance or possibly relay what settings they're using if they have Crystal Reports export or printing working over SSL in IIS7?  Everything works fine when I change the address from https to http.
    Please let me know if I can help by providing further information.  We've gone through a great deal of possible solutions with code and I'm currently looking in to IIS settings again.
    Thank you.

    Thanks Ludek. I got it by searching KB number.
    Unfortunately, it didn’t fix my problem even my IE (IE8 and IE 9) has correct setting.  I double check my version. PrintControl.CAB is version 10.2.0.1146. we use VS 2005 Crystal report and VB .NET. It works fine on HTTP. But when we use HTTPS (SSL Certificate from go daddy).
    1: Crystal report export
                Export to MS Excel, Word: pop us “File download”, then click “Save”. It says “Internet Explorer cannot download ReportView.aspx from my site. Internet Explorer was not able to open this internet site. the requested site is either unavailable or cannot be found. Please try it again later”
                Export to RPt, Rich text format: It says “Internet Explorer cannot download ReportView.aspx from my site. Internet Explorer was not able to open this internet site. the requested site is either unavailable or cannot be found. Please try it again later”
                Export to PDF : nothing happened.
    2: Print:
                Pop up dialog to select printer, click “Print” “. Shows windows “Crystal Report Viewer” and pop us error message box. Title is “Crystal Print Control”. Message is “An communication error occurred. Printing will be stopped”. Click “OK” and pop up error message box again.
    Please advise.
    Thank you very much!

  • How Can I print directly the report from the printer without showing it ?

    I know how to run the report from Form as it illustrate on this site:
    http://www.lv2000.com/articles/runreport.htm
    but the question here how could i to generate the report directly to the printer without showing it on the screen???
    I search on the net and I find that I should change this line :-
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE, cache);
    to this
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE, printer);
    but it is not working with me :-(
    is there any suggest ?!

    Check if any of these helps
    Re: Direct Printing in Forms10g
    Web.Show_Document() print report directly
    Direct Printing from client PC

  • Use abap report program to print bar code instead of smartforms

    Do anyone know how to use abap report program to print bar code?

    Hi Celina,
    http://searchsap.techtarget.com/tip/1,289483,sid21_gci839063,00.html
    I hope this will help, also it depends on the barcode type like ARTNR-code 128...
    Regards,
    Sudhi

Maybe you are looking for

  • Sync icloud calendar more than a month?

    Hi, I moved to iCloud and on both my iPhone and my iPad, the calendar has only past events for a month, before that, nothing. I checked iCloud on my browser, all the calendar settings, but I don't find a way to have ALL my calendar events appear on m

  • Changing the same column in two tables at the same time

    Hi, Oracle 10g2 I have 2 tables: 1. tab1 : Stores people info 2. tab2 : Stores people insurance info Both have an address field. What I need to do is when tab1.address is updated I want the tab2.address to update automatically and when tab2.address i

  • How To Pupulate A Combobox on Page Load in JSP

    Hi All, How to populate a combobox on a JSP Page load. Please help. Regards, Dinesh

  • Stopping the Fade to Black on Ken Burns Slide Show?

    I am trying to make a slideshow using the Ken Burns template. I want to be able to make a loop-able file (.mov or other), so I can make a looping DVD. At the end of my sideshow, there is a one second fade to black - Is there any way to stop that fade

  • Intermittent sound on boot with Pavilion dv5

    Windows Vista Product number: NM597PA#ABG Ever since I started connecting my notebook to a second monitor with HDMI I've encountered a problem where it will only boot with audio roughly one in three times. The problem persists even when I revert to t