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

Table maintenance generator multiple users entry at the same time

Former Member
0 Likes
2,193

Dear,

Kindly we need to give the ability to multiple user to access and make new entries in the same table on the same time in table maintain generator .

9 REPLIES 9
Read only

Former Member
0 Likes
1,334

This message was moderated.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,334

By default SM30 will lock the full table (it locks the table in fact (RSTABLE / E_TABLEE)

You could use one of the events of the dialog maintenance to dequeue the lock. (Extended Table Maintenance Events)

But then two users will be able to change same record as the generated program doesn't lock records, so at your own risks, you could consider developing a true module program yourself.

Regards,

Raymond

Read only

Former Member
0 Likes
1,334

This message was moderated.

Read only

0 Likes
1,334

You could also make the same comment about the reply of sai krishna, based on an incorrect understanding of the table authorisation concept.

Read only

0 Likes
1,334

This message was moderated.

Read only

0 Likes
1,334

This message was moderated.

Read only

Former Member
0 Likes
1,334

I think you can use Row locking concept and make your own customize transaction to create the entries.

Regards,

Rahul Singh

Read only

Former Member
0 Likes
1,334

You can go for row level locking wherein two users can access the same table at a time but not the same row..

You can refer to this link to implement the same

http://saptechnical.com/Tutorials/ABAP/Lock/Page1.htm

Thanks,

Namrata

Read only

matt
Active Contributor
0 Likes
1,334

I've removed posts which refer to client dependence/independence, and authorisation groups as they are simply wrong in the context of the original post.