2008 Jun 11 1:17 PM
hie gurus
im looking for an FM to convert ASCII to character or any giudelines to help me achieve my requirement
regards
prince
2008 Jun 11 1:20 PM
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
2009 Jun 15 11:49 AM