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

integer to characters conversion

Former Member
0 Likes
827

Hi all,

can u tell me the functional module to convert integer to characters plz?

Thanks in advance

Ravi

6 REPLIES 6
Read only

Former Member
0 Likes
808

Hi,

REPORT  ZTEST                           .

data: int  type i.
data: char(10).

int = 100.
move int to char.
write char.

regards

vijay

Read only

Former Member
0 Likes
808

do we need any FM for that , u can use

move int to char.

Read only

Former Member
0 Likes
808

you can simply do that by -

move int to char.

Read only

suresh_datti
Active Contributor
0 Likes
808

try this CONVERSION_EXIT_ALPHA_OUTPUT

Suresh

Read only

Former Member
Read only

Former Member
0 Likes
808

try this

WRITE int NO-SIGN TO char.

Regards,

Bikash