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

data type

Former Member
0 Likes
492

i didnt mention any type in declaration.

what is the default type?? char or int or float??

REPORT ZFLOAT .

parameters: b(5),

c(5).

DATA: a type p.

a = b * c.

write : / a.

plz see and tell

thanks and regards

vijay

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
469

<b>CHAR</b> TYPE

4 REPLIES 4
Read only

Former Member
0 Likes
470

<b>CHAR</b> TYPE

Read only

Former Member
0 Likes
469

Hi Vijay,

Default type is char.

Regards,

Vidya.

Read only

Former Member
0 Likes
469

Hi,

In ABAP by default the system will take Char type, if we dont declare any type for a variable in data declaration.

Hope this info helps.

Regards,

Kumar.

Read only

Former Member
0 Likes
469

thanks yaar. for ur useful answers.