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 to character

prince_isaac
Active Participant
0 Kudos
91

hie gurus

im looking for an FM to convert ASCII to character or any giudelines to help me achieve my requirement

regards

prince

2 REPLIES 2

Former Member
0 Kudos
54

Hi,

report asciicode.

Parameters : c1 type c.

field-symbols : <n> type x.

data : rn type i.

assign c1 to <n> casting.

move <n> to rn.

write rn.

Fm:n = STRLEN( text ).

i = 0.

do n times

call function URL_ASCII_CODE_GET

trans_char = text+i(1).

i = i + 1.

Perform ur logic with Char_code.

Regards,

Shiva Kumar

prince_isaac
Active Participant
0 Kudos
54

Thanx for all the input guys.

regards

Isaac Prince