Print dialog window disappears

Currently testing the following configuration:
App server version = 9.0.4.1
Host = Tru64
Jinitiator version = 1.3.1.13
Webutil version = 1.0.5
Problem:
When invoking the Oracle 'print' built-in and clicking on the 'ok' button on the print dialog box, the application browser is moved behind all other windows currently displayed on the desktop. Has anyone encountered this issue and if so, how did you solve it? (We use the 'print' built-in on every form to allow the user to do a screen print of the form).
Thanks for your input.

did you find any solution to this print issue. We are experiencing for one client machine. Thanks in advance.

Similar Messages

  • Print dialog window in report generation

    Hi...
    I would like to create a report from my database and send it to printer. Basicly i want to use something like print report.vi in labview examples. But the sample is print directly to the default printer, how can i display print dialog window so i can select the printer and set another properties.
    Thank you

    After some searching, I found this thread:
    http://forums.ni.com/t5/LabVIEW/Printer-selection/​td-p/23136
    Some VIs were posted which look like they should do what you need.
    Matt Lee
    National Instruments
    Applications Engineer

  • When printing Firefox does not open the Print Dialog window

    When printing at our office we often need to print to multiple printers and not just the default printer. When printing in Firefox, however, the print automatically gets sent to the default printer and I do not get a print dialog window. I have reset Firefox's printer options, changed the prefs.js file, and launched Firefox from safe mode to check if an add-on is affecting printing - all to no avail. When I print from Chrome, or (shudder) Internet Explorer I get a dialog box giving me printer options. Your help and responses will be appreciated.

    There is a hidden preference to bypass the dialog, but it definitely is not set by default. To check for that:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box above the list, type or paste '''print.''' and pause while the list is filtered
    (3) If you discover a preference named '''print.always_print_silent''' there's your trouble.
    Next question would be, where did it come from?! Some possibilities:
    (A) A user.js file that overrides prefs.js at startup. See: [[How to fix preferences that won't save]].
    (B) A lock file in the program folder. See: http://kb.mozillazine.org/Locking_preferences

  • How to Skip Print dialog window in smartforms

    Hi Experts,
    while printing the smartforms i dont want Print dialog window. I want as and when i pressed the print
    button it'll directly print with the specified printer.
    I tried with lot of option but it is not working for me . May be i missed some prameter to pass.
    Have a look in to my code below and make me correct .
    DATA : WA_CPARAM TYPE SSFCTRLOP,
           WA_OUTPUT TYPE SSFCOMPOP,
           JOB_OUTPUT_INFO TYPE SSFCRESCL.
          WA_CPARAM-PREVIEW = 'X'.
           WA_CPARAM-NO_DIALOG = 'X'.
          WA_CPARAM-DEVICE = 'PRINTER'.
          WA_OUTPUT-TDNOPRINT = 'X'.
           WA_OUTPUT-TDDEST = 'LP06'.
           WA_OUTPUT-TDIMMED = ' '.
           WA_OUTPUT-TDNEWID = 'X'.
          WA_OUTPUT-TDDELETE = 'X'.
           WA_OUTPUT-BCS_LANGU = SY-LANGU .
          WA_OUTPUT-TDPRINTER = 'X'.
    CALL FUNCTION FNAM
    EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
       CONTROL_PARAMETERS = WA_CPARAM
       OUTPUT_OPTIONS     = WA_OUTPUT
       USER_SETTINGS      = ' '
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS = T_SSFCOMPOP
      USER_SETTINGS = ' '
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       = SSFCRESPD
       JOB_OUTPUT_INFO            =  job_output_info
      JOB_OUTPUT_OPTIONS         = WA_OUTPUT
        TABLES
        ITAB1                      = IT_ZADVMUTH1
    EXCEPTIONS
      FORMATTING_ERROR           = 1
      INTERNAL_ERROR             = 2
      SEND_ERROR                 = 3
      USER_CANCELED              = 4
      OTHERS                     = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanks In Advance.
    Satya

    Try with below parameters, it may help you to close the thread.
    WA_CPARAM-device = 'LP06'.
    WA_CPARAM-no_dialog = 'X'.
    WA_OUTPUT-tdnoprev = 'X'.
    WA_OUTPUT-tddest = 'LOCL'.
    WA_OUTPUT-tdnewid = 'X'.
    SELECT SINGLE * FROM usr01
    INTO ls_usr01
    WHERE bname = sy-uname
         AND spdb  = 'G'.
    If sy-subrc EQ 0.
    WA_OUTPUT-tdimmed = ' '.
    ELSE.
    WA_OUTPUT-tdimmed = 'X'.
    ENDIF.
    Regards,
    SaiRam

  • Printer Dialog Window Error

    Hi everyone, when i'm getting to select the printer dialog window it doesn't pop up and getting a dump error.
    Application has a problem,
    Diagnositc file: C:\Program Files\SAP\SAP Business One\Log\SAP Business One_20091126091340.dmp was created.
    Please contact support and attached diagnostic file.
    Your immediate response is highly  appreciated.
    Thanks.

    Hi
    Check whether this error is coming while  selecting print dilog  for specfic document r for all..
    If it is coming for specfic doc print then ther is chance is there that PLD might be having some problem, u try with other pld for same & check...if it was not coming then there is problem in Pld only....
    If its coming for all , then uprgade to new Patch Level d try. If again its coming then u have to log a Ticket To SAP only.
    Giri

  • Avoid a print dialog window

    Hello,
    I need to print production papers using adobe forms.
    Unfortunatelly after saving a production order i get the print dialog window.
    Is it possible to print immidiatly to the standard windows printer withtout to select it amnually?
    Which setting are possible in "fill_outputparams" for SFPOUTPUTPARAMS?
    Thanks in advance,
    Evgenij

    Hello
    You will have to read the current Print parameters using FM CALL FUNCTION 'GET_PRINT_PARAMETERS' and pass it to structure sfpoutputparams
    Try to set the printer to LOCL .
    gs_fpoutparams-dest       = 'LOCL'.
    DATA: ls_options TYPE itcpo.
         DATA: lv_dialog TYPE c.
         DATA: ls_pri_params TYPE pri_params.
    *        gs_fpoutparams TYPE sfpoutputparams.
         lv_dialog = 'X'.
        CALL FUNCTION 'GET_PRINT_PARAMETERS'
           EXPORTING
             no_dialog      = 'X'
             mode           = 'CURRENT'
           IMPORTING
             out_parameters = ls_pri_params.
         ls_options-tdcopies   = ls_pri_params-prcop.
         ls_options-tddest     = ls_pri_params-pdest.
         ls_options-tdnewid    = ls_pri_params-prnew.
         ls_options-tdimmed    = ls_pri_params-primm.
         ls_options-tddelete   = ls_pri_params-prrel.
         ls_options-tdlifetime = ls_pri_params-pexpi.
         ls_options-tdtitle    = ls_pri_params-prtxt.
         ls_options-tdcover    = ls_pri_params-prsap.
         ls_options-tdcovtitle = ls_pri_params-prtxt.
         ls_options-tdreceiver = ls_pri_params-prrec.
         ls_options-tddivision = ls_pri_params-prabt.
         ls_options-tdautority = ls_pri_params-prber.
         gs_fpoutparams-device     = ls_options-tdprinter.
         gs_fpoutparams-preview    = ls_options-tdpreview.
         gs_fpoutparams-dest       = ls_options-tddest.
         gs_fpoutparams-reqnew     = ls_options-tdnewid.
         gs_fpoutparams-reqimm     = ls_options-tdimmed.
         gs_fpoutparams-reqdel     = ls_options-tddelete.
         gs_fpoutparams-reqfinal   = ls_options-tdfinal.
         gs_fpoutparams-senddate   = ls_options-tdsenddate.
         gs_fpoutparams-sendtime   = ls_options-tdsendtime.
         gs_fpoutparams-schedule   = ls_options-tdschedule.
         gs_fpoutparams-copies     = ls_options-tdcopies.
         gs_fpoutparams-dataset    = ls_options-tddataset.
         gs_fpoutparams-suffix1    = ls_options-tdsuffix1.
         gs_fpoutparams-suffix2    = ls_options-tdsuffix2.
         gs_fpoutparams-covtitle   = ls_options-tdcovtitle.
         gs_fpoutparams-cover      = ls_options-tdcover.
         gs_fpoutparams-receiver   = ls_options-tdreceiver.
         gs_fpoutparams-division   = ls_options-tddivision.
         gs_fpoutparams-lifetime   = ls_options-tdlifetime.
         gs_fpoutparams-authority  = ls_options-tdautority.
         gs_fpoutparams-rqposname  = ls_options-rqposname.
         gs_fpoutparams-arcmode    = ls_options-tdarmod.
         gs_fpoutparams-noarmch    = ls_options-tdnoarmch.
         gs_fpoutparams-title      = ls_options-tdtitle.
         gs_fpoutparams-nopreview  = ls_options-tdnoprev.
    *    gs_fpoutparams-noprint    = ls_options-tdnoprint.
         gs_fpoutparams-nodialog = 'X'.
         gs_fpoutparams-noprint = ' '.
         CALL FUNCTION 'FP_JOB_OPEN'
           CHANGING
             ie_outputparams = gs_fpoutparams
           EXCEPTIONS
             cancel          = 1
             usage_error     = 2
             system_error    = 3
             internal_error  = 4
             OTHERS          = 5.
         IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
    Regards
    Sandy

  • Open Printer dialog window

    Can I open the Windows Printer dialog window in Forms during runtime and then send the printer name that the user selected to Oracle Reports?

    Here is the code for showing the WINDOWS PRINTER DIALOG BOX. REMEMBER YOU HAVE TO ATTACH D2KWUTIL.PLL file for this to work.
    declare
    v_printer_name varchar2(1000) := null;
    v_port varchar2(1000);
    v_exception boolean;
    begin
    win_api_dialog.select_printer(v_printer_name,v_port,v_exception);
    wmessage('Printer is '&#0124; &#0124;v_printer_name);
    :b_selection.local_printer := v_printer_name;
    exception
    when others
    then
    :b_selection.local_printer := null;
    end;
    null

  • Smartform output without print dialog window

    i mean..,
    when i clicked execute button in smartforms
    i don't want to give the values in print dialog window (like LP01 and clicking print preview button)
    i want the smart from output when i click on execute button ..,
    so can anybody help me plllllzz.
    Moderator message: please search for available information/documentation before asking, do not use SMS speak.
    Edited by: Thomas Zloch on Nov 10, 2010 1:55 PM

    you can help yourself by searchin the SDN, this has been asked & answered more than once.
    Just a tip on a sidenote: Studying the interface of the FM which calls the smartform can help a lot.

  • I JUST PURCHASED A HP LASERJETPRO P1102W BUT THE PRINT DIALOG WINDOW IN CS6 IS DIMMED AND WILL NOT ALLOW COLOR SEPARATIONS TO BE PRINTED?

    I JUST PURCHASED A HP LASERJETPRO P1102W BUT THE PRINT DIALOG WINDOW IN CS6 IS DIMMED AND WILL NOT ALLOW COLOR SEPARATIONS TO BE PRINTED?

    Save as a PDF and print the separations out of Acrobat.

  • Print dialog items disappear

    This has been happening a lot more frequently, but everytime I print with either Preview, Safari, or Mail, a lot of the buttons, check boxes, pop-up menus, etc. completely disappear in the print dialog boxes. A couple of items might show up (i.e. a pop-up menu for the printer), and if I choose something in the menu, a few more items might appear in the rest of the dialog box.
    Any ideas?
    I using 10.4.5.

    I'm having the same problem...posted a few days ago, hope there is a resolve soon : )
    "When I choose PRINT (in Safari, Preview and Mail) the print window shows up, but the options QUICKLY DISAPPEAR leaving ONLY the name of the printer, # of copies and print button showing... Anyone know how to resolve this?"

  • Print dialog window does not go away

    Hi,
    This is an issue I've experienced many times. When I try to print a web page from Safari, the print dialog opens, I select the printer and/or orientation, then I click on the "OK" button. But, the window does not respond, Safari seems to be working (it does not appear as 'not responding' in the 'force quit' dialog and the menus are selectable. But the window does not go away, nothing is sent to the printer, and Safari does not respond to certain operations such as moving to another tab, go back, or change the url, so basically I am stuck, no printing, and end up closing safari to open it again.

    Hello mario:
    Is this an intermittent problem, or does it happen all the time? I would, at a minimum, run repair disk from your software install DVD and also run permission repair from your HD.
    I would also trash the Safari preference file (com.apple.safari.plist) and restart.
    Of course, the problem could lie in the connectivity with your printer, but that is another issue.
    Barry

  • How can we print using the windows printer dialog window?

    Hi,
    We recently got new printers and a printer setup on our server that are set to print in greyscale as a default. In the past the printers defaulted to printing in color. When I create VI's and reports I have used to set "Print on completion" or the print option from the Report Generation Toolkit, and I have received my prints in color. After changing the printer drivers on the server any printing method I used to do from LabVIEW will always produce greyscale prints. These prints are fine for everyday use, however we need color prints when the documents are for customers or for other official use.
    If I could only send documents/VI's to that process the user could override the "greyscale" setting and select "color" in the cases where we need a better looking print. Obviously the other option is to save the document/VI as a file and later print it from any windows software (Excel, Paint etc.).
    Do anyone have any neat tricks for printing using the windows printer dialog?

    You can change printer settings programmatically via a .NET assembly. You can also bring up the Print Dialog to change settings manually before printing.
    More info on the .NET assembly for colour settings here:
    https://msdn.microsoft.com/en-us/library/system.drawing.printing.pagesettings.color(v=vs.110).aspx
    An NI KB link on calling a print dialog:
    http://digital.ni.com/public.nsf/allkb/80DD23A28BD8ADF9862575AC0077B1BB?OpenDocument
    CLD

  • Changing Print Dialog Window

    Hello,
    Looking for ways to change the appearence of the Print Dialog Box.
    Hope this makes sense.
    In the Print Dialog Box the drop down menu that list: "Copies & Pages", "Layout", "Output Options", ..... "Printer Features".......
    I want it to list "Printer Features" first in the drop down menu! How do I change this so this gets listed first?

    After some searching, I found this thread:
    http://forums.ni.com/t5/LabVIEW/Printer-selection/​td-p/23136
    Some VIs were posted which look like they should do what you need.
    Matt Lee
    National Instruments
    Applications Engineer

  • Delay in displaying print dialog window

    When I click on 'print', in Reader (any version) there is a 90 second delay before the print window appears! This seems to be because Reader 'polls' all the printers in my list, before showing the window.
    I can make the problem disappear by deleting the printers which are not connected at the time - but then, I have to re-install those printers each time I re-connect them, and want to use them.
    Is there any way to set Reader so that it only 'polls' printers when they are chosen via the dialog box - in the same way that other applications (such as MS Word) do? That way, you only get a delay if you try to send output to a printer that is currently disconnected.
    (Sorry if this has been covered before - I couldn't find a thread)

    OK, problem solved.
    It appears that a printer on a user's printer list would cause the delay each time you attempted to print a pdf. Saw this occur from Acrobat Reader, Standard, and Professional.
    The solution is to delete a suspected printer from the Printers and Faxes list, then try printing a pdf. You'll know when you've deleted the correct printer, as the dialog box will come up immediately when you File/Print. Keep deleting until you've got the correct printer.
    Network printers no longer installed should be your first suspects. However, we found valid, working printers to be the cause on a couple of occasions.

  • Save As dialog window disappears when trying to save or use pdf writer

    When I try to create a pdf using a pdf writer/printer, or even when i try to save a pdf file, the dialog box showing where to save it appears then immediately disappears before i can choose a name or location to save the pdf.  i have tried reinstalling the reader, reooting, reinstalling the pdf writer, nothing seems to work.

    I have tried multiple pdf writers including cutepdf and a proprietary pdf writer so I am pretty sure the problem lies within adobe reader.  Especially since the problem occurs when I just try to save the pdf and not use the writer.

Maybe you are looking for

  • Acrobat 9 Pro Distortion

    I am using OS windows vista ultimate and Acrobat 9 Pro. When I print my word document eveything prints fine. However when I convert the same word document to a PDF the logo prints with a yellow background. (the logo is a jpg) This is annoying as it r

  • Exception handling in an RFC server

    Hi,    I've an RFC server coded in vb.net.  Am trying to capture the exceptions raised by the server in an ABAP program.  But it is giving a short dump.  Can any one tell me the reason for this?  Regards, Aravinda Sarma M. The following is the code:

  • Adding batch serial number to report file name in sequential model

    Hi, I'm using a Sequential model in TS 4.0 and have learned how to add the UUT serial number to the report file name. But I would like to add the batch serial number instead. Is this possible? Any modifications to the ReportOptions callback seem to o

  • How to convert raw 1024 data to Excel data

    Hi, I am having requirement to send email as attachment in CRM, by  using cl_crmcmp_c_mailcuco_impl  class for sending mail. i am able to send PDF documents but for excel it is not working i am getting data into the table of type crmt_isx_inv_docdeta

  • Why does Firefox list of plugins show "Shockwave Flash" when what is installed is really Adobe Flash Player; they are different .

    Adobe; various websites; and now seemingly Firefox seem to continually confuse and obscure things regarding the two different Adobe Players (Adobe Flash Player AFP and Adobe Shockwave Player ASP). According to this security alert web article ASP is f