cancel
Showing results for 
Search instead for 
Did you mean: 

Printing bar code to LOCL printer

Former Member
0 Kudos

I have created a smartform to print a bar code using bar code BC_CD39. I call the smartform function in an ABAP program and then display it in PDF form using function:

call function 'SSFCOMP_PDF_PREVIEW'

EXPORTING

i_otf = otfdata

EXCEPTIONS

convert_otf_to_pdf_error = 1

cntl_error = 2

others = 3.

The bar code does show on the PDF, but it is just showing as repeating bars of the same size. Like this:

And when I print to LOCL printer, it prints out the same. Why is it not printing/displaying the true bar code?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

Which printer are you using? To print the Barcodes you need a separate Barcode printer see the following

To Create a Bar code prefix:

1) Go to T-code - SPAD -> Full Administration -> Click on Device Type -> Double click the device for which you wish to create the print control -> Click on Print Control tab ->Click on change mode -> Click the plus sign to add a row or prefix say SBP99 (Prefix must start with SBP) -> save you changes , it will ask for request -> create request and save

2) Now when you go to SE73 if you enter SBP00 for you device it will add the newly created Prefix

Create a character format C1.Assign a barcode to the character format.Check the check box for the barcode.

The place where you are using the field value use like this

<C1> &itab-field& </C1>.

You will get the field value in the form of barcode.

Which barcode printer are you using ? Can you download this file and see.

http://www.servopack.de/Files/HB/ZPLcommands.pdf.

It will give an idea about barcode commands.

Check this link:

http://www.sap-img.com/abap/questions-about-bar-code-printing-in-sap.htm

Check this link:

http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a94c851ea11d189570000e829fbbd/content.htm

Hope this link ll be useful..

http://help.sap.com/saphelp_nw04/helpdata/en/66/1b45c136639542a83663072a74a21c/content.htm

go through these links and cose u r previous threads,

http://www.sap-img.com/abap/questions-about-bar-code-printing-in-sap.htm

http://www.erpgenie.com/abap/smartforms.htm

http://sap.ittoolbox.com/groups/technical-functional/sap-basis/print-barcode-with-smartform-634396

http://sap.ittoolbox.com/groups/technical-functional/sap-dev/printing-barcode-733550

Detailed information about SAP Barcodes

A barcode solution consists of the following:

- a barcode printer

- a barcode reader

- a mobile data collection application/program

A barcode label is a special symbology to represent human readable information such as a material number or batch number

in machine readable format.

There are different symbologies for different applications and different industries. Luckily, you need not worry to much about that as the logistics supply chain has mostly standardized on 3 of 9 and 128 barcode symbologies - which all barcode readers support and which SAP support natively in it's printing protocols.

You can print barcodes from SAP by modifying an existing output form.

Behind every output form is a print program that collects all the data and then pass it to the form. The form contains the layout as well as the font, line and paragraph formats. These forms are designed using SAPScript (a very easy but frustratingly simplistic form format language) or SmartForms that is more of a graphical form design tool.

Barcodes are nothing more than a font definition and is part of the style sheet associated with a particular SAPScript form. The most important aspect is to place a parameter in the line of the form that points to the data element that you want to represent as barcode on the form, i.e. material number. Next you need to set the font for that parameter value to one of the supported barcode symbologies.

Regards

Anji

Former Member
0 Kudos

I have the need to print the bar code from ANY printer using the LOCL printer in SAP. This is for Travel Expense receipts which will need a bar code to scan into SAP (optical archiving). We will have employees all over which will need to print a bar code cover sheet and print where ever they are located. I thought with Smart Forms that this is possible.

Answers (1)

Answers (1)

former_member196280
Active Contributor
0 Kudos

Usually we use SAP configured printers to download or to print as this are the real printer we use in the production, this could be one of the problem why your bar code is not displayed correctly, once you use local printer it checks on your local desktop instead of SAP, and if your local system is not installed with the fonts family that are used in your smartform, data gets truncated and get funny results.

So, try using SAP installed printers.

Regards,

SaiRam