‎2008 Jun 03 3:38 PM
Hi-
I need to concatenate parentheses for $ amount.
For example
32,256.36- Should be (32,256.36)
The date type is CURR.
what i did is i moved it to Char type and concatenated but when i write i am not getting the commas separated $ amount value.
‎2008 Jun 03 3:40 PM
write as ..
write v_amount to v_char. "--> 32,256.36- to v_char
concatenate '(' v_char ')' into v_char1.
write v_char1.
‎2008 Jun 03 3:40 PM
write as ..
write v_amount to v_char. "--> 32,256.36- to v_char
concatenate '(' v_char ')' into v_char1.
write v_char1.
‎2008 Jun 03 4:17 PM