Notifications
Announcements
No record found.
The personnel actions framework is extensible, allowing you to create new action types like "Editing a Worker" beyond the standard options.
To create a custom personnel action type:
Extend the PersonnelActionType base enum:
[ExtensionOf(enumStr(PersonnelActionType))] public final class MyPersonnelActionType_Extension { public const MyEditWorkerAction = 20; // Use next available number }
Create a new class that extends PersonnelAction:
PersonnelAction
class MyEditWorkerPersonnelAction extends PersonnelAction { // Implement required methods public PersonnelActionType actionType() { return PersonnelActionType::MyEditWorkerAction; } // Add other required logic }
Register your action in the PersonnelActionController class initialization:
PersonnelActionController
personnelActionProcessorMap.insert(PersonnelActionType::MyEditWorkerAction, classStr(MyEditWorkerPersonnelAction));
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
As AI tools become more common, we’re introducing a Responsible AI Use…
We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Martin Dráb 664 Most Valuable Professional
André Arnaud de Cal... 522 Super User 2025 Season 2
Sohaib Cheema 303 User Group Leader