Hi friends
can any one tell me what exactly is the differnce between the below 2 declrations
a) Types:
Begin of TY_STRUC1,
F1 type I,
F2 type P,
F3(10) type C,
F4(5) type N,
End of TY_STRUC1.
i have declared it using types .
b) data :
Begin of TY_STRUC1,
F1 type I,
F2 type P,
F3(10) type C,
F4(5) type N,
End of TY_STRUC1.
i have declared it using data statement.
can any one tell me technically what exactly is the difference between the above 2 declarations
Regards
Priyanka.