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 / jwalitha
using the statement -Types
we can declare own data types
TYPES dtype [TYPE type|LIKE dobj] ...
where as using DATA statement
we can declare own variables or instance attributes of classes
DATA var [{TYPE type}|{LIKE dobj}] ...
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the types of views? : sap abap data dictionary
What is a view in sap? : abap data dictionary
What are the different types of parameters? : abap modularization
wht is the diff. b/n initialization and lotus of event
What are the data classes in abap?
What is a match code? : abap data dictionary
What is the first thing you do after vendor setup is complete?
Where do you code the hide statement?
What are Table control and tab strip control in dialog programming ?
How can we handle table control in bdc? : abap bdc
What is sap abap tables?
How do we assign dynamic views while creating material master and generating bdc? : abap bdc
What is collective search help? : sap abap data dictionary
When will the current screen processing terminates?
What is the diffreence between bdc_close_group and bdc_close_dataset? : abap bdc