Hello all,
I'm building an integration and connecting to the Landmark database directly. What is the table relationships/keys I need to fetch the EE's, supervisor EEID?
Thanks,
TIm
This one is pretty straightforward:
select wa.employee ,sup_wa.employee as sup_employee from prodline.workassignment as wa inner join prodline.workassignment as sup_wa on sup_wa.hrorganization = wa.hrorganization and sup_wa.assignmentissupervisor = wa.directsupervisor and sup_wa.active = 1 and hex(sup_wa.deleteflag) = repeat('0',32) where wa.hrorganization = 'whatever' and wa.active = 1 and hex(wa.deleteflag) = repeat('0',32)