cancel
Showing results for 
Search instead for 
Did you mean: 

labels with barcodes in smart forms

Former Member
0 Kudos

hi,

how to print labels with barcodes in smart forms.explain with example.

Accepted Solutions (0)

Answers (6)

Answers (6)

sreelatha_gullapalli
Active Participant
0 Kudos

Hi,

Try the following code

Code:

  • FO91,661ABB,11,7FDMODEL #FS

  • BY3,2.5FS

  • FO20,356BCB,51,N,N,YFD>:&W_MATNR&FS

hope it will work

Regards,

Sreelatha Gullapalli

Former Member
0 Kudos

Hi Roopa,

Having a barcode on smartform is a simple procedure. here it is :

Tcode : Smartstyles

under the node charactee format : create B1( for eg)

Now u will find Bar code option under the tab "Standard Settings" for the character format.

Here u can select any barcode depending upon ur requirement .

In smartfrom use the style u created by the above step.

Now if u want print a barcode for the material number , then

In the text element use the variable V_MATNR (which will hold the material number) with the character format B1

eq. <B1>&v_matnr&</>

Now in the output u will fid the material number printed as barcode

If u want more expln send ur mail id ,i shall send u a ppt on the same

Reward if u find it useful

Sapsurfer

Edited by: SapSurfer on Feb 28, 2008 9:23 AM

Former Member
0 Kudos

hi

in smartform--style-create a character format--there u can select the barcode option-save and activate the character format.

now call this smartform style in smartform-form attributes-output option--style ---call the smartform style.

now use this character format where u want to print the barcode.

Former Member
0 Kudos

Hi,

Follow the steps below.

1.Create the smartstyles to generate the barcode in smartforms.Use "smartstyles" tcode

2.Right click on character formats,create node.

3.Enter name as "C1".

4.Select the barcode name(right side) as "BC_EAN8".

5.Click on Font tab.

6.select font family(courier),font size(10,0),font style(Italic)

7.save and activate.

open smartforms

Set the character style which u created earlier to the field which u want. Save,activate and call the function module from print program.

<REMOVED BY MODERATOR>

Thanks,

chandu.

Edited by: Alvaro Tejada Galindo on Feb 27, 2008 5:22 PM

Former Member
0 Kudos
Former Member
0 Kudos

Hi

U need to print the code in a variable using a chararcter type for the BARCODE:

See in trx SE75 if there's a font good for you.

When you create your charater (for example BC) for barcode in the smartstyle, you need to indicate which barcode has to be used.

  • <BC>&VARIABILE&<BC>

While printing the variable will be shown as barcode.

Max