You are on page 1of 3

ABAP Dictionary is used to create and manage data definitions (metadata).

ABAP
Dictionary is used to create Tables, Data Elements, Domains, Views, Lock Objects etc.

WebDynpro is a client-independent programming model used for developing
sophisticated user interfaces for web based business applications.

MODIFICATIONS : Change to the standard functionality by changing the SAP object
itself using the 'ACCESS KEY ' from SAP .These objects needs to be observed during
version upgrades as the upgrade patches might overwrite the code written by you .
Except for certain incode user exits provided by SAP like MV45AFZZ .

ENHANCEMENTS : Change to the standard functionality by using the exits / badis
provided by SAP. These objects do not need any access key from SAP. These changes
will not get over written during SAP version upgrades.

Objects
Objects are instances of classes. They contain data and provides services. The data
forms the attributes of the object. The services are known as methods (also known as
operations or functions). Typically, methods operate on private data (the attributes, or
state of the object), which is only visible to the methods of the object. Thus the attributes
of an object cannot be changed directly by the user, but only by the methods of the
object. This guarantees the internal consistency of the object.
Classes
Classes describe objects. From a technical point of view, objects are runtime instances
of a class. In theory, you can create any number of objects based on a single class.
Each instance (object) of a class has a unique identity and its own set of values for its
attributes.



Go to transaction SE11 and select the radio button Data type. Enter a structure name starting with Y or
Z.

Press create button.
A pop-up screen appears with 3 different options. Select the radio button structure.

The screen will be displayed like this.

Provide the description and also components.

Then press SAVE, CHECK and ACTIVATE.
Structure Created Successfully.

You might also like