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: 

Ascii code to symbol character

former_member561436
Discoverer
0 Kudos

Hello, i want export ascii code 12 in text file.

CL_ABAP_CONV_IN_CE=>UCCP method exporting just a #. what can i use to asci 12's feed form symbol to export in text file?

this is symbol;

1 REPLY 1

former_member182550
Active Contributor
0 Kudos

Any ascii code below 31 is classed as a control character and these are unprintable/undisplayable but they do provoke various actions or have various meanings . As you quite rightly say, 12 is Form feed (For further info see http://www.richard-harper.me.uk/Kb option 0005).

Use cl_Abap_Char_Utilities=>Form_Feed instead.