Print-Control use in Sapscript to cut paper

Hi everybody!
I'm using a Epson TM-U675 to print receipts, but I need to send the paper cut code to te printer, in the printer documentation this code is 9EH.
I defined a print control ZCUT with following attributes:
Direct, Hexadecimal and sequence value is "9E".
In the sapscript code I've the following code:
IT Before paper cut test
/* Cut paper control code
/: PRINT-CONTROL ZCUT
CI
IT After paper cut.
But nothing happened.
I need to know if I've an error in the print-control definition or the sapscript code.
Thanks in advance
Ronald Picado.

You'd have better luck with getting an aswer if you posted your question to the ABAP forum.

Similar Messages

  • Need alternative for activex print control using Crystal reports 2008

    I have created a .Net web application (2.0/3.5 .Net framework) with crystal reports 2008.
    Reports are viewed using Crystal reports 2008 activex viewer.
    On click of PRINT icon in activex viewer, activex print control download prompt will be displayed on client machine.
    I need to avoid downloading of activex print control on client machine. Is there any other alternative or option to use print functionality in viewer without downloading activex print control on client machine?
    Or Is there any other workaround for print functionality in Crystal reports 2008 Viewer without downloading activex print control?
    Note: Activex print control download prompt will not be displayed when using Crystal reprots XI Release 2 version.
    Thanks,
    Jagannath

    Does anyone know which files need to be registered for the ActiveX print control?  We occasionally have users who somehow break their Crystal ActiveX controls, and they can no longer see the print options.  In Crystal 10, I was able to fix these issues by pushing a package which registered several files on the user's computer.

  • HP Laserjet Pro 400 Printer unable to print docs using both letter and legal paper

    HELP!!  Have been using an HP Laserjet Pro 400 M425dn dual tray printer for 2 years, along with a Dell laptop.  Always had ability to send documents to print using both letter and legal size paper.  Under print set-up on laptop, the option checked was always set to "Choose Paper Source by PDF Paper Size".  Now I've just purchased an HP Envy All-in-One Desktop, which does not offer that option under Print Set-Up.  While it allows for 'Auto Selection' of paper size, you are required to choose either letter or legal size paper.  I've called tech support 3 times, the latest call earlier this am, only to be disconnected.  Yesterday I was told that I should go on hp/support and update drivers.  My husband downloaded drivers, but still no fix.  Unless this issue is resolved asap, I will have no option but to return this Envy Desktop, as I cannot run my business without this option.
    Anyone have a similar problem?  How was it resolved?

    The available options will (probably) be determined by the printer driver in use.
    This , in turn, will be determined partly by which Operating System and version you are using.
    Once a printer model has been out in the field for some time (generally when the next generation (or two?) of devices has been announced to supersede it) that model becomes a 'legacy' device, and 'full-specification' printer drivers may no longer be supplied by the printer manufacturer, but basic (i.e. without too many options) drivers will (probably) instead be supplied with the operating system.

  • How to deal with Print Controls in SAP SCRIPT

    Hello All...
    I have two requirement in SAP SCRIPT for which I will need to use PRINT CONTROLS.
    1) To print a window with 90 degree rotation
    2) In the same window I wanted to have black background and white text printed on it.
    For rotating the text,
    Primary basis I created two Z print controls using SPAD.
    One to rotate with 90 and another to rotate with 0.
    In SPAD I assigned \e&a90P and \e&a0P respectivaly in device type.
    Now in sap script window I specified below commands...
    /:  PRINT-CONTROL Z90
    =  TEST
    /:  PRINT-CONTROL Z00
    but in the SP01 the text is still printing Horizontally...
    Also Is there any standard print controls which set backgroud to black for specific window.
    and how to use that?
    Please help me to resolve this issue.
    Thanks in advance,
    Shweta

    Hi,
    Occassionally, when you make frequent changes to your SAPScript, the system can get out of sync.
    When you view the form, the old data get display without your changes. 
    This can be fixed by deleting the SAPScript LOAD with program RSTXDELL. 
    Hope it helps.
    Reward if helpful.
    Regards,
    Sipra

  • Printer Control Language 5 Sap Script

    Hello,
    Does anybody have a sample SAP script which gives command to NRG printer. It uses a PCL 5 driver so wanted a sample eg. of the same.
    Regards,
    SHekhar Kulkarni

    Hi Shekhar,
    Print commands are controlled by the device type you have set up for your printer.  These are administered via the transaction SPAD (for spool administration).
    The SAPScript itself does not issue these commands (as far as I'm aware).
    You may have to handle special print control from your SAPScript by the use of fonts.  Again, these are administered from the transaction SPAD.
    Hope that helps.
    Cheers,
    Brad

  • PRINTER TRAY CONTROL/SELECTION WITH SAPSCRIPT USING ZTROYMIC DEVICE TYPE

    We are printing checks using SAPscript in which we specify TRY02 for the overflow/invoice detail pages of  a check and TRY03 for the check itself, this is in order to use check stock only for actual checks and plain paper for the invoice detail pages.  As indicated above the device type to which we are printing is ZTROYMIC.  The device type was downloaded from note 94233, and is printing the MICR characters successfully however there was no Control Character Sequence provided for TRY03 in SPAD print controls.  The tray selection is not working correctly, I was given the following escape sequence, escape character & l 5 H, for TRY03 by TROY but not sure how to implement this in SPAD.  Should we pose this question directly to SAP?  Is tray selection supported for this device type?  If not how can we direct pages to correct tray otherwise?
    Your help is much appreciated,
    Doug
    Edited by: Lisa Platt on Dec 3, 2008 11:02 PM

    1) In SPAD under the device types tab, enter your device type and hit display.
    2) click on Print Controls and scroll down you will see TRY01, TRY02, TRY03 and TRYMN.
    3) click on the edit icon and change the control character sequence that was provide for you. we
    are using 1B266C3548, Hope this helps!

  • How to use print control in Sap script

    I would like to use print control in Sap script.Actualy my problem I have security font Troy ECF. Using this font I would like to print amount field in Check printing.
    we count download this font with sap .we talked to customer care they told we should hard code in sapscript. pls can any1 help on this how to do and how to use print control for this fonts.

    call this funcation. crate_text.
    CALL FUNCTION 'CREATE_TEXT'
             EXPORTING
               FID               =
               FLANGUAGE         =
               FNAME             =
               FOBJECT           =
             SAVE_DIRECT       = 'X'
             FFORMAT           = '*'
             TABLES
               FLINES            =
           EXCEPTIONS
             NO_INIT           = 1
             NO_SAVE           = 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.

  • Printing Extremely Slow Using Crystal Reports 2008 ActiveX Print Control

    Problem:
    We are trying to upgrade our existing Crystal Reports 10.0 ActiveX Viewer ASP based reports to the new Crystal Reports 2008 ASPX Report Viewer but are having print performance issues that have prohibited us from moving forward.
    Environment:
    Windows 2003 Server Standard Edition 32-bit with SP1
    IIS 6.0 running ASP .NET version 2.0.50727
    Crystal Reports 2008 SP0 with FP1
    Crystal PrintControl.dll version 12.0.0.796 (verified on server and client)
    Details:
    Crystal Reports 2008 ASPX Report Viewer Object & ActiveX Print Control Report Printing Scenario
    From a typical 27 page report, the user clicks the Print icon from the ASPX Report Viewer Object.
    The Print window with the message Crystal Reports Print Control immediately appears on the screen.  This window is on the screen for approx 30 seconds.
    The Print Setup window finally appears on the screen.  The user verifies the printer, chooses to print pages 1-5, and clicks the Print button from the window.
    The Retrieving page 1 message appears in the Print window.  The message remains in the window for approx 30 seconds.
    The Printing page 1 message appears in the Print window.  The message remains in the window for approx 30 seconds.
    The Printing page 2 message appears in the Print window.  The message remains in the window for approx 30 seconds.
    The Printing page 3 message appears in the Print window.  The message remains in the window for approx 30 seconds.
    The Printing page 4 message appears in the Print window.  The message remains in the window for approx 30 seconds.
    The Printing page 5 message appears in the Print window.  The message is in the window for less than 1 second.
    After 3 MINUTES of waiting the report finally starts printing.
    Crystal Reports 10 ASP ActiveX Report Viewer Report Printing Scenario
    From the same typical 27 page report that was used in the Crystal Reports 2008 scenario, the user clicks the Print icon from the ASP ActiveX Report Viewer.
    The Print window Immediately appears on the screen.  The user verifies the printer, chooses to print pages 1-5, and clicks the Print button from the window.
    The Print window Immediately disappears from the screen and the report Immediately starts printing.
    The entire print process takes only 3 u2013 4 SECONDS.
    Even  though we are trying to get the users to decrease the amount of paper used in report printing.  They still do a significant amount of printing.  The difference between the print performance using Crystal Reports 10 (3-4 seconds) and Crystal Reports 2008 (3 minutes) is totally unacceptable to our users.
    Has anyone else experienced this problem and is there a known fix for it?  This is the only thing holding us back from our upgrade and it has become very frustrating to us.
    Much thanks to anyone that can shed some light on this.

    Hi Brian,
    Please have a look at [this|Crystal 11.5 Activex control for viewer; post.
    However, have you tried with the No Printer options available in Print Options window from designer?
    Regards,
    Atanu.

  • Sapscript  [using both sides of the paper]

    Hello all,
    I'm building a Sapscript to print sales orders but i need to do that using both sides of the paper.
    I have all the fields contents that i need, but I do not know how program this at sapscript.
    Is there any FM to do that?
    thanks for your help. Felipe Cunha.

    Look at the PAGE in the SAPscript layout set.  The field PRINT MODE on the lower left is used for DUPLEX.  Check the F1 help on this field.

  • How to configure printer to use bypass tray when printing legal paper and envelopes?

    I have a new Phaser 3610. Tray 1 - contains Letter paperBypass Tray - Legal paper and sometimes envelopes How do I configure my printer to know when to use the bypass tray for legal paper when I that is what I want to print to from Excel?  In Excel, I have legal selected but it is still pulling the paper from tray 1 instead. I also print envelopes occasionally.  If I stick an envelopoe in the bypass tray, I want it to print from there like when using Word to create enveloples, instead it is pulling it from Tray 1. I have tried to adjust both settings on the Printer control panel and the Xerox printer software.  I have had no luck.

    Hi burnsey23,
    Thank you for using the Support Forum. Please take a look at the solution for using smaller paper in the bypass tray.  I know it says smaller but use the same steps for larger paper as well.  Also make sure that the orientation on Excel is set to the orientation that corresponds to the way the paper is loaded in the tray.  If this does not help please consider contacting your support centre for further assistance.

  • What is the maximum paper thickness a C6380 all in one printer can use?

    What is the maximum paper thickness a C6380 all in one printer can use? I want to print wedding invitations

    HI,
    Paper thickniss it will print depends on the paper size as well. FInd the paper specs HERE.
    Say "Thanks" by clicking the Kudos Star in the post that helped you.
    Although I work for HP my posts and replies are my own
    Please mark the post that solves your problem as "Accepted Solution"

  • How to use Print Control in Print List.

    Please any body can explain me how to use print control when creating Print list?
    Thanks in advance.

    Please any body can explain me how to use print control when creating Print list?
    Thanks in advance.

  • How to print Barcode using SAPscript?

    hello, everyone.
    I have some questions.
    now, I have to print some doc. that described by barcode in sapscript form.
    so, try to test in t-code so10
    input value SAPSCRIP-BARCODETEST, ST, EN.
    and click 'print-preview'
    result is correctly output in pint privew.
    but when I print dis priviewed doc. disappeared barcode image.
    is this O.K??
    I have to do something?? (Add DLL file, barcode font or etc....)
    I don't know how to print barcode using SAPScript. anybody solve this problem.please.
    p.s this system is SAP ECC 6.0 only ABAP.
    printer setting is front-end print.

    hello, everyone.
    I have some questions.
    now, I have to print some doc. that described by barcode in sapscript form.
    so, try to test in t-code so10
    input value SAPSCRIP-BARCODETEST, ST, EN.
    and click 'print-preview'
    result is correctly output in pint privew.
    but when I print dis priviewed doc. disappeared barcode image.
    is this O.K??
    I have to do something?? (Add DLL file, barcode font or etc....)
    I don't know how to print barcode using SAPScript. anybody solve this problem.please.
    p.s this system is SAP ECC 6.0 only ABAP.
    printer setting is front-end print.

  • Making a printed BANNER using cont. feed banner PAPER

    does anyone have any idea if I can make a banner (8/12 x 36") using continous feed paper in my printer? I have the trial verison of Pages '08 which came with my new iMac. (I am a mac newbie) For years I easily made printed banners (using up to 5 sheets of cont. feed paper) using MS Publisher.
    Thanks in advance.

    Yes, I have tried Google, and the Apple.com downloads section, but to no avail as yet.
    The Canon printer seems terrific and is a step up from an older HP all-in-one machine....however...i miss the easy HP banner printing dialog boxes...(HP sells banner paper that is perforated and made for this purpose as you probably know) and it is just so easy on a PC. I hope to be able to say the same thing about my new Mac soon.
    I did try changing the paper size in Pages, FOLLOWING YOUR INSTRUCTIONS TO USE INSPECTOR...but must have done something wrong because I was not able to actually SEE on on my screem (and thus create) an ACTUAL banner for printing.
    I will keep trying. Thanks for the suggestions. My banner making days may be on hold for now (others will be more disappointed about this than me!)
    MANY thanks.
    If anhyone reading is aware of Banner-Creation software for making actual BANNER PRINTS on an inkjet...please share ! Google searches ususally result in software for WEB-banner creation ..something quite different !

  • Iphoto printing products use recycled paper?

    Does anyone know if the iPhoto calendars, books, or greeting cards are printed on recycled paper?
    Thanks!
    Catherine
    12" PB   Mac OS X (10.4.8)  

    What you need to do is select borderless as the paper size and Custom as the print size, using a size that will fill the page as much as possible. Do not select the contact sheet theme.
    Click to view full size
    You can adjust the custom print size till you get the largest 4 photos on the paper. The size shown in the screenshot was the largest I could use on short notice.
    Happy Holidays

Maybe you are looking for