Application Development 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: 

Enable multiple users to maintain a Z-table with VIEW_MAINTENANCE_CALL

Former Member
0 Kudos

Hi ,

Does anyone know if it's possible to use fm VIEW_MAINTENANCE_CALL for multiple users to maintain the same z-table? It seems that it locks the entire table, and not on key combinations.

Example:

we have a z-table with 3 fields e.g. BUKRS, AUFNR and BNAME and want to enable multiple users to maintain records for the same Company/BUKRS.

Can that be achieved with VIEW_MAINTENANCE_CALL or another SAP fm or we need to create an entire new program?

Thanks and regards

Anders

1 ACCEPTED SOLUTION

Former Member
3 REPLIES 3

JozsefSzikszai
Active Contributor
0 Kudos

hi Anders,

I think you have to write your own program to maintain the Z table. However this lock is not by accidently done in standard: Two users open start the tranaction (to maintain the table) at the same time and they want to save data into the table with the same key. For the secont it will result into a nice dump. This is why you should not really think about allowing table maintenance for different users at the same time.

ec

Former Member

0 Kudos

Hi Mrutyunjaya ,

I'll test this fm asap, it seems it would do the job.

Thanks for helping!

Anders