cancel
Showing results for 
Search instead for 
Did you mean: 

Need to print a barcode that includes embedded tabs

Former Member
0 Kudos

Hi all,

I need to print a barcode that includes embedded tabs.

The exact requirement is the barcode will have the values for the following fields: Material, UOM, Special Stock Indicator and Special Stock Number.

I can print a single barcode for all the fields together.

But, now I need to put a tab between each field and then print the barcode as a continuous one. So, there will be three tabs. And the barcode should contain the embedded tabs.

Please assist.

Thanks and regards,

Anishur

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

HI,

just define tab as a hexadecimal code and then concatenate this with ur Material, UOM, Special Stock Indicator and Special Stock Number.

data : tab TYPE X VALUE '9'.

concatenate material tab uom tab SSi tab SSN into result.

print this result with barcode character type.