Smartforms : Print options selections

Hi Experts,
    while executing a   smartform , a pop up window  of print options will appear where in we select print or print preview.
    when we select Print Preview , the preview of the form appears. now the problem is while in the print preview, if I select
    Print , the Pop up window of print options is not appearing.
    How to bring the pop up of print options while in the print preview mode if print is selected.
Thanks in advance.

Hi
When you select print preview you will get a popup and you can select the print preview and then you can see the output.If you click on the print then the printer should be configured to that output type also. So you check the box New Spool Request and click on print. then you go to SP02 and see the output in pdf format.Also check wheather any changes have been done in the smartform
Regards
Srinath

Similar Messages

  • Iphoto 'freezes' if print option selected, cannot force quit

    iphoto 'freezes' if printing option selected and cannot resolve even by restarting imac as iphoto seems to stay in printing mode and wheel carries on turning!

    Michael hello,
    welcome to the Apple Discussions there is something else running that wants to use iTunes, shut down 1st and then quit...
    The most likely candidates will be the iTunes widget in dashboard or a plugin or another program or script... use Activity Monitor from Utilities and show 'active Processes' this will tell you what is running...
    take care Michael.... TP

  • Smartform : Print only selected pages from multiple pages

    Hi,
    I've a smartform with six pages: Pag1, Page2 ...Page6. (all six pages are one smartform )
    My driver program has six check boxes corresponding to the above six pages, based on my check box selection I want to print the pages.
    Does it possible with one smartform ? and How ?
    Do I need to create six different smartforms ?
    Your comment on this is highly appreciated.

    Dear Raja
    You have two option to full fill your requirment
    1,
    create a alternative in your main window.
    right click-> create-> flow logic -> alternative.
    Alternative hold two conditions namely true an false.
    This alternative acts as a if else condition. So give your condition in true and start creating your windows and tables/templates under it.
    And false condition create what all you require if true condition fails.
    With this you can control pages with the conditions.
    2.
    Create pages as per your requirement.
    In the global definition > initialization tab>
    if w_page = 1.
    control_parameters-startpage = '%PAGE1'.
    else.
    control_parameters-startpage = '%PAGE2'.
    ENDIF.
    w_page is the variable what you pass in the driver program
    Hope this will help you.

  • Smartforms  -   print option

    hi
    i have done an requirement in smartforms.
    i dont need the dialog box (which contains output device name, page selection etc) when i take the print (smartforms).

    Hi,
    Please code it like below, just pass 'user_settings = space' in Smartform FM..
    DATA : l_t_control LIKE ssfctrlop,
    l_t_out TYPE ssfcompop.
    l_t_out-tddest    = 'LOCL'.
    l_t_control-no_dialog = 'X'.       ---> To avoid that window we should this parameter...
    l_t_control-preview    = 'X'.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    formname = l_c_form
    VARIANT = ' '
    DIRECT_CALL = ' '
    IMPORTING
    fm_name = l_f_fname
    EXCEPTIONS
    no_form = 1
    no_function_module = 2
    OTHERS = 3
    IF sy-subrc = 0.
    CALL FUNCTION l_f_fname
    EXPORTING
    control_parameters = l_t_control
    output_options = l_t_out
    user_settings = space ---> To avoid that window we should this parameter...
    p_langu = p_langu
    TABLES
    g_t_item = g_t_final
    EXCEPTIONS
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    OTHERS = 5.
    Hope it helps!!
    Rgds,
    Pavan

  • Duplex Printing options in Livecycle Designer ES

    Hi all,
    I am new to using Adobe Livecycle Designer ES 8.2.
    Issues 1:
    What are options available to print “Duplex Flip Long Edge” and “Duplex Flip Short Edge”.
    I have tried the following options
    File + Form Properties + PDF print options + “Selected Duplex Flip Short Edge. It has worked fine if I print from Designer itself to the particular printer.
    Through the program I have created XDP to PS file. It won’t print in “Duplex Short Edge option”.
    It has always printed in “Duplex Flip Long Edge”.
    Any one can help me… Thanks in advance….
    Regards,
    Jayakumar S

    Hello all
    The problem is still actual. There are some ideas on this forum about solution for LiveCycle Desginer 6.x and 7.x via JavaScript and via settings (Form Properties->PDF print options). The both don't work in LiveCycle Designer 8.2. Is it a bug of 8.2 version?
    I have noticed that property <pagination> in XML source has always value duplexLongEdge. It doesn't depend on value you entered in Form Properties->PDF print options. May be it's a reason? However I cannot change this value to duplexShortEdge.
    Regards,
    Andrey

  • Default printer settings in Reader X? Why must I reset my print option each time?

    Each time I try to print a pdf, the application takes over the printing duties instead of allowing my printer options to come up. There is the option to set printer options by clicking on the "Printer..." button. This is annoying to be sure, but the big problem is that I have to do this each time I desire double sided printing, which is always. If the application demands control over printing, it should be able to utilize the features offered by my printer and set a default print option. In the very least, it should used the last printer option selected. Is there any way to do this? It is annoying and often wastes paper as I use command P/Enter to print when I'm in a hurry.
    On the up side, I love that it was easy to set the default page view/zoom options.

    USB interface? Are you using one of those USB to parallel adapter cables?
    They don't allow two-way comm - which is how the printer tells the computer "done with this page."
    You can try this special USB driver that deals with this problem:
    http://buymelunch.org/printing/usbtb/
    Any reason you stopped using network printing?

  • Select box problem (option selected)

    I have the following code:
    <td><p>Topic:</p>
    <%
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String sourceURL = "jdbc:odbc:my_Library";
    Connection databaseConnection = DriverManager.getConnection(sourceURL);
    Statement statement = databaseConnection.createStatement();
         String Topic;
         ResultSet bookDetails = statement.executeQuery("SELECT distinct Topic FROM tblAvailable_Items order by Topic");
         out.println("<select name = \"Topic" + "\">");
         out.println("<option value = \"" + "\"></option>");
                   while(bookDetails.next())
                        Topic = bookDetails.getString("Topic");
                        if(request.getParameter("Topic") == Topic)
                             out.println("<option selected value="+Topic+">"+Topic);
                        else
                             out.println("<option value="+Topic+">"+Topic);
         out.println("</select>");
         bookDetails.close();
         databaseConnection.close();     
    catch(ClassNotFoundException cnfe)
    out.println(cnfe);
    catch(SQLException sqle)
    out.println(sqle);
    %>
    </td>
    For some reason, the option selected version is never ativated, despite if(request.getParameter("Topic") == Topic) being true.
    Any ideas how to fix this problem?

    Try this code,
    <td><p>Topic:</p>
    <%
    try
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         String sourceURL = "jdbc:odbc:my_Library";
         Connection databaseConnection = DriverManager.getConnection(sourceURL);
         Statement statement = databaseConnection.createStatement();
         String Topic="";
         ResultSet bookDetails = statement.executeQuery("SELECT distinct Topic FROM tblAvailable_Items order by Topic");
         String reqTopic=request.getParameter("Topic");
         out.print("<select name = 'Topic'>");
         out.print("<option value = ''></option>");
         while(bookDetails.next())
              Topic = bookDetails.getString("Topic");
              if(reqTopic.equals(Topic))
                   out.print("<option selected value='"+Topic+"'>"+Topic+"</option>");
              else
                   out.print("<option value='"+Topic+"'>"+Topic+"</option>");
         out.print("</select>");
         bookDetails.close();
         databaseConnection.close();
    catch(ClassNotFoundException cnfe)
         out.print(cnfe);
    catch(SQLException sqle)
         out.print(sqle);
    catch(Exception e)
         out.print(e);
    %>
    </td>
    Sudha

  • How to print a selection of pages from a 3000   page PDF without having to scroll two wheels! Also is there a way to set printer options for just black and white? Seems like there is a lot missing here?

    I have been using this for school work as much as possible and have come across a problem. With my lack of knowledge for apple it seems as though I can't navigate myself to a easy answer. The problem hits when I am printing pages off of a large document, and I don't want to print the entire document in color but I have no way "that I can find" for a black and white print option...
    ----- also a larger issue, when printing I need to select 1 page or even 20 pages... The time it takes to use a scroll wheel and the fact if you try and scroll fast sometimes you click off the screen then you have to start scrolling all over again... It seems like you would beagle to input from say page 1224 to 1236.... Instead I have a scroll a wheel? Just doesn't make sense...?
       Can someone please help solve this for me!

    Yes, that fixed it, thanks! I had no idea they clashed like that. I ruthlessly purged all other tables of contents, and then used Layout > Table of Contents to create a new one, and it worked.
    It made more sense after seeing in this thread that table of contents styles are more like presets or entities than styles.

  • Printer option in selection screen (Input Parameter)

    Hi All,
    I want to give printer option in selection screen.
    Please do needful help.
    Regards.

    Hi,
    in the PF-STATUS if u enable the Printer Icon on Application Tool Bar and in the PAI Event in the
    User Command Module get the FCODE and apply the following FM ALINK_PRINT_FRONTEND
    Hope this works ....
    Best of luck!!
    Thanks
    Ravi

  • FEATURE REQUEST: 'Select Printer' option when printing envelopes or labels

    I have a Samsung laserjet printer that will not print labels properly with the default paper type setting...the toner smears. So I have created a second printer object for the Samsung device with 'Labels' selected as the default paper type and I've named
    it 'Samsung Labels'. I can select it as the printer in Word 2010 and it will print labels correctly for that session. I've read the discussion about Word 2010 only remembering the printer preferences during the current session. That is unfortunate, but I consider
    this to be even worse: when you click the 'Print' button after creating your label or envelope, Word just prints to the default printer without displaying the print control panel. This prevents me from selecting the printer object that I've created to print
    labels correctly with my Samsung. I use a number of different printers and I don't want to necessarily use my default printer for Word. I want to be able to select a different default printer for Word and also have the option to select a different printer
    for a particular print task in Word...like labels. I don't want to have to go into Word's print options every time I want to print a label and make sure that everything is set correctly. It makes no sense that I can't select a printer object when I hit the
    print button. There are a million 'features' built into Office that I would never think of using, but one that seems so obvious is missing. Arg!
    I doubt that I'll hear back from someone with a simple work around for this, but I'd love it if I did.
    Thanks in advance,
    Wayne
    Wayne S. CompTIA A+ CompTIA Network+ Microsoft MCP

    I would like to second Wayne's suggestion but I am concerned with printing envelopes, not labels. I have been a PC user (and even an instructor) since the days of VisiCalc, Lotus 1-2-3, and the first Microsoft products. It has never ceased to amaze me
    that, as mentioned by Wayne, the most fundamental needs are overlooked. It wastes a lot of my time to constantly have to change the printer just to print an envelope or to print something on letterhead. We have a lot of documents that include one letter on
    letterhead followed or preceded by several pages that need to print on plain paper. I think I should be able to tell Word that page X is letterhead, and the others default to the plain paper tray or printer. I also should be able to tell the print envelopes
    feature that envelopes are on printer X or tray X. Then every time I need to print such a document, I just click print for the doc and envelope print for the envelope (I keep an icon for this in my toolbar). We use a legal software package in our office that
    lets you specify the appropriate printer and tray for reports, general checks, trust checks, labels, receipts, deposit slips, bills and pre-bills! Super easy and convenient. Word processing should be SMART so we don't have to be bothered with these very mundane
    and never-ending printer issues!! Please, please, take this to the top! Please send your developers to actual real-world users and find out our needs!!!

  • Where are the print options, after selecting print it says to select a theme from print options, but no print options appear

    On macbook pro - I cannot print from the iphot library as it says I need to select a theme from print options, but the print options will not appear after selecting print

    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 or later they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store or have a Recent Mac you can find it in your Purchases List.

  • I can access a website and select the 'print' option but the print misses out

    I can access a website and select the 'print' option but the print misses out photos that should be included in the print. It happens on more than one website. If I use Explorer it doesn't happen. I guess there must be a setting or something that I have not found? Any help very gratefully received. Than you.

    I don't know if this will help, but I found it by accident. When I send Word projects to recipients, it doesn't always read properly depending on their format. If they have a PC It distortes my  program, or they may have newer versions of Word. If you have your document showing select 'print' and on my print menu at the bottom left corner it has a button that says 'PDF'. Click on that and it gives you several options for a PDF. What I do if I'm emailing to someone is select the email option then you can always print from the email. Hope that helps.
    jr

  • Line space removed when selecting save or print options

    I created a form in CS3, converted to PDF in Pro 9 and filled-in the text.  I edited the form to include additional information, and now each time I select "Save" or "Print" option the line spaces I entered are removed as though there is some compression feature that's doing this. This also happens if I click on the form outside the text box with any tool..Does anybody have a suggestion or answer for me?  If you'd like to be placed on the list of my most favorite people, I'd appreciaate your response!

    Are you sure this is happening when you print to PDF?
    And not, later, when you print the PDF?
    What print scaling do you choose in Adobe Reader/Acrobat?

  • Printer Option is Inactive in Smartform

    Hi all,
    In my smartform, Printer Button is inactive and I'm not able to take a print out from there.
    How I can take a print of this form. Please help.
    Thanks
    Devinder

    Hello
    You have to look ur Print Parameter (Control and compose) there must be a some setting issue. it should like
    """""""""""""""""""""""""""PRINT COnTROL""""""""""""""""""""""""""""""""""""""""""""""""""
      ls_control_param-preview = ''.
      ls_composer_param-tdimmed = 'X'.
      ls_control_param-no_open = 'X'.
      ls_control_param-no_close = 'X'.
      ls_control_param-no_dialog = 'X'.
      ls_control_param-device = 'PRINTER'.
      ls_composer_param-tddest = tdest.
      ls_composer_param-tdnoprint = 'X'.
    *ls_composer_param-TDDELETE = 'X'.
      CALL FUNCTION 'SSF_OPEN'
        EXPORTING
          output_options     = ls_composer_param
          control_parameters = ls_control_param
          user_settings      = ' '
        EXCEPTIONS
          formatting_error   = 1
          internal_error     = 2
          send_error         = 3
          user_canceled      = 4
          OTHERS             = 5.
    CALL FUNCTION fname
        EXPORTING
          is_nast                    = nast
          output_type                = output_type
          control_parameters         = ls_control_param
          output_options             = ls_composer_param
          user_settings              = ''
          IMPORTING
             job_output_info            = ls_job_info
        TABLES
          sitab_inv                  = itab_inv
          sit_dd                     = it_dd
        EXCEPTIONS
             formatting_error           = 1
             internal_error             = 2
             send_error                 = 3
             user_canceled              = 4
             OTHERS                     = 5.
      CALL FUNCTION 'SSF_CLOSE'
      IMPORTING
            DOCUMENT_OUTPUT_INFO       =
               job_output_info        = ls_job_info
          EXCEPTIONS
            formatting_error = 1
            internal_error   = 2
            send_error       = 3
            OTHERS           = 4.

  • Printer Tray Selection Through Smartform

    Hi All,
    My requirement:
              There are two headings one should be printed in A4 Portrait and the other heading to be printed in the A5 landscape format inbetween each printed paper a color paper is to be inserted from tray 3 consider the other two size papers are kept on the separate trays...
    Kindly help....
    Thanks in advance.

    For ASCII text reports, the printer options can be enabled with embedded PCL escape commands within the Apps driver (Note 152285.1 should be helpful).
    For Bitmap reports, it can be done by editing PPD file (located under $ORACLE_HOME/guicommon6/tk60/admin/PPD)

Maybe you are looking for