Posts

Showing posts from November, 2016

Data Element in SAP ABAP

Data Element in SAP ABAP Here, you can learn the definition of data element and it is utilization in sap applications .As data element most important in sap ,every one should learn about it. Data Elements A data element describes either an elementary type or a reference type. An elementary type is defined by the built-in data type, length and possibly the number of decimal places. These type attributes can either be defined directly in the data element or copied from a domain. You can use a data element to define the type of a table field, structure component or the row type of a table type. A data element can also be referenced in ABAP programs with TYPE. As a result, variables that take on the attributes of a data element can be defined in an ABAP program. Information about the meaning of a table field or structure component and information about editing the corresponding screen field can be assigned to a data element. Example The field CONNID of tab...

Data Types in SAP ABAP

Data Types in SAP ABAP Every SAP ABAP basic learner should be start with data types which are root to implement the SAP applications .So, here i defined the brief introduction of data types. Data Types: All programming languages distinguish between various types of data with various uses, such as. Data types can be divided into elementary, reference, and complex types. Elementary Types These are data types of fixed or variable length that are not made up of other types. The difference between variable length data types and fixed length data types is that the length and the memory space required by data objects of variable length data types can change dynamically during runtime, and that these data types cannot be defined irreversibly while the data object is being declared. Reference Types Reference types are deep data types that describe reference variables, that is, data objects that contain references. Complex Data Types Complex data types are made up...