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

string concanete

Former Member
0 Likes
684

hi friends . I want to consubstantiate currency wears variable with string variable . how is this?

thanks...

4 REPLIES 4
Read only

Former Member
0 Likes
647

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

Read only

Former Member
0 Likes
647

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 .

Read only

Former Member
0 Likes
647

thanks friends.

Read only

Former Member
0 Likes
647

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