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

smartforms hardcode symbol ≤

acetedi
Participant
0 Likes
2,648

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
Read only

Sandra_Rossi
Active Contributor
0 Likes
2,572

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

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

Read only

RaymondGiuseppi
Active Contributor
2,572

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

Read only

Sandra_Rossi
Active Contributor
0 Likes
2,572

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
Read only

acetedi
Participant
0 Likes
2,572

so i just inputing text ≤15.0 like this in smartforms

Read only

acetedi
Participant
0 Likes
2,572

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

thats its not a problem

Read only

Sandra_Rossi
Active Contributor
0 Likes
2,572

Probably your selected device is not a Unicode one.

Read only

acetedi
Participant
0 Likes
2,572

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?

Read only

Sandra_Rossi
Active Contributor
0 Likes
2,572

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.

Read only

acetedi
Participant
0 Likes
2,572

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

Read only

acetedi
Participant
0 Likes
2,572

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

Thank You for helping me Sandara Rossi