Delete Fluid Position
User cannot delete Position; the trashcan is grayed out. The user has all the access that Oracle requires.
User tried to inactivate first still cannot delete. Verified that the PeopleCode was applied in PUM31.
The Delete Button was greyed-out because the User did not have the Delete Administrator Role assigned.
In PUM 31 new PeopleCode has been added which requires the User to have a new Position Delete Administrator Role in order to see the Delete button enabled.
DERIVED_POS_FL.DELETE_BTN.RowInit(Record PeopleCode)
If Not IsUserInRole("Position Delete Administrator") Then
DERIVED_POS_FL.DELETE_BTN.Visible = False;
End-If;