Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Aggregate Objects

Former Member
0 Likes
1,036

What is aggregate object with respect to ABAP Dictionary?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
634

Views, matchcodes and lockobjects are called as aggregate objects since they are formed using several related tables.

Views avirtual table tailored to the needs of an application is needed, making it possible to

directly access specific data.

Matchcodesis a tool to help you search for data records in the system. Matchcodes are an

efficient and user-friendly search aid for cases where the key of a record is unknown.

Lock objects: Simultaneous accessing of the same data record by two users in the SAP system is synchronized by a lock mechanism. When dialog transactions are programmed, locks are set and released by calling certain function modules. These function modules are generated automatically from the definition of so-called lock objects in the ABAP/4 Dictionary.

2 REPLIES 2
Read only

Former Member
0 Likes
635

Views, matchcodes and lockobjects are called as aggregate objects since they are formed using several related tables.

Views avirtual table tailored to the needs of an application is needed, making it possible to

directly access specific data.

Matchcodesis a tool to help you search for data records in the system. Matchcodes are an

efficient and user-friendly search aid for cases where the key of a record is unknown.

Lock objects: Simultaneous accessing of the same data record by two users in the SAP system is synchronized by a lock mechanism. When dialog transactions are programmed, locks are set and released by calling certain function modules. These function modules are generated automatically from the definition of so-called lock objects in the ABAP/4 Dictionary.

Read only

Former Member
0 Likes
634

Hi Jaspreet,

The objects in ABAP can be classified as:

BASIC OBJECTS

Tables

Domains

Data elements

Structures

Foreign keys

AGGREGATE OBJECTS

Views

Matchcodes

Lock objects

cheers,

Hema.