- 03 Jun 2024
- 1 minute read
- Print
- DarkLight
- PDF
Jobs
- Updated 03 Jun 2024
- 1 minute read
- Print
- DarkLight
- PDF
The Profile tab lists all current and previous jobs, along with the dates of employment. The most recent job will always be listed first.
.png?sv=2022-11-02&spr=https&st=2025-04-20T05%3A57%3A59Z&se=2025-04-20T06%3A07%3A59Z&sr=c&sp=r&sig=jlKIC5NPYI1QItzLwmP%2BLtohZL73eCCpW15XGHq5oPI%3D)
Jobs and courses data are also saved as grouped fields.
Review the standard Slate fields available for storing person data under each section of the profile tab in order to avoid field duplication when adding custom fields and prompts.
.png?sv=2022-11-02&spr=https&st=2025-04-20T05%3A57%3A59Z&se=2025-04-20T06%3A07%3A59Z&sr=c&sp=r&sig=jlKIC5NPYI1QItzLwmP%2BLtohZL73eCCpW15XGHq5oPI%3D)
Job
Jobs have one rank column:
rank
Rank
The ranking order is as follows:
Order of Importance (ascending) - only if all Jobs have a defined Order of Importance.
Employment Date: To (most recent to least recent). If no To Date is specified, the current date is used.
ID (ascending)
Ranking Exclusions
None - all jobs are ranked.
The SQL code used to perform the ranking is below:
select row_number() over (partition by [record] order by [order], coalesce([to], getdate()) desc, [id]) as [rank]
from [job]