what is the difference between
data: begin of ty_emp,
eno type i,
ename type string,
dno type i,
end of ty_emp.
and
types: begin of ty_emp,
eno type i,
ename type string,
dno type i,
end of ty_emp.
Answer Posted / aka ashishy
1st one is a structure and the 2nd one is its data type which is like a blue print which tells how the values of the structure gonna reside.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is pakey structure, pshd1 structure and what type of fields it contains? : abap hr
What is the tcode for sapscript forms?
How to add a column to a table control while using alphanumerical layout editor ?
Which function module reads the data for particular infotype ? : abap hr
Which bdc you prefer? : abap bdc
Of the two call transaction and session method, which is faster?
How to find the return code of a statement in abap programs?
Can you define a field without a data element? : abap data dictionary
Explain how to write a bdc - how do you go about it?
What is a view? : abap data dictionary
What is the difference between RETURNING and CHANGING parameters for a method?
What are system fields for secondary lists?
Does every abap/4 have a modular structure? : abap modularization
What are the differences between structure and table in data dictionary in abap? : sap abap data dictionary
How do you write transaction programs in sap?