Skip to Content
0
Former Member
Jan 01, 2008 at 07:40 AM

CLOI_PUT_SIGN_IN_FRONT

2962 Views

Hi Experts,

I m using this fm to convert negative values to positive without any sign.

is it right.if it is then why it is not solving my problem.

i m doing like this.

data: cpp_po type p.

data: t(16) type c.

move cpp_po to T.

IF ( T < 0 ).

CALL FUNCTION 'CLOI_PUT_SIGN_IN_FRONT'

CHANGING

value = T.

ENDIF.