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

Character

Former Member
0 Likes
491

Hi,

What is the difference between c(10) & c(10) type c.

Thanks in Advance.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
474

Hi,

C(10) :- If you are not mentioning any data type then defaulty SAp takes it as a character

Data : c, -


Its a character type of length 1....

d(2), -


Its a character type of length 2....

e(10). -


Its a character type of length 10....

c(10) and c(10) type c are same character type of length 10.

reward if useful,

regards,

nazeer

3 REPLIES 3
Read only

Former Member
0 Likes
474

hi,

there is no difference in sap if you dont specify anything by default it is char dat atype.

regards,

Navneeth.K

Read only

Former Member
0 Likes
475

Hi,

C(10) :- If you are not mentioning any data type then defaulty SAp takes it as a character

Data : c, -


Its a character type of length 1....

d(2), -


Its a character type of length 2....

e(10). -


Its a character type of length 10....

c(10) and c(10) type c are same character type of length 10.

reward if useful,

regards,

nazeer

Read only

Former Member
0 Likes
474

Viji,

There is no diffrence.By defualt system will consider the Data type "C".

This is also same scenario.

DATA : v_data(10) value 'Testing'.

OR

DATA : v_data(10) type c value 'Testing'.

Don't forget to reward if useful...