Rescind Process in HR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2025 10:15 PM
Hi Team,
I wanted to know rescind process in HR.
Apart from UI action, What are the trigger points we have for rescind? Like how the system automatically rescind the HRC?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2025 01:03 AM
Hello @preethigovi ,
Please follow the below link to know for what trigger points you can configure the rescind activity.
Please mark my answer as accepted solution and give thumbs up, if it helps you.
Regards,
Abhishek Thakur

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2025 01:06 AM
@preethigovi Apart from the UI Action, I doubt if there us any other way to trigger rescind. At least it is not officially documented.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2025 01:46 AM
Hi @Sandeep Rajput , I noted that in hr_ActivitySet OOB script include we have this code, but not sure when it applies need to check
// rescind the LE case
_rescindCase: function() {
var caseGr = new GlideRecord(this._grContext.workflow_context.scratchpad.parentTableName);
if (caseGr.get(this._grContext.hr_case)) {
caseGr.setValue('state', CASE_STATE_RESCINDED);
caseGr.update();
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2025 01:52 AM
@preethigovi Ideally, this method call should get triggered via the Rescind UI Action.