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

Currency

Former Member
0 Likes
393

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
374

write as ..

write v_amount to v_char. "--> 32,256.36- to v_char

concatenate '(' v_char ')' into v_char1.

write v_char1.

2 REPLIES 2
Read only

Former Member
0 Likes
375

write as ..

write v_amount to v_char. "--> 32,256.36- to v_char

concatenate '(' v_char ')' into v_char1.

write v_char1.

Read only

0 Likes
374

Thanks.