Problem: you want to remove button from the Maintenance View screen.
Solution: nothing simpler. All you need to do is handle one of the Maintenance View events, i.e.: 19 After initializing global variables, field symbols, etc.
In the procedure created for this even you simply specify which screen buttons are to be hidden from a user. Below example is for the „delete record” button.
FORM handle_after_init_global_vars. APPEND 'DELE' TO excl_cua_funct. ENDFORM. "HANDLE_AFTER_INIT_GLOBAL_VARS
Komentowanie jest zakończone.