Application Development 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: 

what is the difference between datatype and dataobject

Former Member
0 Kudos

Hi to all tell me what is the difference between datatype and dataobject

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi,

Data types can be defined independently.

can define datatypes either locally in the declaration part of the program using types statement.or globall y in the ABAP dictionary.

data types are divided into elementary referenceand complex types.

Data objects : are the physical units in which ABAP statements work at runtime.

dataobjects has set of technical atttributes.

declare data objects statically in the declaration part odf an ABAP Program.

pls reward if helpful.

rgds,

rajyalakshmi

3 REPLIES 3

Former Member
0 Kudos

This message was moderated.

Former Member
0 Kudos

hi,

Data types can be defined independently.

can define datatypes either locally in the declaration part of the program using types statement.or globall y in the ABAP dictionary.

data types are divided into elementary referenceand complex types.

Data objects : are the physical units in which ABAP statements work at runtime.

dataobjects has set of technical atttributes.

declare data objects statically in the declaration part odf an ABAP Program.

pls reward if helpful.

rgds,

rajyalakshmi

Former Member
0 Kudos

Hi.

Datatype are types created at dictonary level, just specifying technical attributes. It does not have any memory. Where as dataobjects are variables created at runtime. They will have memory so holds data.

PLZ Award points, if useful.

Regards.