February 2023 Release: Resolved Issues
2023.02 GA Release - Package Version 6.56.2
: Offer Popup Not Showing JobName
The prepopulated Job A job (vacancy, position, role) is an opening for which a customer's client needs a placement. name will now appear under Job Look-up when moving a Candidate A person looking for a job. A candidate can also be referred to as a Job Seeker, Applicant, or Provider. to the Offer The fourth Stage of Job application flow. This is when the candidate is offered the position (details about salary, locations etc are shared and candidate decides if he wants to take the job) stage.
Send Out/Internal Interview: Incomplete Subject Line of the ICS File Invite
The subject line of the ICS invite uses the same subject line of the email. Previously the ICS would have an incomplete Subject Line if the email didn’t have a subject line or the email subject line contains a merge field.
Now the ICS invite subject line is auto-populated with the following string:
Type +Interview + External Job Name
If Job.External_Job_Title is not populated, then we use Job Title. For example, Video Interview The third Stage of Job application flow. This is when the recruiter sets up a job interview between Candidate and Client. /Java and C++ Developer.
Method Not Automatically Deleting TR1__Document_Session__c Records
The background action that automatically deletes TR1__Document_Session__c records older than 24 hours has been restored.
The automatic deletion only deletes 100 TR1_Document_Session_c records at a time. If there is a large amount of records in the
perform a one-off mass delete with the following script:Datetime moment = System.now();
Integer delayInMinutes = -15;
DateTime timeDelay = Datetime.newInstance(moment.year(), moment.month(), moment.day(), moment.hour(), moment.minute(), 0);
timeDelay = timeDelay.addMinutes(delayInMinutes);
DateTime docSesDelay = timeDelay.AddHours (-24);
delete [SELECT id FROM TR1__Document_Session__c WHERE CreatedDate < :docSesDelay LIMIT 10000];
Indexing: Unnecessary Delete Request Created
A “Delete” action is sent to
only the first time the Contact matches the filter out rule Do Not Sync with .The same fix applies to candidate filtering and job filtering configurations. Also, where the filter fields are pulled from is dependent on the enablement status of useNewTkObjectConfigurationFields in the
:- Enabled: object BHTK_object_configuration__mdt
- Not enabled: object BHTK_configuration__mdt