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: 

RE: TABLE MODIFICATION IN CROSS CLNT

sreekanth_sunkara
Active Participant
0 Kudos

Hi all,

I need some help on this issue. User need to modify C&E tables (YCEMOVTUS ...), but the object S_TABU_CLI was set to not modifiable in production, is there any other way other than modifying object for cross client table maintenence in production (means is there a way to change the settings in table or adding a filed in table so that only this user can modify particular 2 tables)

1 ACCEPTED SOLUTION

Former Member
0 Kudos

S_TABU_CLI is all or nothing at first for client independency (tables without MANDT as a primary key), so you need to use S_TABU_DIS as well on the client dependent authorization groups of the tables (the user's authority is also checked client dependently).

Other pupular options for further restrictions are parameter transactions (use the search) and S_TABU_LIN (see docs in SU21) for line-by-line checks within the table.

Cheers,

Julius

1 REPLY 1

Former Member
0 Kudos

S_TABU_CLI is all or nothing at first for client independency (tables without MANDT as a primary key), so you need to use S_TABU_DIS as well on the client dependent authorization groups of the tables (the user's authority is also checked client dependently).

Other pupular options for further restrictions are parameter transactions (use the search) and S_TABU_LIN (see docs in SU21) for line-by-line checks within the table.

Cheers,

Julius