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

Customer Table Maintenance

Former Member
0 Likes
718

Hi All,

I have my own customer Z table that I have created, I have a view variant created also and all works file, the only problem is that only one user at any time can maintain the Z table.

Is there any way that I can make modifications either that z table the view variant or the code that I created in SE80 to populate some of the fields on the view (such as matnr description on creation) so that multiple users can maintain the table at one time.

Thanks.

Hi All,

I have my own customer Z table that I have created, I have a view variant created also and all works file, the only problem is that only one user at any time can maintain the Z table.

Is there any way that I can make modifications either that z table the view variant or the code that I created in SE80 to populate some of the fields on the view (such as matnr description on creation) so that multiple users can maintain the table at one time.

Thanks.

4 REPLIES 4
Read only

naimesh_patel
Active Contributor
0 Likes
634

Hello,

I afraid, wheather this option is there or not. Because any data like customer master or purchase order, sales order can't be modified by more than one user simentenously.

regards,

Naimesh

Read only

Manohar2u
Active Contributor
0 Likes
634

Normally it is not possible to edit the same table at simultaniously.

But here is something helpful on different types of locks

http://help.sap.com/saphelp_47x200/helpdata/en/cf/21eeb2446011d189700000e8322d00/frameset.htm

Regds

Manohar

Read only

Former Member
0 Likes
634

Hey,

You could create a maintenance view for the table and then create a table maintenance for the view.

If you have a table with 3 fields, F1, F2 and F3 then in the maintenance view mark the Maintenance attribute of field F1 as "S".

By doing this the user will have to enter value for F1 first before getting in to table maintenance.

This is the closest you can get to multiple users maintaining the same table.

-Kiran

Read only

0 Likes
634

You could create a lock object in SE11.

Use a Z program to have the user select one or more key fields.

Lock the table using the function module generated for the lock object (ENQUEUE).

It will only lock the record(s) specified by the key.

Other users can still maintain the Z table for other keys.