‎2008 Dec 12 9:43 PM
Hi,
Is there a way to block users from deleting the variants in an ABAP program?
The PROTECTED flag only protects against any changes...but allows deletion..strange!!!!
‎2008 Dec 12 10:14 PM
Hi there
in VARID - SECU ( Authorization Group ) hope by some means you can use it.
‎2008 Dec 12 9:55 PM
AT SELECTION-SCREEN.
CASE sy-ucomm .
WHEN 'VDEL' .
MESSAGE 'Variant cannot be deleted' TYPE 'E'.
ENDCASE.
‎2008 Dec 12 10:14 PM
Hi there
in VARID - SECU ( Authorization Group ) hope by some means you can use it.