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.