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

**LOCK OBJECT**

Former Member
0 Likes
1,358

Which is the First character of creating Lock Object?

12 REPLIES 12
Read only

Former Member
0 Likes
1,325

Hi,

Lock object should start with E.. For custom lock objects EZ or EY..

Thanks,

Naren

Read only

Former Member
0 Likes
1,325

Hi,

When you create the Lock you need to start with 'E'

Regards

Sudheer

Read only

Former Member
0 Likes
1,325

hi,

When you create the Lock you need to start with 'E'.

Read only

Former Member
0 Likes
1,325

hi

answer is E. Also, find the very useful answers

regrards

shamim

Read only

0 Likes
1,325

Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
1,325

Hi

Lock Objects starts with E.

Generally lock objects naming convention is : EY or EZ. like that.

Regards,

kumar

Read only

Former Member
0 Likes
1,325

hi

only 'E'.

chetan

Read only

Former Member
0 Likes
1,325

hi ,

lock objects name should start with E.

Regards,

Sruthi

Read only

Former Member
0 Likes
1,325

hi ,

lock objects name should start with E.

Regards,

Sruthi

Read only

Former Member
0 Likes
1,325

hi

Lock object name will always start with E . If you are creating your own lock object it should start with EZ or EY . Also you need to create routine for the lock object -ENQUE and DEQUE.

Madhu

*rewards points if helpful

Read only

Former Member
0 Likes
1,325

Lock Objects should start with fisrt character as 'E'

Generally it shd be EY or EZ

Read only

Former Member
0 Likes
1,325

HI,

Lock objects are use in SAP to avoid the inconsistancy at the time of data is being insert/change into database.

SAP Provide three type of Lock objects.

- Read Lock(Shared Locked)

protects read access to an object. The read lock allows other transactions read access but not write access to

the locked area of the table

- Write Lock(exclusive lock)

protects write access to an object. The write lock allows other transactions neither read nor write access to

the locked area of the table.

- Enhanced write lock (exclusive lock without cumulating)

works like a write lock except that the enhanced write lock also protects from further accesses from the

same transaction.

You can create a lock on a object of SAP thorugh transaction SE11 and enter any meaningful name start with EZ Example EZTEST_LOCK.

Use: you can see in almost all transaction when you are open an object in Change mode SAP could not allow to any other user to open the same object in change mode.

Example: in HR when we are enter a personal number in master data maintainance screen SAP can't allow to any other user to use same personal number for changes.

Technicaly:

When you create a lock object System automatically creat two function module.

1. ENQUEUE_<Lockobject name>. to insert the object in a queue.

2. DEQUEUE_<Lockobject name>. To remove the object is being queued through above FM.

You have to use these function module in your program.

REGARDS,

KANNAN