cancel
Showing results for 
Search instead for 
Did you mean: 

Restrict infoytpe maintenance

Former Member
0 Kudos

Can anybody help me in How-to restrict an infotype to be created directly through PA30 ?. i.e. I want to block the INS, COP, DEL functions for this infotype in PA30. But the MOD function should be available.

Also, <b>I don't want to do it through Authorization</b>. Is there any config way?

ST..

Accepted Solutions (0)

Answers (1)

Answers (1)

suresh_datti
Active Contributor
0 Kudos

Suppose you want to do that on Infotype 0009..

put the following code in the User exit ZXPADU02.

case innnn-infty.
  when '0009'.
  if ipsyst-ioper = 'INS' or
     ipsyst-ioper = 'DEL' or
     ipsyst-ioper = 'COP'.
   message e016(rp) with 'Invalid Operation'.
  endif.
endcase.

~Suresh