While c.lick the print button, communication error is raising

Hi,
Environment details:
OS: Windows 2008 with IIS-7
Crystal report 2008 runtime deliverables are installed
     I am using aspx to launch the report. The crystal report is getting launched and all the options are working fine. But When i try to print the report. It throw error as Communication error. In this environment virtual directory is exposed to launch through internet. The PrintControl.cab file is getting downloaded.
     While analysing the problem by fiddler, i find out the print task request url additionally contains port number 8080 and the response is Gateway timeout Error(Http response code:504). The report launching process is out the postback url with portnumber.
     Can anyone please help me to overcome this issue?
Thanks,
Ramkumar M

Look for the search box in the top right corner of this web page. Enter the following string: 'Communication error crystal net'. You should get a number of results. See if any of those help.
Ludek
Follow us on Twitter http://twitter.com/SAPCRNetSup
Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

Similar Messages

  • SSRS & Report Viewer control - Show the print button and fire print for multi page report in Mozilla & Chrome

    I have reports in SSRS. I am using remote reports. Reports have multiple pages.
    In IE, the print button displays, but in Firefox and Chrome, it does not display.
    Below links shows how to display the print button for mozilla and chrome. These solutions only fire the print for the
    current page in the report viewer-
    http://stackoverflow.com/questions/951009/sql-reporting-services-print-button-not-shown-in-mozilla
    http://stackoverflow.com/questions/4208457/ssrs-print-button-in-chrome-and-firefox
    I need to be able to issue a print command for all
    pages in one go from the reportviewer.

    Hello,
    The common workaround about print button on ReportViewer control for non-IE browsers is add ActiveX print control or create Print function. It has pros and cons.
    I am not good at programming. But you can try to disable page breaks by setting InteractiveHeight to 0 so that the report will rendering in single page with Report Viewer control.
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Using the print button to print then close a document

    I use Live Cycle Designer to create my Adobe documents.  I am working on a kiosk project and one of the menus navigates to a document page that has PDF documents and forms for users to print out.  The way the kiosk is designed, I would like for my pdf file to close after the print button is selected.  I recieved a solution in the general Adobe forum, but later found out the script does not work if the document was made using Live Cycle.  Any suggestions???  Is it possible??? Thanks.

    Open your PDF file in adobe livecycle designer, select print button on PDF.
    Go to windows(in adobe designer menu bar) and select Script Editor - In Show dropdown list select postPrint event and copy paste the code below-
    app.execMenuItem("Close");
    Regards-
    Chalukya.

  • I cannot see the print button on the bottom tab in order to print a document even when I hide to tool bar.

    I recently changed my computer software from Vista to Window & Ultimate. Since changing, I cannot see the print button which should be at the bottom. I have tried to hide the bottom toolbar but it still does not allow me to see the print button. Please give me directions in easy to read English.

    If the menu bar is hidden then press the F10 key or hold down the Alt key to make the menu bar appear.
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible:
    *"View > Toolbars"
    Open the Customize window to set which toolbar items to display:
    *View > Toolbars > Customize
    *Firefox > Options > Toolbar Layout
    *Check that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    *If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the toolbar palette in the customize window to the Bookmarks Toolbar
    *If missing items are in the toolbar palette then drag them back from the Customize window on the toolbar
    *If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up
    *https://support.mozilla.org/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • Can't reach the print button on the bottom of the page

    When the page preview page appears, I can't reach the print button at the bottom of the page.

    To use AirPlay, you will need the following:
    iPhone  4s (or later), iPad 2 (or later), iPad mini, or iPod touch (5th generation)
    Apple TV (2nd or 3rd generation)
    AirPort Express
    Wi-Fi (802.11a/g/n) network

  • Where is the print button on my all in one

    where is the print button on my all in one pc i cant see it at the top of the page

    Hi,
    Hundreds of AIO models are out there, what is the model of your printer ? Where do you print from: from its card reader of from a computer ?
    Regards. 
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to send the ALV GRID output to spool by using the print button in std t

    How to send the ALV GRID output to spool by using the print button in standard tool bar.
    We have created a button in the va02 transaction.  If user click on the button the new screen will be display on that screen we are populating the alv grid output using the oops concept.  But i am unable to send the output to spool using the print button in the standard tool bar.
    I am able to display the Print parameter dialog box but i am not able to send it to spool.
    Kindly help.
    Thanks In Advance.
    G.V.Ramana

    Hi Shaik,
    There is not properties button in my print screen.
    MODULE user_command_0900 INPUT.
        WHEN 'EXCEL'.
          PERFORM excel_download.                              
        WHEN 'PRI'.
          PERFORM print_output.
    form Print_output.
    CALL FUNCTION 'RSPO_LIST_LAYOUT_FITS'
               EXPORTING
                    columns        = 80
                    device         = 'ANY '
                    lines          = 65
                    maxpenality    = 1999
               TABLES
                    layouts        = lt_layouts1
               EXCEPTIONS
                    unknown_device = 1
                    OTHERS         = 2.
          IF sy-subrc = 0.
            LOOP AT lt_layouts1.
              IF lt_layouts1-penality < 1000        AND
                 lt_layouts1-penality < l_min_penality.
                l_layout       = lt_layouts1-layout.
                l_min_penality = lt_layouts1-penality.
              ENDIF.
            ENDLOOP.
            IF NOT l_layout IS INITIAL.
              CALL FUNCTION 'GET_PRINT_PARAMETERS'
                   EXPORTING
                        mode                   = 'CURRENT'
                        line_size              = 80             "#EC *
                new_list_id            = l_new_list_id
                        no_dialog              = l_no_dialog
                        layout                 = l_layout
                   IMPORTING
                        out_archive_parameters = rs_arc_params
                        out_parameters         = rs_pri_params
                        valid                  = l_valid
                   EXCEPTIONS
                        archive_info_not_found = 1
                        invalid_print_params   = 2
                        invalid_archive_params = 3
                        OTHERS                 = 4.
              IF sy-subrc NE 0.                                 " INS SLIN
              ENDIF.                                            " INS SLIN
              IF rs_pri_params-linsz LT 80 OR
                 rs_pri_params-linsz LT gt_stack-s_lprint-width.
                gt_stack-print_line_break = 'X'.
              ELSE.
                CLEAR gt_stack-print_line_break.
              ENDIF.
              IF l_valid NE 'X'.
                rs_pri_params = ls_pri_params_sav.
                rs_arc_params = ls_arc_params_sav.
              ENDIF.
            ENDIF.
          ENDIF.
    endform.                    " Print_output
        CALL METHOD gv_cost_tot_alv_grand->set_table_for_first_display
                EXPORTING
                   is_layout         = gs_layout_cost_tot_grand
                CHANGING
                   it_fieldcatalog   = gt_fcat_cost_tot_grand[]
                   it_outtab         = gt_cost_tot_grand[].
    Please check my code

  • Report is not starting an adobe window when pressing the print button

    When ever I press the print button on my report and I get the box that asks you which page to print.  I choose all and then press the ok button.  Nothing happens when I press the ok button.  I'm I missing something on the server that is running the application.  It works locally but not on my test server.
    Thank you

    Well, in order to print using PDF, you must have adobe installed...
    I understand that you have some CR Service Pack installed, but I am not sure which one. I'd recommend you download SP 5 from here;
    https://smpdl.sap-ag.de/~sapidp/012002523100013876392008E/crxir2win_sp5.exe
    And use the msm to install the runtime. The SP 5 msm is here;
    https://smpdl.sap-ag.de/~sapidp/012002523100001088442009E/crxir2sp5_net_mm.zip
    Re.; I was wondering I am missing something from the server that converts the report to pdf and shows it in the adobe viewer.
    Not  that I am aware of.
    If SP 5 does not help, a question for you; can you print any pdf document (non CR) from adobe on that server?
    Ludek

  • Inactivate the print button is the ABAP list

    How can I inactivate the print button in the report program (ABAP list)?
    I can inactive the print button on selection screen by using 'RS_SET_SELSCREEN_STATUS'. But can't achieve the same effect after the program jumped to the list output screen.
    Thanks!

    hi,
    To achieve this you need to create your own custom pf-status. The tcode for creating new pf-status is se41. Goto SE41, enter the program name and click create.
    Enter the menu bar buttons, application tool bar button and Function key as per your requirement. Active the pf-status. Once the pf-status is created, use this in your program using the statement.
    set pf-status 'ZPF'.
    Regards,
    Richa.

  • While updating to the new ios5 software error 1602 appeared now is not responding???

    while updating to the new ios5 softwhere error 1602 appeared now iphone is not responding, 

    http://support.apple.com/kb/TS3694#error1602

  • Since I downloaded Adobe Reader 11.0.07 I have been totally unable to print any PDF files using my Dell 1720 laser printer - I just get a blinking "error" light on the printer, no other error messages . I never had a problem printing PDF files before down

    Since I downloaded Adobe Reader 11.0.07 I have been totally unable to print any PDF files using my Dell 1720 laser printer - I just get a blinking "error" light on the printer, no other error messages . I never had a problem printing PDF files before downloading the new Reader version. Suggestions? Thank you.

    Hi,
    Which version of Adobe Reader were you using earlier when printing using Dell printed was working fine?
    Thanks,
    Shakti K

  • I can't print my document from Pages...the Print Button is down behind the Dock...and I can't click it to Print....healp!

    I can't print my document from Pages...since the Print Button is lodged behind the Dock...What do I do?

    Hi Judith,
    Your Print button should be accessible, of course, but sometimes we can do things to confuse the system and we have to take some action to get out of that situation. This case sometimes arises if we change the resolution of our screen display since opening the app, or if we change the position of something that is set to "stay on top" of the display.
    If the Dock is the problem right now, you could Hide it or Move it to a different edge of the display, to get it out of the way. Settings are in System Preferences, Personal, Dock. I usually have my Dock set to automatically Hide itself, so it's never in the way.
    You could also try Saving, Closing and reopening Pages and see if that resets the location of the Print Dialog. Or, you could  just hit Return rather than clicking on the button.
    Jerry

  • Reader XI has the print button off the screen when on 800x600 resolution

    Reader XI has the print button off the screen when on 800x600 resolution as well, how to fix without changing resolution?  A user needs the resolution set to that for her eyes.
    I see that this was an issue in Reader X and update 10.1.3 resolved it.  What was the fix?

    The scrollbar appears and works but unfortunately the dialog size is still too big therefore the print button ends up being hidden by the windows taskbar. Could you please make sure that the print dialog size is calculated against the work area (desktop size minus the taskbar, there's a win32 API to get that) rather than the whole desktop to fix the issue?
    That would also fix another issue: when the taskbar is sized higher than usual whatever the resolution you have it could still end up covering the print buttons but if you calculate against the work area rather than the desktop area that issue would be fixed as well.
    Please don't leave it unfixed because even if the requirements say 1024x768 if you have higher DPI settings or have a taskbar with a non-default size the print button could easily become unreacheable.

  • When I get directions from Mapquest and click the "print" button, a new window opens but it is blank. How do I fix this? Thanks

    When I click the "print" button a simplified set of directions should pop up for me to print.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]

  • How to get the printer button to appear

    The buttons on my printer should say scan, copy & print.
    They are now saying scan, copy & copy.   how do I get the print button back, as I cannot print

    Hi,
    What is the exact printer model? is it the HP Photosmart C4385?
    The following model does not provide any fax capabilities as you may find by its datasheet below:
    http://cdn.cnetcontent.com/b6/14/b6144c8e-0a16-4ce3-a66d-2eb03e86f4d9.pdf
    If I misunderstood your pritner model, please clarify the exact model.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

Maybe you are looking for

  • Viewing PDF Portfolio's

    Hello, I have created a PDF Portfolio and am trying to send it to various people. How can they view it without Adobe Pro?? Thank you

  • When i did a software update of my iPhone, my contacts were changed to .olk14 Contact file type. So I can't open them in any program, help!

    When i did a software update of my iPhone, my contacts were lost. In my notebook they changed to .olk14 Contact file type, so I can't get tem in any program (outlook and others). Please helpme!

  • FLV Video Goes Black

    Hello, I have a FLV video playing through the Media Display componet, however, when the video is finished playing, the image goes black. I've tried reseting the video, adding an extra frame at the end of the FLV video, moving the componet off the sta

  • Declaration: Map or HashMap

    Hi. Question: I've read something about the declaration of a HashMap; some authors recommend (claims) that the variable containing the HashMap object should be declared to be of the interface Map. That's because of some methods that will take a Map a

  • Hotspot problem solving

    Recently I've updated my iphone 4 to the latest iOS version. Since then I've been unable to connect to my hotspot. It seems, every time I type my carriers info in the APN space in the hotspot section, it erases it as soon I go back to the main menu.