Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The crew list view will list all candidates that are approved by HOD and that has have not declined.

Selection

List all records from the Customized Topics Datagroup for Candidates that are Approved for HOD interview and the approved candidate=Yes, and the candidate has not declined.

...

Code Block
CREATE VIEW dbo.PW001SRV711 asselectcad as
select
	cad.PIN,
	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 is approved by HODcadUfield13
where cad.ufield7='Y'							--Candidate has not declinedand is approved by HOD
	  AND (cad.Ufield14='N' OR cad.Ufield14='') --Candidate has not declined

Field 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:
MAC - Manning Agency Crew
PA - Partner Agency

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