cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding Barcode in sapscript

Former Member
0 Kudos

Hi Experts!

i am using standard barcode in sap script that is BC_CD39 but it is lil too big for my output scenerio eg its height is 15 mm.

i found one more barcode in sap script that is CD39_00 which has right height that is 5 mm. but whenever i tried to print this barcode is not printing instead the actuall value is printing.

i am using

BI<BC>&BCODE&<>

where bi is the paragraph and bc is the character format. its working fine with bc_cd30 but not with cd39_00.

Is there anyway i can make it work

thanks in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

Check the printer on which you are printing this barcode

Because the BArcodes are printer specific and all printers doesn't support the all Barcodes

see the doc on barcodes

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