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

Barcode Zebra print

Quark_G
Explorer
0 Likes
674

Hello Experts,

I need to print a barcode with two code (material code and batch number) separated by a character. When I'll read the barcode I'd like that the two codes will be splitted on two different fields. Can I use a special character to do this? I try to use the tabulator character but it doesn't work.

Thanks

Q

Hello Experts,

I need to print a barcode with two code (material code and batch number) separated by a character. When I'll read the barcode I'd like that the two codes will be splitted on two different fields. Can I use a special character to do this? I try to use the tabulator character but it doesn't work.

Thanks

Q

3 REPLIES 3
Read only

Abhijit74
Active Contributor
0 Likes
613

Hello Quark,

I have tried with BARCODE format Code 39 but it's not showing any special character in label printing.

Requesting you to check the link if it helps you. Also, check this document.

Thanks & Regards,

Abhijit

Read only

Arun_Prabhu_K
Active Contributor
0 Likes
613

Hello Quark George.

     You read the entire barcoded data entirely in a single input field and make use of '+' operator to separate the data.

     Suppose my material number is of 18 digits length and batch is of 5 char length,

          MATERIAL = Barcode_data+0(18).

          BATCH = Barcode_data+18(5).

Regards.

Read only

0 Likes
613

Hi,

I need to insert a character into the two value to split MATERIAL and BACTH into two different fields of my dynpro, when I read a barcdode.

Thanks

Q