0% found this document useful (0 votes)
23 views

ABAP Dictionary Is Used To Create and Manage Data Definitions (Metadata) - ABAP

The document discusses ABAP Dictionary, WebDynpro, modifications, enhancements, objects, classes, and how to create a structure in SE11 transaction in SAP. ABAP Dictionary is used to create metadata like tables and views. WebDynpro is used for developing web-based business applications. Modifications directly change SAP objects while enhancements use exits/BADIs and won't be overwritten during upgrades. Objects contain data and methods, while classes describe objects and multiple objects can be based on a single class. The document provides instructions on how to create a structure in SE11 by selecting data type, entering a name starting with Y or Z, selecting structure, providing a description and components, and saving.

Uploaded by

vijuvhm
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views

ABAP Dictionary Is Used To Create and Manage Data Definitions (Metadata) - ABAP

The document discusses ABAP Dictionary, WebDynpro, modifications, enhancements, objects, classes, and how to create a structure in SE11 transaction in SAP. ABAP Dictionary is used to create metadata like tables and views. WebDynpro is used for developing web-based business applications. Modifications directly change SAP objects while enhancements use exits/BADIs and won't be overwritten during upgrades. Objects contain data and methods, while classes describe objects and multiple objects can be based on a single class. The document provides instructions on how to create a structure in SE11 by selecting data type, entering a name starting with Y or Z, selecting structure, providing a description and components, and saving.

Uploaded by

vijuvhm
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 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