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

Convert String to Intiger

Former Member
0 Likes
461

Hi All

I have got the sales order history details using following Function

CHANGEDOCUMENT_READ_POSITIONS,

but i have string field nedd to convert to integer,please help me how to convert this

Thanks

kanishka

3 REPLIES 3
Read only

Former Member
0 Likes
433
the foll code will convert the string to interger.
DATA NO1 TYPE STRING.

DATA NO2 TYPE I.

NO1 = '1234567890'.

NO2 = NO1.

WRITE NO2.
Read only

Former Member
0 Likes
433

Hi,

Plz use the following FM.

CONVERT_STRING_TO_INTEGER

Regards

Bhupal Reddy

Read only

Former Member