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 labels

Former Member
0 Likes
308

I m printing bar code labels.The table have some filled data that is not printing correctly.

The " &" character is printing outtage.

The ampersand character "&", is printing out as <(>&<)>.

Am I supposed to do any change in the code for label printing to remove this unwanted characters from the label?

Kindly resolve.

Edited by: Anku jain on Feb 24, 2010 6:44 AM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
265

Hii

I also encountered the same problem.

This problem is due to read_text function module.

The R/3 system uses READ_TEXT system-wide and the standard functionalities to mask the special ITF characters. READ_TEXT

is working as designed.We cannot change the syntax of this function module, as it would then cause problems with other

applications using it.

The Sapscript must mask the & character, because usually a & starts a symbol.

Therefore it is saved as <(>&<)> in the Sapscript ITF format.

The special ITF characters are '&', '<' and '>'.

After Read_text,use a function module like CONVERT_ITF_TO_STREAM_TEXT to convert the ITF format to pure text, if you only want to get the pure text and you don't want to handle the text via the Sapscript

1 REPLY 1
Read only

Former Member
0 Likes
266

Hii

I also encountered the same problem.

This problem is due to read_text function module.

The R/3 system uses READ_TEXT system-wide and the standard functionalities to mask the special ITF characters. READ_TEXT

is working as designed.We cannot change the syntax of this function module, as it would then cause problems with other

applications using it.

The Sapscript must mask the & character, because usually a & starts a symbol.

Therefore it is saved as <(>&<)> in the Sapscript ITF format.

The special ITF characters are '&', '<' and '>'.

After Read_text,use a function module like CONVERT_ITF_TO_STREAM_TEXT to convert the ITF format to pure text, if you only want to get the pure text and you don't want to handle the text via the Sapscript