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
How many types of tables exists and what are they in data dictionary? : abap data dictionary
What is the procedure you followed to upload the data?
What are ranges?
HOW TO DIFFERENT CALL TRANSACTION ON THE BASIS OF DOUBLE CLICKING ON DIFFERENT FIELD.
In sap script how to print bar code in vertical manner
Can we include customizing include or an append structure with pooled or cluster tables? : abap data dictionary
What is the purpose of at first and at last?
What are the user interfaces of interactive lists?
Can you show multiple alvs on a single screen?
Write syntax for message error (report)?
What is difference between dependent and independent data?
A field containing quantity amounts (data type quan) must be assigned to a referencetable and a reference field. Explain?
What are different data types in abap/4?
How do you write manual bdc session method? : abap bdc
Explain how is batch input process different from processing on line?