ABAP - Keyword Documentation →  ABAP - Dictionary → 

Classic Objects in ABAP Dictionary

The classic objects in ABAP Dictionary are created and edited using the tool of the same name in ABAP Workbench. Transaction SE11 is the central access point to the ABAP Dictionary tool. The tool for any dictionary object can also be accessed using forward navigation. Certain classic objects in ABAP Dictionary are edited using a source code-based editor in the ABAP Development Tools (ADT). Here, the objects can be created or edited using a syntax based on the ABAP CDS DDL.

The most important classic objects in ABAP Dictionary are:

ABAP Dictionary can handle the following standalone data types:
The data types in ABAP Dictionary are used in ABAP as reference objects for interface parameters and data objects which can be referenced in common by all repository objects.
A table (not to be confused with table type) is an object in ABAP Dictionary that designates a database table. As far as its data type is concerned, a database table is a flat structure for which further technical attributes of the database table can be defined alongside the type attributes. The physical database table is created when a table is activated on the database. An ABAP program handles a database table both as a structure and and as a database table. This means that the table can be used as a template for structured data objects and also accessed using Open SQL.
A view is a grouping of columns in one or more database tables in accordance with an application-specific view. When multiple tables are joined, a view usually implements a join with statically defined join conditions. The columns of a view make a flat structure that can be used as a data type. In Open SQL, a view can usually be used as a database table. An exception to this are the special maintenance views and help views.
A lock object is used as a basis for SAP locks. Lock objects specify database tables associated using foreign key relationships and to which a shared lock applies. When a lock object is created, two lock function modules are generated automatically for use in ABAP programs.
A search help uses a combination of structure components, data elements, and check tables plus assigned data to find values without the user needing to enter the exact value in question.

Like ABAP programs, dictionary objects must be activated before they can be used. Once activated, new or modified definitions are available directly for all other repository objects. If an existing dictionary object is changed, the repository objects that use it work with the previous active version until the modified dictionary object is activated. A dictionary object can only be deleted once all objects that use it have been removed.

This documentation describes the classic type definitions in ABAP Dictionary and how they interact with the ABAP programming language. More information about lock objects and search helps and about the tools used to edit objects in ABAP Dictionary can be found in the documentation ABAP Dictionary in SAP Help Portal

Notes



Continue
Data Types
Database Tables
Views
Enhancements
Replacement Objects