‎2008 Apr 15 8:25 AM
Hi Experts,
Please CLear My doubt.
1.what is the difference between Data Element & Domain.
‎2008 Apr 15 8:29 AM
Hello,
Domain will define data type, value range, check table etc... Data element will be based on a domain (or data type defined directly) and will define description texts.
For example if you need to create a table with many date fields, you'll will define only one domain (or use the DATUM domain) and create many data elements.
Jean-Michel
‎2008 Apr 15 8:29 AM
Hi,
Domain - Specifies the technical attributes of a data element - its data type, length, possible values, and appearance on the screen. Each data element has an underlying domain. A single domain can be the basis for several data elements. Domains are objects in the ABAP Dictionary.
Data Element - Describes the business function of a table field. Its technical attributes are based on a domain, and its business function is described by its field labels and documentation.
Please reward if useful.
‎2008 Apr 15 8:29 AM
Hi,
domain will give the technical properties of a field(data type,length,value table,etc..)
data element will give u the technical properties(domain), documentation and field labels.
rgds,
bharat.
‎2008 Apr 15 8:31 AM
Please check this link :
http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ea31446011d189700000e8322d00/frameset.htm
Reward Points, if helpful,
Sandeep Kaushik
‎2008 Apr 15 8:31 AM
‎2008 Apr 15 8:35 AM
Domain : it gives the techincal charecterstics of the field that uses it. its in general.
for example if we create a domain for name every field which uses it gets its charcterstics like data type as char length foe ex 10
data element : it contains sematic charcterstics of the field
only pure description like field labels documentation etc.
in the above example the name can be of various type like name of persons ,companies etc. so we use one dataelement to describe names of persons and one to describe names of companies etc. we use data element based on context. but the innerlying domain is one and the same
regards
prasanth
‎2008 Apr 15 8:35 AM
hi,
domain is small unit than data element.
Mainly Domain is used for value range and data element is for field description.
Regards,
‎2008 Apr 15 10:27 AM
Domain contains technical attributes like type, size
Data Element contains semantic attributes like description
Domain is assigned to data element.
reward if helps