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: 

Table Maintenace Authority check for change and create records.

muhammad_sohail
Participant
0 Kudos

Dear All,

I have a table maintenance, I have two t-codes for that. 1st t-code should only have authority to change the record. 2nd t-code should only create the record. Is there any option during T-Code creation to restrict users.

e.g;

Change authority user should change only the record.

Create only user should only create the record.

Regards,

Sohail

2 REPLIES 2

muhammad_sohail
Participant
0 Kudos

Any response pls.

Former Member
0 Kudos

If you just use automatically generated table maintenance view (SE55) then you can create parametric tcode in SE93 which in fact runs SM30 with parameters VIEWNAME (name of the table to be maintained) and UPDATE (X when it should go to change mode). This allows you to create a) tcode for displaing only and b) tcode for changing. But you can't create tcode just for creating new entries without possibility to modify them since the program generated for maintenance view simply knows only change mode in gerenal.

If you need to have tcode for just creating entries and tcode for just modifing entries, you will need to develop this in abap.