Application Development 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: 

smartforms hardcode symbol ≤

acetedi
Participant
0 Kudos
770

Hello Expert, I have requirement in smartforms to able display this symbol ≤ in text area

how to hardcode in abap program symbol ≤ to display in smartforms

10 REPLIES 10

Sandra_Rossi
Active Contributor
0 Kudos
694

When you generate the form, select a device type supporting Unicode.

“≤” U+2264 Less-Than or Equal To Unicode Character.

raymond_giuseppi
Active Contributor
694

For non ASCII character, look for the many Smartfrms / Unicode notes and existing threads as well as transactioàns such a UCCHECK.

Sandra_Rossi
Active Contributor
0 Kudos
694

You also have the SAP character <409> for it (as I can see in the table TCP01) that you may include in a SAPscript Text.

TDFORMAT  TDLINE
*         left <409> right

would output

left ≤ right

acetedi
Participant
0 Kudos
694

so i just inputing text ≤15.0 like this in smartforms

acetedi
Participant
0 Kudos
694

output print preview in my smartforms look like this when iam trying added <409>

thats its not a problem

Sandra_Rossi
Active Contributor
0 Kudos
694

Probably your selected device is not a Unicode one.

acetedi
Participant
0 Kudos
694

Thats is only preview in smartforms,

I checked symbol supported in Smartform thats not include that symbol maybe sap giving # for replacing not supported symbol?

Sandra_Rossi
Active Contributor
0 Kudos
694

If you choose a Unicode device type, it won't replace with #.

SWINCF is Unicode-enabled as you can see.

See information on the Web.

acetedi
Participant
0 Kudos
694

how do i change SWINCF, I trying to changed in table TSFDEVTY and SXDEVTYPE but still containing #.

acetedi
Participant
0 Kudos
694

This problem solved using tcode SPAD, just create new config print dev type swincf

Thank You for helping me Sandara Rossi