Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

bar code display

Former Member
0 Likes
551

hi all,

i am developing a smartform for labels.Can anyone tell me how a barcode is dislayed in form of lines??can i see the lines in print preview also??

1 ACCEPTED SOLUTION
Read only

nirajgadre
Active Contributor
0 Likes
522

Hi,

1. create the barcode character type in the smartform style.

2. Assign this character type to the variable which you want tot display as barcode lines.

3. i guess in order to display the same bar code in print preview as well, barcode needs to be configure

printer barcode in SE73 transaction.

3 REPLIES 3
Read only

Former Member
0 Likes
522

Hi,

This is very simple declare a character format in SMARTSTYLES as barcode and use that

style for the data u want to display as barcode.

For eg B1 is characterformat for barcode.

In the smartform write like this

<B1>&V_ABCD(Z)&</>

where V_ABCD contains the data which u want to show as barcode.

You are able to see the barcode in print preview also.

Regards,

Arun.

Read only

nirajgadre
Active Contributor
0 Likes
523

Hi,

1. create the barcode character type in the smartform style.

2. Assign this character type to the variable which you want tot display as barcode lines.

3. i guess in order to display the same bar code in print preview as well, barcode needs to be configure

printer barcode in SE73 transaction.

Read only

Former Member
0 Likes
522

Thanks GUYS!