Printing to a Specific Output Bin

I have been asked to setup an output queue in SAP where all output to that printer goes to a specfic (non-default) output bin on the printer. The printer is a HP 8050 multi-function printer with 5 different output bins. I have determined the PJL and PCL codes to direct the output. My problem is that the output will both be ABAP lists and SAPSCRIPT data so I do not want to start changing specific forms or printer formats. How do I modify the printer device so that all output goes to the proper bin?

Thanks for your reply.  I had previously tried the option in SPAD but had no luck. In my research I turned on logging with the test tool in SPAD and captured the PCL code generated. I am not seeing the code being sent from SAP which specifies the output bin destination. I looked for both the PJL code(set outbin=) and the PCL code (esc&l5G) for bin 5. I am running ECC 6. Are there any known issues with this tray option?

Similar Messages

  • Printer shows paper jamming in output bin but no paper visible in 2605dn

    printer shows paper jam in output bin---have reset and cleared everything---still shows same.  What now?

    In case you missed something, see this:
    http://h20564.www2.hp.com/hpsc/doc/public/display?​docId=emr_na-c00783950
    Try a NVRAM reset: (but make sure u save your n/w config 1st)
    1. power off the printer
    2. holding down the select and cancel buttons and powering on
    3. release buttons when display reads "permanent storage init"
    Please mark my post as SOLVED if it has resolved your problem. It helps others with similar situations.

  • Laserjet printer p2050 says"output bin is full remove all paper from bin"

    Printer will only print 1 or 2 times then I get the error message.  I have to pull open the paper drawer & slam it closed to get it printing again

    Hi Sharon453,
    When you get this error message, do the flaps in the output bin stay up?  And does the action of slamming the paper tray shut cause these flaps to fall?  It sounds like there may be something sticking that is causing the sensor to think the output bin is full.
    I work for HP

  • Printer output bin

    Hi,
    we have a printer with multiple output bins. So i want to control the output bin, when i'm printing from any application within the sap system.
    How can i do this? I tried to control this with various default settings on the printserver, but this won't work. Do i have to modify print controls?
    Is there any chance to do this?
    Thanks ahead.

    Hi ,
    Can u try with this .,
    1.     Log on to any client in the appropriate SAP system.
    2.     Go to transaction SPAD.
    3.     On the Spool Administration: Initial Screen screen, under the Devices\servers tab click the Output devices button.  On the Spool Administration: List of Output Devices screen, click on the printer where you need to check the output requests.  Then click on the printer and page picture-icon.
    4.     A list of all pending output requests for the selected printer will be displayed.
    PS :reward point if it is useful
    regards,
    S.rajeshkumar

  • Need to call another progarm in Zdriver program for a specific output type

    For billing document they had configured a Zdriver program and Zsmart form in Nace.
    Now, we had created an output type and when user clicks on that specific output type my ZXYZ program should run.
    ZXYZ program will convert the spool request into .pdf files.
    So what I had done is I have given a condition in Zdriver program saying that If output type is ZD0p.
    Submit ZXYZ program so that this program will automatically run.
    I just want to make sure that is it the right way I mean shoudl I add something else to the Submit statement...here
    and can any one tell me how can I generate spool request by giveing a billing document number in VF02--> Click on Enter > Click on Header>Click on Output-->Enter the Output type and give the communication method details and click on Save...will this generate the spool request..?

    Hi
    and can any one tell me how can I generate spool request by giveing a billing document number in VF02--> Click on Enter --> Click on Header-->Click on Output-->Enter the Output type and give the communication method details and click on Save...will this generate the spool request..
    After doing the whole porcess...re enter the vfo2 transacrion, give the document number and in Menu..Under "Billing Document"..Select issue output to...and there select the output type..and select Print button, it will generate spool request.
    Regards,
    Vishwa.

  • How to suppress the Print Popup in the output ..Please Help Me.

    Hi All,
    <b>My customization is going in Adobe forms.</b>
    when i execute the print program,i am getting  the print popup and asking to enter Output Device.But i don't want to display this <b>Print Popup</B> .How to supress this .i want  to get direct print preview without asking Output Device.
    Please help me.
    I APPRICIATE(REWARD) IF ANY ONE HELPS ME...
    regards,
    Suresh.

    Hi
    See this sample code
    SAMPLE CODE FOR PRINTING
    data: carr_id type sbook-carrid,
    cparam type ssfctrlop,
    outop type ssfcompop,
    fm_name type rs38l_fnam.
    DATA: tab_otf_data TYPE ssfcrescl,
    pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE,
    tab_otf_final TYPE itcoo OCCURS 0 WITH HEADER LINE,
    file_size TYPE i,
    bin_filesize TYPE i,
    FILE_NAME type string,
    File_path type string,
    FULL_PATH type string.
    parameter: p_custid type scustom-id default 1.
    select-options: s_carrid for carr_id default 'LH' to 'LH'.
    parameter: p_form type tdsfname default 'ZAMIT_SMART_FORM'.
    data: customer type scustom,
    bookings type ty_bookings,
    connections type ty_connections.
    start-of-selection.
    <b>************ suppressing the dialog box for print preview*****
    outop-tddest = 'LP01'.
    cparam-no_dialog = 'X'.
    cparam-preview = SPACE.
    cparam-getotf = 'X'.</b>
    select single * from scustom into customer where id = p_custid.
    check sy-subrc = 0.
    select * from sbook into table bookings
    where customid = p_custid
    and carrid in s_carrid
    order by primary key.
    select * from spfli into table connections
    for all entries in bookings
    where carrid = bookings-carrid
    and connid = bookings-connid
    order by primary key.
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting formname = p_form
    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.
    exit.
    endif.
    calling the generated function module
    call function fm_name
    exporting
    archive_index =
    archive_parameters =
    control_parameters = cparam
    mail_appl_obj =
    mail_recipient =
    mail_sender =
    output_options = outop
    user_settings = SPACE
    bookings = bookings
    customer = customer
    connections = connections
    importing
    document_output_info =
    job_output_info = tab_otf_data
    job_output_options =
    exceptions formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    others = 5.
    if sy-subrc <> 0.
    error handling
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    tab_otf_final[] = tab_otf_data-otfdata[].
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    format = 'PDF'
    max_linewidth = 132
    ARCHIVE_INDEX = ' '
    COPYNUMBER = 0
    ASCII_BIDI_VIS2LOG = ' '
    IMPORTING
    bin_filesize = bin_filesize
    BIN_FILE =
    TABLES
    otf = tab_otf_final
    lines = pdf_tab
    EXCEPTIONS
    err_max_linewidth = 1
    err_format = 2
    err_conv_not_possible = 3
    err_bad_otf = 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.
    CALL METHOD cl_gui_frontend_services=>file_save_dialog
    EXPORTING
    WINDOW_TITLE =
    DEFAULT_EXTENSION =
    DEFAULT_FILE_NAME =
    FILE_FILTER =
    INITIAL_DIRECTORY =
    WITH_ENCODING =
    PROMPT_ON_OVERWRITE = 'X'
    CHANGING
    filename = FILE_NAME
    path = FILE_PATH
    fullpath = FULL_PATH
    USER_ACTION =
    FILE_ENCODING =
    EXCEPTIONS
    CNTL_ERROR = 1
    ERROR_NO_GUI = 2
    NOT_SUPPORTED_BY_GUI = 3
    others = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ************downloading the converted PDF data to your local PC*******
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    bin_filesize = bin_filesize
    filename = FULL_PATH
    filetype = 'BIN'
    APPEND = ' '
    WRITE_FIELD_SEPARATOR = ' '
    HEADER = '00'
    TRUNC_TRAILING_BLANKS = ' '
    WRITE_LF = 'X'
    COL_SELECT = ' '
    COL_SELECT_MASK = ' '
    DAT_MODE = ' '
    CONFIRM_OVERWRITE = ' '
    NO_AUTH_CHECK = ' '
    CODEPAGE = ' '
    IGNORE_CERR = ABAP_TRUE
    REPLACEMENT = '#'
    WRITE_BOM = ' '
    TRUNC_TRAILING_BLANKS_EOL = 'X'
    IMPORTING
    filelength = file_size
    TABLES
    data_tab = pdf_tab
    FIELDNAMES =
    EXCEPTIONS
    file_write_error = 1
    no_batch = 2
    gui_refuse_filetransfer = 3
    invalid_type = 4
    no_authority = 5
    unknown_error = 6
    header_not_allowed = 7
    separator_not_allowed = 8
    filesize_not_allowed = 9
    header_too_long = 10
    dp_error_create = 11
    dp_error_send = 12
    dp_error_write = 13
    unknown_dp_error = 14
    access_denied = 15
    dp_out_of_memory = 16
    disk_full = 17
    dp_timeout = 18
    file_not_found = 19
    dataprovider_exception = 20
    control_flush_error = 21
    OTHERS = 22
    IF sy-subrc <> 0.
    ENDIF.
    Regards
    Anji

  • User Specific Output Message Determination for Purchase Orders

    Hi Sap Experts,
    Is there any functionality in SAP where you can setup specific Output message determination for a user?
    For example whenever User A creates a purchase order through ME21N it will always be emailed to vendor, whereas for User B whenever they create purchase orders it will always be printed.
    Is this possible?

    There is no standard functionality with in SAP.
    To achieve this Create 2 output types accordingly and create customized tables with user id fields

  • 9050 driver output bin option

    We have multiple HP Laser Jet 9050's in our building.  I cannot seem to make them print to the left side included accessory output bin with any of the 9050 drivers (5e, 6)  I have not tried the PS.  With these drivers, I get options that do not make sense.  In the printer properties the options for enabling the side output bin are not installed, several multibin mailbox options, 2 3000 sheet stackers and HP multifunction finisher.  I have tried both  3000 sheet option and the multifunction finisher.  Then in the output tab of the options page, lower left bin and upper left bin (Note: there is only one bin)
    On the 8150's This worked like a charm.  I was able to put selected users to the side tray relieving congestion.  Note: I can use the 8150 drivers but do not think I should.  There have been multiple questions on the HP site on this issue but no one has adequately answered it.

    L_G,
    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial printer. You can do this at http://h30499.www3.hp.com/hpeb/ .
    I hope this helps.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • P4515N top output bin question

    We are in need of a printer that can output between 1000-1500 pages unattended. We got recommended the P4515N but I am still not convinced the top output bin can hold the 1500 pages. Documentation says output bin max is 600 pages. I just want to make sure the sheets will not be flying over the place. Can someone shed light on this?
    Thanks in advance.
    Message Edited by CyberGuyPR on 08-13-2009 12:26 PM

    Hi,
    Assuming that you are using the Java API then you can use the method here to get the XMLDocument class
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14252/adx_j_xsu.htm#ADXDK070
    and then use the capabilities of DOM to strip off the XML declaration, e.g. with getDocumentElement()
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14293/toc.htm
    hope this helps
    Susan

  • Scheduling a report to print to a specific printer tray

    I'm trying to schedule a report to print to a specific tray on a specific printer.
    The SDK permits me to specify the printer, using ReportPrinterOptions, but it just seems to always print to the default tray for each printer and there are no ways, that I've found, to specify a particular paper tray to print from.
    Normally this isn't an issue, but we have a client that has a special report that prints to special paper that's always available in the secondary tray of the printer.
    Have I missed something obvious here?  Any help would be appreciated.

    Hello,
    You didn't specify the version of Crystal Reports you're using, the version of Visual Studio you're using, or which .NET SDK you're using. Assuming you're CR XI R2 (v11.5) with VS2003/VS2005 and the CR.NET SDK (reportdocument object) then you're looking for the CustomPaperSource property off of the PrintOptions class.
    You can search the forums for additional posts, but I found this one - [Setting PaperSource|Re: Setting PaperSource;. There may be others.
    You can also find information in the [CR XI R2 Developer Library|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm]. Search on CustomPaperSource.
    There is a tutorial available under the [PrintOptions.CustomPaperSource Property|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/CrystalReports_dotNET_SDK/crsdk_net_doc/doc/crsdk_net_doc/html/crlrfCrystalDecisionsCrystalReportsEnginePrintOptionsCustomPaperSourceTopic.htm] search result.
    This should get you back on track.
    Sincerely,
    Dan Kelleher

  • I have created a form. I just want a specific area of the form to be printed to a specific printer in Windows 7. Is there a way to do this?

    There are 2 printers on the system.  I want to create a Print Button, so that if the user clicks it, a desired area prints on a specific printer.
    Thanks for your consideration.

    No, unfortunatley there is not.  For a full listing of Unicode supported characters please refer to section Unicode Character Support at FormsCentral Help | Formula syntax for built-in functions
    -Jeff Canepa

  • Why are HP printer cartridges country specific? Is there any way around this?

    I have just moved from the UK to Newfoundland, Canada and I have brought my HP PSC 1610 printer with me.  I was advised not to bring any cartridges with me because they would explode during the flight so I had to buy new cartridges upon arrival.
    I noticed that the cartridge numbers recommended for my printer were similar but not exactly the same but the (HP, etc.) websites I looked at did not mention that HP printer cartridges country specific.
    In the UK black cartridge is an HP338 (C8765EE).
    In Canada the websites told me that the black cartridge is a 94 (C8765WC).
    I ordered a 94 cartridge (which took an indordinate amount of time to be delivered) and when I installed it my printer would not accept it ("not intended for use in this printer" error message) even though it fit perfectly.  I looked at the packaging in greater detail and noticed that I had been sent a 94 (C8765WL) and I also noticed (in a very small font size) "for sale only in Latin America".
    My questions are therefore:
    1) Why are HP printer cartridges country specific?
    2) Is there any way around this?  Eg is there anything I can do to my printer/ laptop to tell it to accept this cartridge?
    3) Are 94/ C8765WL cartidges compatible with 94/ C8765WC cartirdges?  Ie did the supplier sell me something that couldn't be used even if I had a Canadian HP PSC 1610 printer?
    4) Can I return the cartridges to the supplier given that it is based in Canada, they delivered it to me in Canada and yet they sold me a product that says "for sale only in Latin America"?
    Thanks
    anenglishmaninsaintjohns

    You will need to Contact HP to request a "Regionalization Reset". There should not be any charge for this, it is covered as part of the cartridge warranty. You will need to have access to your computer and printer while on the line with HP. You will also need to have a set of cartridges for the new region, once the reset is complete cartridges from the original region will no longer work.  HP's web page on the subject is here.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • HT3349 How do you select a sub-set of cells from the entire document so you can print only those specific cells?

    How do you select a sub-set of cells from the entire document so you can print only those specific cells?

    There is no analog to MS Excels print range.  So the next best thing is to plan your data so that you don't need to use print range.  The next best thing after that is to select the range of cells you want to print, then copy, the switch to the application Preview, and create a new document from the clipboard (select the menu item "File > New from Clibboard") then select all, copy then paste to the destination (maybe an email) .
    You can also paste that portion of the table into another table (or a new table) by pasting values only

  • Print preview for PO output

    Hi,
    I have an issue with viewing print preview for PO output.
    In Messages,output type has been defined.
    I am trying to display print preview of the PO outpit by clicking on the print preview button.
    Instead of displaying the print preview on my screen,the printout is directly fired in the printer.Please note I am trying to display just the print preview and not printing the PO.
    This happens even when I have not set 'Print immediately' indicator in Communication setting and have defined 'Send with application own transaction'.
    Your input on this would be of great help,
    Regards,
    Bikram

    Hi,
    Triggering print or Preview option is dependent on driver program assigned to output type in OMTB. It will be customized program. You need to do modification in your customized program.

  • Download specific output fields to excel

    Hi All,
    We have a report program that downloads an excel file having about 60 output fields. The program has no ALV output.
    Everytime we do not require these 60 fields to be shown in output excel. we need specific output fields in excel and those specific fields could be dynamic.
    Is there any way to download specific output fields in excel as we do in ALV variant.
    In alv,  we can achieve this through a layout variant in selection screen and download the alv output in excel. But we dont require alv to download excel from there.
    Thanks,
    Srilakshmi.

    Hi
    Something like this:
    DATA: BEGIN OF t_layout OCCURS 0,
            mark      TYPE c,
            fieldname LIKE dd03l-fieldname,
          END  OF t_layout.
    TYPE-POOLS slis.
    DATA: gt_fieldcat TYPE  slis_t_fieldcat_alv WITH HEADER LINE.
    DATA: lt_report TYPE sy-repid.
    DO 60 TIMES.
      t_layout-fieldname = 'Field'.
      MOVE sy-index TO t_layout-fieldname+6.
      APPEND t_layout.
    ENDDO.
    lt_report = sy-repid.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
      EXPORTING
        i_program_name     = lt_report
        i_internal_tabname = 'T_LAYOUT'
        i_inclname         = lt_report
      CHANGING
        ct_fieldcat        = gt_fieldcat[].
    CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
      EXPORTING
        i_title              = 'Field List'
        i_zebra              = 'X'
        i_checkbox_fieldname = 'MARK'
        i_tabname            = 'T_LAYOUT'
        it_fieldcat          = gt_fieldcat[]
      TABLES
        t_outtab             = t_layout.
    LOOP AT t_layout WHERE mark = 'X'.
      WRITE: / t_layout-fieldname.
    ENDLOOP.
    Max

