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

i have another problem in sapscript

Former Member
0 Likes
345

i made this

in se38

WHEN 'KOMK-FKWRT'.

translate in_tab-value using ', '.

condense in_tab-value no-gap.

move in_tab-value to zXXXXX.

all this becuse i get value <b>1,234</b>

after this treatment

i need to send to se71

value <b>2,345</b>

now i have <b>2345</b>

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
305

Now all you need to do is write it back. First move to an INT, then write it back to your ini_tab-value field.

data: i type i.
i = in_tab-value.
write i to in_tab-value.

Regards,

Rich Heilman

1 REPLY 1
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
306

Now all you need to do is write it back. First move to an INT, then write it back to your ini_tab-value field.

data: i type i.
i = in_tab-value.
write i to in_tab-value.

Regards,

Rich Heilman