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

CONVERSION EXITS URGENT

Former Member
0 Likes
390

Does anyone know how to make a negative number with a MINUS in front of the numebr???

45.000 - to be - 45.000

through conversion exits or how??

to put it into ALV...

Does anyone know how to make a negative number with a MINUS in front of the numebr???

45.000 - to be - 45.000

through conversion exits or how??

to put it into ALV...

2 REPLIES 2
Read only

Former Member
0 Likes
362

hi,

try this FM 'CLOI_PUT_SIGN_IN_FRONT'

Read only

Former Member
0 Likes
362

hi

good

try this hope this ll help you to solve your problem.

DATA char TYPE char10.

DATA int TYPE i VALUE -10.

START-OF-SELECTION.

MOVE int TO char.

CALL FUNCTION 'CLOI_PUT_SIGN_IN_FRONT'

CHANGING

value = char.

WRITE char.

Or just Try this.

WRITE int USING EDIT MASK '-___________'.

reward point if helpful.

thanks

mrutyun^