Maybe you are looking for

  • Trying to create a simple example. Need Help!

    I'm trying to create a very simlpe examlpe using Swing components to illustrate a MVC architecture. I have a JFrame containing a JTree and a JButton. What I'd like to happen is when I click the JButton the JTree model is changed in some fashion and t

  • Can't open fcp file-HELP!!!

    after working on a tracksheet with no problems for a month it suddenly won't open - at about 27% open, it stops loading and i get general error (41) - any ideas? HELP!!!!!!! - I've GOT to get in this thing! thx!

  • How can I edit a video clip in PE and take it out of PE to use elsewhere?

    I want to add edited video clips from PE to use in my photoshop slideshow. I would also like to use the edited clips in another programme, but I only get a file that can only be opened in PE. I have PE 4 and Photoshop 6.on a desktop PC using Vista. M

  • XSLT Transformation service

    Does the livecycle ES workbench trial version have example process containing the XSLT Transformation service? I want to see the workflow with XSLT transformation involved. Thanks, Bing Wang

  • Connection to non-Oracle databases(MS Access) with Discoverer

    Hello guys I am new on this Forum. I am working with Oracle Discoverer and I will like to know how I can connect from Oracle Discover Administrator 4.1, to a non-Oracle database (on Microsoft Access or Dbase). Please help me Thanx.