Regarding printer selection

Hi,
I create sap script form which some document will printed in a printer.
now i need to make the printer selection in my selection screen. i have declared a paramter P_print.
when i press F4 on this parameter, program should give me the pop to select the printer which configured in the system.
Please tell me how to d oit . do we have any FM
Thanks,
Suresh

Define your printer like:
PARAMETERS      TDDEST   LIKE TSP01-RQDEST VISIBLE LENGTH 11.
Regards,
Naimesh Patel

Similar Messages

  • How to print selected cells in numbers

    Does anyone know how to print selected cells in a Numbers spreadsheet, rather than printing the entire sheet?
    Also, how to save the selected cells as a pdf file without saving the irrelevant cells?

    Hi nmygs,
    How about this?
    Cell A1 is a Pop-Up Menu containing names of the various "Departments"
    Other cells contain formulas to find a match for whatever is chosen in A1 from the Very Big Data Table.
    Reusable Print Me table.
    Regards,
    Ian.

  • Invoice Print Selected Invoices program is failing when language is not US

    Hi All,
    I am trying to run "Invoice Print Selected Invoices" for multiple languages.
    When language in customer setup under "Account Site Information" is 'US' then EN-US: (Invoice Print Selected Invoices) is completing successfully.
    But when I am changing the language from US to some other language let’s say "F”, then "FR-FR: (Invoice Print Selected Invoices)" getting submitted and it is completing in error.
    These are the log messages which I am getting:-
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    p_order_by='TRX_NUMBER'
    p_customer_id='10044'
    p_open_invoice='N'
    p_check_for_taxyn='N'
    p_choice='SEL'
    p_header_pages='1'
    p_debug_flag='N'
    p_message_level='10'
    APPLLCSP Environment Variable set to :
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    FRENCH_FRANCE.AL32UTF8
    Entrer mot de passe :
    MSG-00100: DEBUG: AfterPForm_Trigger +
    MSG-00100: DEBUG: Multi Org established.
    MSG-00100: DEBUG: AfterParam_Procs.Get_Country_Details
    MSG-00100: DEBUG: AfterParam_Procs.Switch_On_Debug
    MSG-00100: DEBUG: AfterParam_Procs.Get_Trx_Number_Low
    MSG-00100: DEBUG: AfterParam_Procs.Get_Trx_Number_High
    MSG-00100: DEBUG: AfterParam_Procs.Get_Tax_Option
    MSG-00103: lp_trx_date_clause = and a.trx_date = a.trx_date
    MSG-00100: DEBUG: BeforeReport_Trigger.Build_Where_Clause
    MSG-00100: DEBUG: P_Choice: SEL
    MSG-00100: Oracle Error in call to Before Report Trigger -6502
    REP-1419: 'afterpform': Abandon du programme PL/SQL.
    Report Builder: Release 10.1.2.3.0 - Production on Ma Avr 2 05:59:27 2013
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Can anyone please tell me what is the problem or is there any mistake in my approach?
    Regards
    Akash

    Please see the following docs.
    R12: Invoice Print Errors With REP-0069, REP-57054, REP-1419 [ID 557171.1]
    Invoice Print Error: Printing Selected Invoices (Multiple Languages) Is Erroring Out With REP-0069: Internal error [ID 731171.1]
    Thanks,
    Hussein

  • How do I print selected pages from a multi page document

    How do I print selected pages from a multi page document?
    This question was solved.
    View Solution.

    Hi,
    It depends on the software you are using, what is it ? In general you can select a range or just a number of pages.
    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.

  • Taking Long Time To Show Printer Selection Window

    Hi experts,
    When users are taking printout through SAP,it's taking long time to show printer selection window(Local Printer Selection Windows)
    present i am using sap ehp7 on sybase in windows.
    Thanks in advance..

    Hi,
    Have you tried by reinstalling of printer with patch updation of printer as well as of windows also ? If possible try to uninstall the printer & check again by reselection.
    Addition to it could you please share SAP GUI version on the system & confirm for, are you getting this issue on every system ( OS ) ?
    Regards,
    Gaurav

  • Error in Printer Selection while print the document

    Dear All,
    Error in Printer Selection,  while print the document in Quotation.
    Also both side Printing is not happening.
    My Report is in Crystal Report format.
    Suggest any solution on this as earlier as possible.
    Regards,
    Sumeet Vaity

    hi,
    are you printing locally or shared printer?
    pls check the ff.
    1. make sure your printer is on and Online (For local and shared)
    2. make sure the host PC is connected in the network., ping the host PC to make sure your host PC is Connected (Shared)
    3. make it as your default printer.
    regards,
    Fidel

  • Printer selection on selection screen to appear also in background sertting

    I have been asked to fix a program
    Fault =
    There is a printer selection on the selection screen which is filled perfectly well from its help process.
    When the user chooses "Execute in bacground" this printer selection is not automatically carried into the printer for background processing.
    Question how to do this?
    Is it simply a case of calling dunction "get_print_parameters" and exporting the selected printer from the input parameter in the "destination" parameter?
    Cheers,
    Ross

    Hi ,
    Go through the below link .
    Link:[Get_Print_Parameters|http://help.sap.com/saphelp_470/helpdata/en/9f/dba56d35c111d1829f0000e829fbfe/content.htm].
    Regards,
    Maruthi.

  • How to control the printer selection popup in SAP SCRIPT .

    Hi all,
    I have written a print program which is calling 5 different layouts forms and printing all the shipping related documents such as packing list, delivery note, shipping label etc . The print program is
    attached to a single output type ZEDM. 
    The issue is that for printing every document a pop-up comes for the printer selection and i want
    only one pop-up and all the document should be printed.
    Can anyone tell how to control the pop-ups.
    Thanks and Regards,
    Syed

    Hi,
    Open the form with dialog once. and then other forms pass ' ' to dialog parameter in OPEN_FORM .
    Open the form for printing
      Capture the return code
      Capture messages
    Other froms
    Open the form for printing
      Capture the return code
      Capture messages
    Whenever you have a new form use START_FORM
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          device                      = 'PRINTER'
          dialog                      = 'X'
          form                        = p_fname
          language                    = sy-langu
          OPTIONS                     = p_itcpo
        EXCEPTIONS
          canceled                    = 1
          device                      = 2
          form                        = 3
          OPTIONS                     = 4
          unclosed                    = 5
          mail_options                = 6
          archive_error               = 7
          invalid_fax_number          = 8
          more_params_needed_in_batch = 9
          spool_error                 = 10
          codepage                    = 11
          OTHERS                      = 12.
      IF sy-subrc <> 0.
        w_retcode = 1.
        PERFORM protocol_update.
      ENDIF.
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          device                      = 'PRINTER'
          dialog                      = ' '
          form                        = p_fname
          language                    = sy-langu
          OPTIONS                     = p_itcpo
        EXCEPTIONS
          canceled                    = 1
          device                      = 2
          form                        = 3
          OPTIONS                     = 4
          unclosed                    = 5
          mail_options                = 6
          archive_error               = 7
          invalid_fax_number          = 8
          more_params_needed_in_batch = 9
          spool_error                 = 10
          codepage                    = 11
          OTHERS                      = 12.
      IF sy-subrc <> 0.
        w_retcode = 1.
        PERFORM protocol_update.
      ENDIF.
    CALL FUNCTION 'START_FORM'
        EXPORTING
          form      = w_fname
          language  = sy-langu
          startpage = 'PAGE'
          program   = sy-repid.
    Regards
    Krishna

  • Disabling printer selection screen

    Hi All,
    I have developed a smartform which will be printed throug a normal report.
    When i am executing the report, i am getting the pop up screen for selecting the output device, etc...i want to disable this screen, so that after executing the report, i can directly see my output with out this printer selection pop up screen.
    Thanks,
    Raju

    Hi Raj,
    here is a piece of code.
      DATA:
        W_INPUT   TYPE SSFCOMPIN,
        W_CONTROL TYPE SSFCTRLOP.
      W_INPUT-DIALOG = 'X'.
      CALL FUNCTION 'SSFCOMP_OPEN'
        EXPORTING
          INPUT = W_INPUT
        EXCEPTIONS
          ERROR = 1.
    LOOP AT IT_FINAL INTO WA_FINAL.
          W_CONTROL-NO_OPEN   = 'X'.
          W_CONTROL-NO_CLOSE  = 'X'.
            CALL FUNCTION FNAME
              EXPORTING
                CONTROL_PARAMETERS = W_CONTROL.
      ENDLOOP.                          
      CALL FUNCTION 'SSFCOMP_CLOSE'
        EXCEPTIONS
          ERROR = 1.
    The above can be also used for Single spool generation.
    Thanks & regards,
    Dileep .C

  • AR "Invoice Print Selected Invoices" program

    Hi to All,
    When we run the "Invoice Print Selected Invoices" program in AR. What table and column is used to store the flag for printing the invoice. When we look at the invoice, the more tab has the Print Option/Print Date. Where is the print date, time stamp stored?

    Hi.
    Have a look on RA_CUSTOMER_TRX_ALL table and columns PRINTING_LAST_PRINTED, PRINTING_ORIGINAL_DATE, etc.
    Octavio

  • URG:11i to R12.1.3: Invoice print Selected Invoices fails with REP-1419

    Hi,
    Invoice print Selected Invoices fails with the following error: Forcing NLS_NUMERIC_CHARACTERS to: '.,' for XDO processing
    APPLLCSP Environment Variable set to :
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    REP-1419: 'beforereport': PL/SQL program aborted.
    Checked the setups based on 557171.1, 375693.1,1101855.1.
    Still the issue is existing.
    May i know the cause of the issue or is it a bug?
    Thanks
    Nancy

    Hi ,
    The cause of the issue is the standard rdf is set to run for single operating unit. But R12 is a moac setup enable application. Hence The operating unit mode is changed to Single from null in system administration concurrent program setting for the XML report concurrent program.
    This fixed the issue.
    Thanks
    Nancy

  • Printer selection dialog on client

    I have to fire a print out from a jsp page.
    I am using java.awt.PrinterJob, Printable and Book classes for the print.
    When I call the PrinterJob.printDialog(), the Printer Proerties selection box
    is popped on the server.
    Is there any way I can pop up the printer selection dialog box on the client machine?
    Thanks

    You won't be able to use a java class to open anything on your client.
    Your java program runs on a server and builds HTML for the client browser. You can either do as Zetor suggested and put print functionality in an applet, or include javascript in the HTML page you build that will do your printing.

  • Printer selection dialog on client by servlet

    I have to fire a print out from a jsp page.
    I am using java.awt.PrinterJob, Printable and Book classes for the print.
    When I call the PrinterJob.printDialog(), the Printer Proerties selection box
    is popped on the server.
    Is there any way I can pop up the printer selection dialog box on the client machine?
    Thanks

    Servlets is executed in the server, for that reason it appears to you the window of impression in the server, and not in the client.
    In order to print in the client I suggest one to you of these 2 solutions:
    First solution: When the user wants to print something, he creates a new window of the browser with a page HTML that contains what you want to print and to print it from there with javascript. Something complicated if it is not known like doing it. See the javascript code window.print();
    Second solution: To use the program Crystal Reports. The quality is excellent, but it is necessary to buy it.
    greetings.

  • How to print selection only

    I saw this question on another forum and realized that I have no idea how to print 'selection only'. The only options in the file>print menu are for the pages desired. I see no way to print only the selected portion of a page. There must be a way, but I do not seem to be able to find the answer.
    Thanks, Fran

    I tried it with 'Grab' but the printout was too large. I then discovered that if you use 'Snag It' you can accomplish the same thing. Press Shift-command-3 for the whole screen or Shift-command-4 for a part of the screen. this creates a PNG image which when opened in 'Preview' can be printed. Rather complicated, but it does work. Thanks for steering me in the right direction.
    Fran

  • How to print "selected objects" in InDesign CS4?

    I have a large calendar in ID CS4. I want to print and view some of the text in its actual size. My printer can only print A4 documents. How can I print only selected texts and objects in its actual size in this application?
    Although copying and pasting the text in another A4 sized document (IDCS4) would do it but there is no native support of "printing selection" but Microsoft's "Word' has!

    I think the layer option is best.
    Select what you want then open the layers panel and create a new layer. Select the objects you want to print, then in the layers panel you will see a small square to the right of the layer name. Alt Drag that to the new layer to copy the items, you can then turn off the visibility to the other layer and just print out the new layer.
    Then switch the visibility of the layers around to view the original artwork.

Maybe you are looking for

  • Acrobat X crashes when trying to Access XMP

    Whenever I try to access additional metadata from within the properties dialog acrobat hangs and then crashes. I tried removing my old XMP templates and restarting the app, but that has not helped. Any thoughts? Thanks in advance.

  • Mail: typing my own email address in composition window PROBLEM

    This is a weird problem which arose in the last few weeks. When I type my own email address in a composition window, Mail will add a bunch of HTTP like text to the text. Here is an example in which I have changed my real address to a fake one: This i

  • 2 iPhone Household w/ Outlook Profile Sync Issues with iTunes beyond 7.3.1

    I'm huge Apple supporter and have to say this is the most frustrating computer issue I have ever come across. My wife and I both have iPhones and we sync them to the same pc except different Outlook profiles. iTunes 7.3.1 works fine when we sync our

  • UXGA via DVI on G3ti200-Pro TD?

    Hi, I'm the proud owner of an MSI G3Ti200 proTD vga card, I bought it almost 1 year ago, and never a glitch, never a fault. This card works flawlessly. but I have a question to you guys (especially technically skilled onez) QUESTION 1) I'd like to bu

  • Custom borders?

    Hi Forum...long time no post... Question...I was wondering if there is a tutorial out there or if anyone knew if I can create an "animated" border for one of my clips... I've got some 4:3 footage I need to use in a 16:9 project...and it's not as good