‎2008 Aug 06 9:09 AM
hi friends . I want to consubstantiate currency wears variable with string variable . how is this?
thanks...
‎2008 Aug 06 9:15 AM
hiii
use following code
data:
v1 type p decimals 2 value '234.43',
v11(7) type c,
v2(6) type c value 'ruppes',
v3 type string.
v11 = v1.
CONCATENATE v11 v2 into v3 separated by space.
write: v3.regards
twinkal
‎2008 Aug 06 9:17 AM
see this code..
tables:TCURC.
data: wears like TCURC-WAERS value 'INR' ,
v_wears(5) type c .
data: test type string value 'test'.
v_wears = wears.
concatenate v_wears test into test .
write:/ test .
‎2008 Aug 06 10:01 AM
‎2008 Aug 06 10:04 AM
hi,
Concatenate the currency filed with the "NAme of Currency' field.
Data:
Curr(5) type c value 22.14,
cname(5) type c value 'RS',
currency type string.
Concatenate Curr cname into currency.
Regards
Sumit Agarwal