cancel
Showing results for 
Search instead for 
Did you mean: 

Locking Mechanism and update workprocess

11-13-2021 7:53 PM
922 views 4 comments
0 Likes
SAP Managed Tags
Subscribe

Hello there i am beginner learning SAP . Can somebody explain how the below mechanism work step by step in ABAP AS Mulitiple instance architecture. How will update work process update database objects in below case.

0 Likes

Accepted Solutions (0)

Answers (3)

Answers (3)

drayton_al
Explorer
0 Likes

Lock mechanism places a lock on the records if a user is modifying the same . so that other users for other Apps servers cannot use that same record. After the user is done and cofirms the data, the Update work process update the database records.

Isaias_SAP
Product and Topic Expert
Product and Topic Expert
0 Likes

Hello Phanendra,

On a high level, when an ABAP application wants to change something on the database, it first creates an Enqueue lock, so no other user / process can change the same data.

Then, the application creates an update request, which will contain the changes.

At a later point (normally almost immediately), the system triggers the processing of the update request, which performs the changes on the database tables and commits them.

One the update is finished, the corresponding Enqueue locks are released.

Regards,

Isaías

ruchitkhushu
Explorer
0 Likes

Can you please tell specifically which part isn't clear ? That would be helpful.

Regards.

Ruchit