...
The crew list view will list all candidates that have declined an offered position
Main Data Selection
List all records from the Customized Topics Datagroup for Candidates that are Approved for HOD interview and the approved Yes/No field is still blank, and the candidate has not declined.
...
Code Block |
---|
CREATE VIEW dbo.PW001SRV719asselectcad.PIN,PW001SRV719 as select cad.PIN, cad.Ufield19 'Vacancy ID', cad.UField1 as 'Date Submitted', case when cad.Ufield2<>'' THEN 'Yes' else '' end as 'CV', cad.Ufield4 as 'Agency', cad.Ufield5 as 'Approved for HOD Interview', cad.Ufield6 as 'HOD Interview Date', cad.Ufield7 as 'Approved by HOD', cad.Ufield8 as 'Approval Date', cad.Ufield9 as 'Availability Date', cad.Ufield10 as 'In hold pool', cad.Ufield11 as 'Onboard date', ves.Name as 'Onboard Vessel', rank.Name as 'Onboard Position', cad.Ufield14 as 'Declined Position', cad.Ufield15 as 'Declined Reason', p01.Employmentstartdate, p01.Employmentenddate, p01.Client as Numorgid Numorgidfromfrom PW001U03 CAD CADleftleft join pw001p01 p01 on p01.pin=cad.pinleftpin left join pworg ves on ves.numorgid=cad.ufield12leftufield12 left join pw001c02 rank on rank.code=cad.Ufield13where--Candidate has declinedcadUfield13 where cad.Ufield14='Y' |
...
-- Candidate has declinedcad |
Fields/ Columns Specification
The fields available are specified for such a process.
...
UField19 | Vacancy ID | Number |
UField1 | Date Submitted | Date Field |
UField2 | CV | Enclosure |
UField3 | Source | Drop-down with: |
UField4 | Agency Name | Dropdown |
UField5 | Approved for HOD Interview | Checkbox Y/N |
UField16 | Approval for HOD Interview Comments | Text |
UField17 | Approved by HOD Comments | Text |
UField6 | HOD Interview Date | Date Field |
UField7 | Approved by HOD | Dropdown with Yes/No |
UField8 | Approval Date | Date Field |
UField9 | Availability Date | Date Field |
UField10 | In hold pool | Checkbox Y/N |
UField18 | Hold Comments | Text |
UField11 | Onboard Date | Date Field |
UField12 | Onboard Vessel Name | Drop-down with vessels |
UField13 | Onboard Rank | Drop-down with ranks |
UField14 | Declined Position | Checkbox Y/N |
UField15 | Declined Reason | Dropdown |
UField20 | Declined Comments |
Start Page
Link to the documentation on the related Start Page Tile.
...
N/A