‎2007 Apr 25 5:09 AM
Hi,
What is the difference between c(10) & c(10) type c.
Thanks in Advance.
‎2007 Apr 25 5:12 AM
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
‎2007 Apr 25 5:12 AM
hi,
there is no difference in sap if you dont specify anything by default it is char dat atype.
regards,
Navneeth.K
‎2007 Apr 25 5:12 AM
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
‎2007 Apr 25 5:30 AM
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...