Dynamic Form Print Dialog Presets

For a Dynamic form, is it possible to define the Print Dialog Preset for Page Scaling?
In Acrobat, the option (File > Properties > Advanced ) is disabled for Dynamic forms, and there doesn't seem to be a way of setting it in Designer.
Is there some way to trick it (i.e. by setting it in some xml in the xdp that is not documented)?
It's a real pain having dynamic forms that get shrunk when printed.....

Hi,
Yes, it is not a pretty (or complete) solution!!
I don't think you can disable the File/Print or Control+P (nor would you want to). In Acroforms you can set the print parameters, but as far as I know you cannot do this in LC Designer XFA forms.
This probably is not going to help you but in any one session after the user prints using the button and then subsequently goes File/Print or Control+P, then Acrobat will "remember" the "no scaling".
Some of our multi page forms are split into sections, so to encourage users to use the print button we have buttons in each section, which are set to print that section only (this is useful to the user 'cause they do not need to work this out). If the user wants all of the document, they can click the radio button in the print dialogue.We also colour the print buttons green (with white captions) as a positive / go colour.
Someone else may have a more elegant / efficient solution that sets the print parameters on opening the form or prePrint.
I don't know what Adobe are planning, but you could add it to the wish list: http://forums.adobe.com/community/livecycle/livecycle_next/feature_requests
Sorry I could not be of more help!
Good luck,
Niall

Similar Messages

  • Open Print Dialog using JavaScript

    Hi folks, I'm trying to open dynamically the print dialog window for printing the PDF (Ctrl + P) in WebDynpro ABAP using JavaScript.
    The JavaScript seems to be executed only for Interactive Forms, however I don't need to use interactive but only Print-Based Forms.
    This line of code works if I assign it to an event like click for a button, I tried to call it in the doc:ready event but it does not work
    xfa.host.print(1, "0", "0", 0, 1, 0, 0, 0);
    Please I need some help and I hope it's possible!
    Alex

    Thanks, we are getting close!
    This line of code works, but it does not prompt me with the print dialog box (because of the first parameter is 0)
    xfa.host.print(0,"0","0", 0, 1, 0, 0, 1);
    I got this message box "This document is trying to print. Do you want to allow this?" Yes/No....
    Ok, that works but I would like to have the standard print dialog window instead, where you could select your printers.
    This line of code prompt me to save the XDP, this is not what I want
    xfa.host.exportData("",1);
    In which event should I place the script??
    Also, script only seems to be executed for interactive forms, I don't want to generate interactive forms, they are more heavy to render, this is only for print based forms!
    thanks
    Alexandre Giguere

  • Pages button  in printer dialog box  is deactivating while taking print ?

    Hello exports,
    while taking print abap reports (developed using smartforms) pages buttoon (from- to) in printer dialog box
    is by default is deactivating .How to activate this button ? who will do this one (Abaper or basis guy).
    pls help me in this.

    Hi,
    So, as you see a field "from ... to ...", I think you are talking about the "background print parameters" dialog (this is not the smart forms print dialog, which contains field "page selection").
    I don't understand. "Pages from ... to ..." is always displayed, and the user can enter them manually. Do you want to enter pages programmatically?
    What is your code or the steps to display this dialog? Is it fully standard or do you use GET_PRINT_PARAMETERS programmatically?
    Sandra

  • Printer Dialog Box through SDK creating problem

    Hello Experts,
    I have created a addon for printing Invoice Report in which i have given the option of Printer Dialog Box .
    Through sdk i have called that printer dialog box in the addon .It's running well in the server showing the Printer Dialog Box
    but while running the addon in client machine first two to three times printer dialog box appears after that while pressing the
    print button of my addon form Printer dialog box is not appearing .
    Then after restarting the machine Printer dialog box shows which is creating problem for the client use .
    Suggest the right way to sort out the problem .
    If anyone need to see the code which i have written i can post that code.
    Thanks
    Amit

    Hello Janos,
    Following code i have write for prrinter dialog box to open
    Public Sub ShowPrintDialogBrowser()
    Dim MyProcs() As System.Diagnostics.Process
    FileName = ""
    Dim PrintFile As New PrintDialog
    Try
    PrintFile.AllowSelection = True
    PrintFile.ShowNetwork = True
    MyProcs = Process.GetProcessesByName("SAP Business One")
    Dim UserName = Environment.UserName
                 For i As Integer = 0 To UBound(MyProcs)
                    If GetProcessUserName(MyProcs(i)) = UserName Then
                        GoTo NEXT_STEP
                    End If
                Next
                sbo_application.MessageBox("Unable to determine Running processes by UserName!")
                GC.Collect()
                Exit Sub
    NEXT_STEP:
    For i As Integer = 0 To MyProcs.Length - 1
    Dim MyWindow As New WindowWrapper(MyProcs(i).MainWindowHandle)
    Dim ret As DialogResult = PrintFile.ShowDialog(MyWindow)
    If ret = DialogResult.OK Then
    File_Directory = PrintFile.PrinterSettings.PrinterName
    PrintFile.Dispose()
    ElseIf ret = DialogResult.Cancel Then
    File_Directory = ""
    System.Windows.Forms.Application.ExitThread()
    Else
    File_Directory = ""
    System.Windows.Forms.Application.ExitThread()
    End If
    Next
    End If
    Catch ex As Exception
    SBO_Application.MessageBox(ex.Message)
    FileName = PrintFile.PrinterSettings.PrinterName
    Finally
    PrintFile.Dispose()
    End Try
    End Sub
    Imports System.Management
    Private Function GetProcessUserName(ByVal Process As Process) As String
            Dim sq As New ObjectQuery("Select * from Win32_Process Where ProcessID = '" & Process.Id & "'")
            Dim searcher As New ManagementObjectSearcher(sq)
            If searcher.Get.Count = 0 Then Return Nothing
            For Each oReturn As ManagementObject In searcher.Get
                Dim o As String() = New String(1) {}
                'Invoke the method and populate the o var with the user name and domain                        
                oReturn.InvokeMethod("GetOwner", DirectCast(o, Object()))
                Return o(0)
            Next
        End Function
    Regards,
    Amit

  • Show the print dialog when running a report from an Oracle form.

    I would like to be able to print an Oracle report from an Oracle form but
    in addition show the print dialog. My PL/SQL code is shown at the bottom of this post.
    I have set the 'printjob' system parameter to 'YES' in the
    report and I can bring up a print dialog using the reports runtime.
    However, as soon as I run it from my form I lose this capability. Setting
    'printjob' to 'YES' in the code has no apparent effect.
    Many thanks,
    Ben
    -- Launch a report
    DECLARE
      v_pl_Id   paramlist; -- parameter list
    BEGIN
      -- add the parameters to the list.
      v_pl_id := CREATE_PARAMETER_LIST ('summary');
      ADD_PARAMETER (v_pl_id, 'destype', text_parameter, 'PRINTER');
      ADD_PARAMETER (v_pl_id, 'printjob', text_parameter, 'YES');
      -- run the report
      RUN_PRODUCT (
        reports
      , 'C:\Test Reports\Test.rep'
      , synchronous
      , runtime
      , filesystem
      , v_pl_id
      , NULL
    END;

    At 10g not 9i using a bean area on my canvas implementing the following class ...
    import java.awt.Frame;
    import java.awt.JobAttributes;
    import java.awt.PrintJob;
    import java.awt.Toolkit;
    import javax.swing.JPanel;
    import java.io.*;
    import oracle.forms.ui.VBean;
    public class Select_Printer extends VBean {
    public Select_Printer()
         super();
    public String getPrinterName()
    String PrinterName=null;
              JobAttributes jobAttributes;
              try{
                   jobAttributes = new JobAttributes();
                   jobAttributes.setDialog(JobAttributes.DialogType.NATIVE);
                   Frame dummyFrame = new Frame();
                   PrintJob pJobDialog = Toolkit.getDefaultToolkit().getPrintJob(
                   dummyFrame, "Printtest", jobAttributes, null);
                   PrinterName = jobAttributes.getPrinter();
              } catch (Exception e) {
                   System.out.println("Printer error!");
              return PrinterName;
    public static void main(String[] args)
    Select_Printer select_Printer = new Select_Printer();
    System.out.println(select_Printer.getPrinterName() );
    }

  • Can't assign PPD in Print dialog or preset (ID CS5, Mac OS X 10.6)

    I've been having some trouble recently with ID CS5 resetting itself from time to time as if I'd trashed the Preferences: it loses all Recent files, presets, etc. Fortunately I'd exported presets from CS4 when I upgraded, but there are two problems with Print presets. (1) The order is scrambled when I load the exported file, and (2) it says something like "The PPD you want is unavailable. Use Generic PPD?" There are only two choices, Yes and Cancel, neither of which I really want. When I try to re-create a Print preset, or indeed when I try to start from scratch in the Print dialog, the PPD pop-up is greyed out for all of my printers; I can't select anything, and they're not already identified with the printers as they always used to be. The printers are nothing unusual: a Brother, an Epson, and a Hewlett-Packard, all with up-to-date drivers and PPDs in HD/Library/Printers/PPDs/Contents/Resources. I've tried copying the PPDs to Applications/Adobe Creative Suite CS5/Adobe InDesign CS5/Presets/PPDS (having created the last folder and used that capitalization, following advice in another thread), but with no result. Since the PPDs in the HD Library are .gz archives, I tried expanding them in the ID CS5 folder, but that hasn't helped either.
    Any advice? I should emphasize that I am NOT trying to print to PostScript or PDF – I've followed those threads and get the message. I'm talking about PPDs for physical printers!
    ID CS5 7.0.3, Mac OSX 10.6.5, Mac Pro 8-core 3GHz

    Wow, thank you!!!  I actually did search pretty thoroughly on the web as well as a moderate search these forums, but oddly enough, I somehow overlooked that thread.  Funny, as it was only from several days ago.
    My computer never had ADPDF9.PPD in the first place.  Any clue why this is?
    Many thanks,
    T

  • Problem with PJC (Print Dialog) - Forms 10g

    I have a problem with my PJC for Forms 10g r2. When I try to connect and run my PJC (raise Print dialog and put printer name in some text item) I get following message:
    oracle.forms.net.ConnectionException: Forms session <2> aborted: unable to communicate with runtime process.
         at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
         at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
         at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
         at oracle.forms.net.HTTPNStream.flush(Unknown Source)
         at java.io.DataOutputStream.flush(Unknown Source)
         at oracle.forms.net.StreamMessageWriter.run(Unknown Source)
    When I started application, on Java console I saw this message, so I think the server configuration is fine (I change everything I need in Default.env and FormsWeb.cfg files):
    Loading http://devsrv/forms/java/jESPrintDialog.jar from JAR cache
    What can I change with server configuration or deploying my project to this PJC can work normaly?
    Thanks....

    Hi and thanks!
    I resolve one part of my problem. Tt was about diferent compiler (in JDeveloper 10.1.3 compiler is 1.5 and in my oc4j server JRE is earlier version, so it can`t work normaly).
    I comiled PJC in 1.4 version of compiler and now I can start and run my PJC.
    But, there is another problem:
    this is my part of java code (note: everything work fine except one line when I want to get printer name from select printer dialog):
    try {
    boolean b;
    PrinterJob job = PrinterJob.getPrinterJob();
    b = job.printDialog();
    try {
    return job.getPrintService().getName();
    catch (Exception e) {
    System.out.println("Error: "+e.getMessage());
    return "My error:";
    } catch (Exception e) {
    System.out.println("ERROR: " + e.getMessage());
    return "Problem with PJC [esoft]";
    So, when pjc want to get back printer name
    return job.getPrintService().getName();
    i get following error (on Java console):
    java.lang.NoSuchMethodError
         at happypjc.PDialog.getProperty(PDialog.java:50)
         at oracle.forms.handler.UICommon.onGet(Unknown Source)
         at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Can you give me some hint about it. Everything is OK now, except this (very important) peace of code!
    best regards
    mret

  • Disable "Comments & Forms" in acrobat Print dialog

    Hi,
    I have a requirement whereing the user should not be able to select options in the "Comments & Forms" section of the Print dialog box while trying to print the PDF.

    But you can write a script that will hide all the comments and form fields
    just before the file is printed, and show then just afterwards.

  • Interactive-adobe form Converting into PDF without print dialog

    Hi Friends,
    I would like to convert Interactive - adobe form into PDF without print dialog.which adobe form interface type is Smart Forms-compatible Interface.I have tried for solution.but I could not succeeded.How can resolve the issue.please help me.
    Thanks
    Ramesh M

    Hi Friends,
    I would like to convert Interactive - adobe form into PDF without print dialog.which adobe form interface type is Smart Forms-compatible Interface.I have tried for solution.but I could not succeeded.How can resolve the issue.please help me.
    Thanks
    Ramesh M

  • Saving Photoshop CS5 Print dialog box presets or defaults?

    This question was asked in 2008 for PS CS3 with no answer, so I will ask it again...
    OS 10.6.4
    Using Canon iPF 5100 and 6100 printers
    CS 5 Photoshop
    Is there a way to set a preset in the PS Print dialog window for 'Photoshop manages color' and the ICC profile so that I do not have to reset them every time I print?
    Also, where does PS pull the information for the printers pop-up menu near the top of the Print dialog box? Is this a preset or is it just pulling these printer names from the OS? I ask this because when I switch between one of the iPF printers, the Print > Color Management section defaults back to 'Printer Manages Color' and greys out the profile pop-up menu.
    Thanks.

    No, no presets but you can record the settings in an action. The action can record printer, printer settings and color management settings.

  • How to display the Print Dialog with defined print presets included.

    When I try and display the Print Dialog none of my defined print presets are included in the print preset list box, I only get the [custom] option.
    How can I get the presets included in the list?
    The code I am using is:
    InterfacePtr<IPrintData> docPrintData(document->GetDocWorkSpace(), UseDefaultIID());
    // create a temp non-persistent IPrintData
    IPrintData* tempPrintData(CreateObject2<IPrintData>(kPrintDataBoss));
    // copy data from the document workspace
    tempPrintData->CopyData(docPrintData, kTrue);
    InterfacePtr<ICommand> printDialogCmd(CmdUtils::CreateCommand(kPrintDialogCmdBoss));
    InterfacePtr<IPrintDialogCmdData> printDialogCmdData(printDialogCmd, IID_IPRINTDIALOGCMDDATA);
    // store off the document's UIDRef in the print data boss
    UIDRef docUIDRef = ::GetUIDRef(document);
    printDialogCmdData->SetDocUIDRef(docUIDRef);
    printDialogCmdData->SetPrintData(tempPrintData);
    ErrorCode result = CmdUtils::ProcessCommand(printDialogCmd);
    tempPrintData->Release();
    Thanks

    You can set the presets with Adobe Acrobat.

  • Suppress print dialog at form startup

    Dear experts,
    I have seen this question being asked a lot but no one has defined in a way that one could make a confident start to resolve this.
    Keeping this code in mind , i am required that when i execute this driver prgram that executes given smartform 'ZSF_SALESGRN' .
    Here i should not get the inital popup of print-dialog.
    How can i modify/add this given code to achieve the same.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        formname                 = 'ZSF_SALESGRN'
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
      IMPORTING
        FM_NAME                  = FM_NAME
    EXCEPTIONS
      NO_FORM                  = 1
      NO_FUNCTION_MODULE       = 2
      OTHERS                   = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION FM_NAME
    EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
      CONTROL_PARAMETERS         =
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
      TABLES
        i_header                   = i_heading1
        i_detail                   = i_lipsvbap
    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.

    Well here is the solution...
    For PRINTING DIRECTLY
    ST_CONTROL_PARAMETERS-PREVIEW = ' '.
    ST_CONTROL_PARAMETERS-NO_DIALOG = 'X'.
    ST_OUTPUT_OPTIONS-TDIMMED = 'X'.
    CALL FUNCTION v_fm_name
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    CONTROL_PARAMETERS = st_control_parameters
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS = st_output_options
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO = st_document_output_info
    JOB_OUTPUT_INFO = st_job_output_info
    JOB_OUTPUT_OPTIONS = st_job_output_options
    TABLES
    IS_LABELS = IS_LABELS
    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.
    ELSE.

  • Email Dynamic Form as Attachment using class cl_bcs?

    Hi Experts
    I really hope that you can help me.
    I have a dynamic form embedded in my view and I need to email this form as an attachment to a list of participants.
    I already use the class cl_bcs for sending email, but how do I retrieve the form parameters (on button click within WD ABAP) and then convert them to the correct format so that they can be included in the cl_bcs class for sending?
    Thanks in advance
    I'll award points to helpful answers.
    Anton Kruse

    HI,
    To send mail with PDF attachement,
    U have to specify the emporting and exporting parameters for the Interactive Form in the SFP transaction.
    Then add the below coding,
    *Send mail in PDF format
    Funtion module to get the generated FM name
          TRY.
              CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
                EXPORTING
                  i_name     = lc_formname
                IMPORTING
                  e_funcname = lv_fmname.
            CATCH cx_fp_api_repository.                     "#EC NO_HANDLER
            CATCH cx_fp_api_usage.                          "#EC NO_HANDLER
            CATCH cx_fp_api_internal.                       "#EC NO_HANDLER
          ENDTRY.
          ls_param-nodialog = 'X'." suppress printer dialog popup
          ls_param-getpdf   = 'X'." launch print preview
          CALL FUNCTION 'FP_JOB_OPEN'
            CHANGING
              ie_outputparams = ls_param
            EXCEPTIONS
              cancel          = 1
              usage_error     = 2
              system_error    = 3
              internal_error  = 4
              OTHERS          = 5.
          IF sy-subrc <> 0.
    Do Nothing
          ENDIF.
          ls_fp_doc-langu    = lc_sprsl.
          ls_fp_doc-country  = lc_country.
          ls_fp_doc-fillable = 'X'.
    Mail Format /1BCDWB/SM00000091
          CALL FUNCTION lv_fmname
            EXPORTING
              /1bcdwb/docparams  = ls_fp_doc
              empno              = ls_emp_det-empno
              empname            = ls_emp_det-empname
              state              = ls_emp_det-state
              location           = ls_emp_det-location
              organisation       = ls_emp_det-organisation
              position           = ls_emp_det-position
              mailid             = ls_emp_det-mailid
              actual_date        = ls_emp_det-actual_date
              likely_date        = ls_emp_det-likely_date
              resig_date         = ls_emp_det-resig_date
              generic_det        = lt_generic
              bond_det           = lt_bond
            IMPORTING
              /1bcdwb/formoutput = ls_formout
            EXCEPTIONS
              usage_error        = 1
              system_error       = 2
              internal_error     = 3
              OTHERS             = 4.
          IF sy-subrc <> 0.
    *do nothing.
          ENDIF.
          CALL FUNCTION 'FP_JOB_CLOSE'
            EXCEPTIONS
              usage_error    = 1
              system_error   = 2
              internal_error = 3
              OTHERS         = 4.
          IF sy-subrc <> 0.
    Do Nothing
          ENDIF.
    *Function call to get the xstring value.
          CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
            EXPORTING
              buffer     = ls_formout-pdf
            TABLES
              binary_tab = lt_att_content_hex."PDF file from function module
          lv_bodytext_row-line = lc_subject.
          APPEND lv_bodytext_row TO lt_bodytext.
          APPEND ' ' TO lt_bodytext.
          lv_bodytext_row-line = text-001.
          APPEND lv_bodytext_row TO lt_bodytext.
          APPEND ' ' TO lt_bodytext.
          DESCRIBE TABLE lt_bodytext LINES lv_num_rows.
          lv_num_rows = lv_num_rows * 255.
          MOVE lv_num_rows TO lv_textlength.
          TRY.
              lv_attdoctype = lc_pdf.
              lv_atttitle = text-000.
              lc_document = cl_document_bcs=>create_document(
              i_type = lc_raw
              i_text = lt_bodytext
              i_length = lv_textlength
              i_subject = lv_subject ).
              lc_document->add_attachment( EXPORTING
              i_attachment_type     = lv_attdoctype
              i_attachment_subject  = lv_atttitle
              i_attachment_language = sy-langu
              i_att_content_hex     = lt_att_content_hex ). This will attach ur PDF to mail
    Create persistent send request
              lv_send_request = cl_bcs=>create_persistent( ).
    Add document to send request
              lv_send_request->set_document( lc_document ).
              lv_sender = cl_sapuser_bcs=>create( sy-uname ).
    Add sender
              CALL METHOD lv_send_request->set_sender
                EXPORTING
                  i_sender = lv_sender.
              CLEAR : ls_smtp_addr.
         READ TABLE lt_mailid INTO ls_mailid WITH KEY pernr = ls_0001-pernr.
              IF sy-subrc = 0.
                ls_smtp_addr = ls_mailid-usrid_long.
              ENDIF.
    Create recipient.
             lv_recipient    = cl_cam_address_bcs=>create_internet_address(
                                                          ls_smtp_addr ).
    Add recipient with its respective attributes to send request
              lv_send_request->add_recipient( EXPORTING
                            i_recipient = lv_recipient
    Set send immediately
              lv_send_request->set_send_immediately( 'X' ).
    Send document
              lv_send_request->send( ).
            CATCH cx_root INTO lv_oref.                     "#EC NO_HANDLER
          ENDTRY.
    Hope this ll help u!!
    Thanks,
    Divya.S

  • Mavericks Mail Print dialog hangs?

    Several times when I try to print an email messsage, the Mail Print dialog appears, complete with preview which looks fine.
    The cancel, print, pdf, printer and presets buttons are responsive, but neither Print nor Cancel do anything other than flash to ack the click, and the print form remains pinned as the topmost window whenever Mail is active.
    I'm printing three page message to a Xerox Phaser6360DN, and have been able to print a lot of mail and other docs since upgrading to Mavericks a few days ago.
    Any ideas of what's wrong / how to fix?
    Any suggestions for killing the pinned Print dialog without doing a Mail Force Quit?

    John - Thanks for the suggestions. Next time I'll try changing printers / using PDF menu actions rather than just testing their pull down reasponse.
    I didn't see anything terriblely helpful in /Utlities/Console, but will look again and try your suggestions if/when it happens again.
    I needed to get Mail working and recovered with a force quit...

  • KDEmod very long time to open print dialog

    Then I want to print something from a KDE application it takes a few minutes for the print dialog to open while I can't use the application I want to from because the window is blocked.
    I have set cups of from systemsettings and the printer is a Dell 2135cn (network printer) using the dell 3100cn driver.
    The print dialog come up almost at once in firefox (shiretoko) but the printed fonts is very ugly, which they are not from KDE applications.
    Any idea how to fix this?

    Hi,
    Have a look at this post :- Very large Input form-how to handle
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for