Print Dialog not opened -Smartform

Hi Experts
            We have defined a output type and assigned a smartform for Invoice.
           The problem is we have included 60 billing items into a single billing document.
           So, when we try VF02 and the Issue output type, it opens the window and select the output type then give the print preview, the print dialog window is not opened.
           when i try it debug mode, the RV_MESSAGE_DIALOG fm returns the value(4) as  OTHERS.
             So it leaves the transaction, how to solve this problem, what could be the reason actually. Its most urgent, pls anyone help me.
Thanks in advance.
Regards
Rajaram

solved

Similar Messages

  • Print Dialog Box Opens behind open windows

    The print dialog box opens behind any open windows everytime I print to a PDF.
    It seems to happen from every program AutoSketch, Word, Excell, QuickBooks.
    Very annoying.
    The minimized dialkog box opens and flashes below on the task bar. When you click on the mini icon the print dialog box comes to the front.
    How can I get the dialog box to open on top of all windows?
    Scott

    I was unable to find the SavedData file.  I am running Windows 7 and there seems to be two files there /Roaming/Adobe/InDesign and /Roaming/Adobe/AdobeInDesing5.5 and neither one has a clear file name "InDesign SavedData" for me to remove.  I think I found the "InDesign Debaults" under the /Roaming/Adobe/InDesign/version7.5/en_US/InDesignDefaults.  Is that one it?

  • Print dialog not displaying when trying to print PDF document

    Hello All,
    I am using below code to print a pdf file. And the same code working fine when i am using with simple java class. and if i am using the same code with my jsf backing bean action method it was not working.
    Code here:
    Document document = new Document();
    FileOutputStream combinedOutput = new FileOutputStream(bulkBarcodes);
    PdfWriter.getInstance(document, combinedOutput);
    document.open();
    String barCodeNum = filetrakcode.getBarCodeID().toString();
    Barcode bc = new Barcode(barCodeNum, DEFAULT_CONFIG_FILE);
    document.add(new Paragraph("\n"));
    document.add(new Paragraph("\n"));
    Image image = Image.getInstance(bc.generateBarcodeBytes(bc.getBarcode()));
    document.add(image);
    combinedOutput.flush();
    document.close();
    combinedOutput.close();
    File f = new File(bulkBarcodes.getAbsolutePath());
    FileInputStream fis = new FileInputStream(f);
    FileChannel fc = fis.getChannel();
    ByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
    PDFFile pdfFile = new PDFFile(bb); // Create PDF Print Page
    PDFPrintPage pages = new PDFPrintPage(pdfFile);
    PrinterJob printJob = PrinterJob.getPrinterJob();
    PageFormat pf = PrinterJob.getPrinterJob().defaultPage();
    printJob.setJobName(f.getName());
    Book book = new Book();
    book.append(pages, pf, pdfFile.getNumPages());
    printJob.setPageable(book);
    //Send print job to default printer
    if(printJob.printDialog())
    printJob.print();
    When i am calling my action method (method contains above code) it was creating pdf file and writing the data init success fully but when i have not used "if(printJob.printDialog())" it was printing document directely successfully but when i am calling "if(printJob.printDialog())" it was not opening print dialog box and it was showing me like process is going on and it was not proceeding further
    what's the problem
    Please help me.
    Thanks In advance,
    Indira.

    Hi Kavi,
    just have a look into the driver-program. I'm pretty sure someone has programmed a loop.
    IF it is a NAST-driver program, check if your specific user has a printer SU03. That sounds a lot like this mistake
    ~Florian

  • Print preview not opening with File Print command in CS4

    I have been printing fine until recently, but now when I choose file > print in Photoshop the print preview pane does not open. The menus gray out, but that's it. If I select print from other programs (I checked Preview and Acrobat) the print dialog appears. I am working with CS4 11.0.2. on OSX version 10.6.8, printing with an Epson 2200. I tried deleting and re-adding the printer. I haven't installed anything new recently that might interfere.
    Your help would be much appreciated!

    Try a different printer driver to see if this has anythign to do with the .ppd used by epson 2200, try even adoeb pdf.
    Reset your preferences.
    Cmd-Opt-Ctrl-Shift when restarting AI on a Mac  to reset to the defaults.

  • Print dialog not shown on Acrobat reader 11 and Mac OS X 10.9.2

    No matter what document I open, print dialog never appear and I cannot print any document.
    I tried also to install older version of acroread but still no luck.
    I found also this settings tab quite strange like something is missing.
    Can anyone help me?

    I have the same problem.
    It is not a matter of 'error message' nor does it have anything to do with the link provided. That link is all about scanning initiatives from the Mac. The question here is about doing the scanning initiative from the scanner control panel. That is called 'Scan to computer'.
    Somehow the Mac has to be put in a receiving mode for that (makes sense). HP only provides the neccessary info for Windows, because 'This step is not necessary for Mac operating systems'. See http://h20566.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/learnUseDisp lay/?sp4ts.oid=5304875&spf_p.tpst=psiContentDisplay&spf_p.prp_psiContentDisplay= wsrp-navigationalState%3DdocId%253Demr_na-c03767419-7%257CdocLocale%253Den_US&ja vax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vi gnette.cachetoken
    Seems the Mac is in receiving mode by default. But that is not the case. Because the printer says it sees no available computers.
    So how can the Mac be put in receiving mode manually ? Or what should happen to make it in receiving mode by default ?

  • 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

  • Acrobat Pro XI print dialog box opens in background, Web Browser

    Issue:  From web browser apps, I select Print > Adobe PDF > then, the Save PDF File As dialog box opens in the background instead of the foreground.
    Acrobat Pro XI / Acrobat Pro 11.0.2
    IE8 x32 / IE8 x64 / Firefox 20.0.1
    Win7 Ent x64 SP1
    Dell Latitude with I5 proc and Intel video
    Dual screens with extended desktop display via DVI
    In Distiller, I check the box for Preferences > Ask for PDF file destination.
    I was issued a new corporate laptop a few months back, specs are above.  Did not have this issue with Acrobat Pro X on my old Dell Latitude running Win7 Ent x64 SP1.  So, I have multiple new moving parts in what could be the root cause.
    Any ideas?
    Thank you,
    Doug

    CowboyInAZ wrote:
    "Acrobat is a fincky application..."
    One thing I've learned since OSX 10.2 is that Mac is finicky about printer drivers too.
    I had a Lexmark and it would freeze all the time after I switched to Panther. It was a discontinued model so when I moved up to 10.3 there were no new drivers. The old ones installed OK but they would cause it to freeze up and if it did print, it took about ten minutes to get through a page of text.
    I got a new printer and one tht had current drivers available for Mac and the problem was solved.
    It seems we fight a never-ending battle with hardware and software racing to stay ahead of each other.
    Yes I've owned three printers since owning my first Mac an SE 30 I started out with a Apple ImagewriterII (made C-Itoch).  I had to switch when I bought a 7100/66 which used the PowerPC processor instead of the 68030 processors. Then I had a HP DJ 650cse which used a Black Cartridge only. No color. I had to change again When I bought my G4-500. I am still using it today. Its the best printer I've had so far. I fear when I buy a new Intel Mac, and comes with X.6 (Snow Leopard) I will have to swap again. I've seen the new HP DeskJets and the won't last as long this one.  They look like cheap toys and (gulp!) they use heads built like in epson not the Cartridges.  The Cartridges were more expensive. But each time you bought one you got a new set of print heads. No longer.

  • Crystal Report viewer print dialog not working.

    I have an asp.net website that i developed in VS 2010 that is using Crystal Reports 10.2.  Everything works fine in the devleopment environment but when I upload it to the production server the print dialog wont print.
    The print dialog opens up just fine but when i click print it says "Class not registered" at the top of the dialog.
    How can I fix this problem?
    Thanks in advance.

    Hello,
    Please search before posting.
    Visual Studio 2010 is not meant to work with Crystal Reports 10.2.
    Download CR4VS2010 here:
    [/people/blair.wheadon/blog/2010/07/29/crystal-reports-for-visual-studio-2010-beta-2-and-runtimes-now-available|/people/blair.wheadon/blog/2010/07/29/crystal-reports-for-visual-studio-2010-beta-2-and-runtimes-now-available]
    Thanks,
    Bhushan.

  • Dialog not opening

    In struts action class method i am setting the response as attachment.
    response.setHeader("Content-disposition", "attachment; filename=" + fileName);
    so when this is called by the jsp page a download dialog is opened to download the attachmetn (which is opened by the browser depending upon the header type).
    Now the scenario is that i want to call the same code from java applet and i want that a download dialog should be open like the way it is opened when call is made from jsp page to download the attachment whereas currently download dialog is not opened when the call is made from the java file.
    How this can be done so that download dialog is opened to save the attachment in the desired location when the call is made from java applet.

    JFileChooser.
    Of course, it can also be done from within a sandbox using a plug-in 2 architecture applet and the Java Web Start API services. See http://pscode.org/jws/api.html#fs for a demo. These services are also used in GIFanim http://pscode.org/gifanim/#applet.
    Edited by: Andrew Thompson on Nov 23, 2010 1:24 AM

  • Import Dialog not opening when Camera Card inserted

    Have set this option in LR2 preferences. However as I also have PS Elements 6 this loader opens instead. Have set auto play for the card reader to open LR to no avail. Have tried re-installing LR no change. Using Windows XP.
    Alan

    Lee, I to have just discovered that the import dialog does not pop up. The help says it is supposed to work that way so I thought I had some kind of problem. Are you saying the help is wrong and it has been changed. Not documented?
    I am also on Windows XP, SP2 and I cannot figure out how to make auto import work. Is there some set up that may not be documented on how to do this?
    I mean I can always go file>import from disk or file>import from device but I was surprised to find the import dialog not pop up when a card is inserted. The check box is there in preferences>import to suggest along with help menu, that it should work.
    Appreciate any feedback.

  • Mac OS printer dialog not working

    I searched the internet and found lots of similar posts but none exactly matched my situations and the solutions other people provided did not work.
    Mac 10.9.4
    Printer HP ENVY 4500 Series
    Adobe Reader 11.0.07 (already tried reinstalling)
    I want to do 2-sided printing and I learned from the internet that I had to use the OS printer dialog (by pressing "Printer" at the bottom of the Adobe printing dialog). But after pressing "Print" on the OS printer dialog, nothing happens. No errors. Print job doesn't even show up. It does print if I use the Adobe dialog, but it only prints on one side. I actually successfully printed duplex using the OS dialog last week but now it just doesn't work.
    Please help! This is so frustrating.

    I am also facing the same problem.
    I brought a Mac mini and tried for Software update. After downloading it asks for restart and then start installation ....after that it just shows configuring installation ... and no progress ... i had to restart the machine.
    it may be problem with download.
    is there any way i can download software update again ?
    Because next time i start software update it shows me download completed after few secs...
    can i delete the previous software download

  • Keyboard Shortcuts dialog not opening

    Why cant i paste my question that i am moving here? Im not retyping my full question. im one handed. following Edit/KB shortctus in cc. does nothing at al. Does not open dialoge box as expected. cc win 8 64 i7 32gb
    Thanks in advance
    Steven

    Ann Bens wrote:
    Use ctrl+C/ctrl+V instead.
    That was for pasting your question.
    For the KBS i have no aswer.
    Usually when Premiere is acting weird start programm with holding down shift+Alt until welcome screen appears.

  • Sapscript: Print Dialog not coming up!!!!!!!

    Dear All,
    One of my SapScript program is behaving abnormally. When I execute it using the login of ABAP, the Print Dialog Box appears where the user can select the output device etc for printing but when I do the same from some other login, other than that of ABAP, the print dialog box doesn't appear, hence the user is unable to get a print.
    What could be the reason?? Please advice..
    Regards & Thanks in advance,
    Alok.

    Thanks Kozerski, for your valuable input. It solved my problem.
    Thanks once again..I have rewarded your reply also.
    Alok.

  • Trinidad Dialog Not Opening in new Window- 10 to 11g Migration

    I have an ADF 10 application, which has been migrated into 11g (Trinidad).
    I have an issue where my dialog window is opening in the same window, and not a new one. I have used the useWindow parameter and set ENABLE_LIGHTWEIGHT_DIALOGS to false so that a new window and not an Iframe is used. I have tried both true/false on this parameter.
    .jspx page
       <tr:commandNavigationItem text="Help" action="dialog:help"
                                              binding="#{backing_mainmenu.commandMenuItem11}" id="commandMenuItem11"
                                              useWindow="true" windowHeight="500" windowWidth="500"/>
    faces-config.xml
      <navigation-case>
          <from-outcome>dialog:help</from-outcome>
          <to-view-id>/help.jspx</to-view-id>
        </navigation-case>
    web.xml
        <context-param>
            <param-name>org.apahce.myfaces.trinidadinternal.renderkit.USER_DIALOG_POP</param-name>
            <param-value>true</param-value>
        </context-param>
        <context-param>
        <param-name>org.apache.myfaces.trinidad.ENABLE_LIGHTWEIGHT_DIALOGS</param-name>
        <param-value>false</param-value>
        </context-param>
        <context-param>
        <param-name>org.apahce.myfaces.trinidad.CACHE_VIEW_ROOT</param-name>
        <param-value>false</param-value>
        </context-param>
    Jdev: 11.1.2.4
    Java: 1.6.0_43
    Trinidad: 11.1.2.4

    Hi,
    doesn't sound right. Why is the Facelet setting added to your web.xml file? Did you mix Facelet files with JSPX documents? If so then this could be a cause
    Frank

  • Printer Software Not Opening

    I am having trouble opening the printer assistant window for my hp deskjet 1000 j110a printer. I need this in order to check ink levels and such. 
    I tried double clicking the short cut, but it didn't work. the timer came on the cursor, but no window opened. 
    restarting didnt work. 
    so i tried looking for it in the control panel under hardware and sound and clicked view devices and printer, which brought me to a list of printers. i double clicked the one i am using
    i double clicked printer assistant, and nothing happens, just like i tried with the shortcut. 
    i also uninstalled it (twice) from the control panel (and in printers and devices by right clicking and remove device). and reinstalled it from the disk and from this website: http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?os=4158&lc=en&cc=us&dlc=en&sw_lang=&product=4066...
    for Driver - Product Installation Software(‏1) 
    HP Deskjet Full Feature Software and Drivers 
    still not working
    what is wrong? someone please help. 
    i tried looking on HP support website, but they wanted to change me for customer support.
    I have windows 8.1
    the thing is - im having printer quality issues. the hp support site says:
    Right-click the Start button ( ) in the lower left corner of the screen, and then click Search .
    Type HP in the search box.
    Click your printer ( ). The printer software opens.
    yeah.... the software DOESNT open when i click it! so i cant fix the problem.
    im ready to throw this printer in the trash, which is a shame because i only bought it a year ago.
    Someone please help.
    This question was solved.
    View Solution.

    Hi,
    Please try installing the patch below, I believe that should get the issue resolve (although it describe a different scenario it should apply for the described behavior as well):
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03640384&cc=il&dlc=en&lc=en
    Please let me know if that may help.
    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