‎2009 Jan 09 4:37 PM
Hello ,
I get amount from cluster.
How to get sign of amount( BETRG field ) from cluster?
Thanks.
‎2009 Jan 09 4:45 PM
Have you declared your field of type BETRG itself...as this domain will have sign along with it then you should be getting the sign..
‎2009 Jan 09 4:45 PM
Have you declared your field of type BETRG itself...as this domain will have sign along with it then you should be getting the sign..
‎2009 Jan 09 4:57 PM
Thanks for reply...
But how can I separate amount from sign.
eg amount may be -1234.99 or 1234.99-
Thanks.
‎2009 Jan 10 10:47 AM
IF wa_betrg < 0.
wa_betrg = wa_betrg * (-1). " and u know the number is negative
ENDIF.
‎2009 Jan 21 8:53 AM
Hello,
data in field is xx,yy.zz. having length 8.
want to convert it to fix length with adding 00 ie it should be 00xxyyzz without , & .
how to do that.
Thanks.
‎2009 Jan 21 9:00 AM
Hello,
You want to remove the decimals seprator as well.
I mean if you have value as 12,345.67, output you want as 001234567.
Plz revert.
BR,
Suhas
‎2009 Jan 09 6:45 PM