Skip to main content

Data Export: HR Policy confirmation data

A data export to show who has confirmed to have read a hr policy.

H
Written by Harry Ledger
Updated over 3 weeks ago

If you need to report for which employees have confirmed theyโ€™ve read your HR policies, you can use the export function in SelectHR to pull this data directly from the system.

To create the export, follow the steps below.

  1. In the Admin Tool, click Import/Export Data.

  2. Click Create an export definition.

  3. Click Select the data to export.

  4. Change the database to SelectCDMS.

  5. Click the SQL tab, then delete Select*.

  6. Copy the following SQL query into the blank space;
    โ€‹

    Select docnot.[Notification Number], docnot.[Item Version Number], docnot.[Person Number], dbo.[Document Confirmation].Required, docnot.Status, docnot.[Last Notified], iv.[Item Number], pd.[Informal Name], iv.Title From dbo.[SelectHR.Person.Details] As pd Left Join (dbo.[Item Version] As iv Left Join dbo.[Document Notifications] As docnot On iv.[Item Version Number] = docnot.[Item Version Number] Right Join dbo.[Document Confirmation] On iv.[Item Version Number] = dbo.[Document Confirmation].[Item Version Number]) On pd.[Person Number] = docnot.[Person Number] Inner Join dbo.[SelectHR.Employee.Person] On pd.[Person Number] = dbo.[SelectHR.Employee.Person].[Person Number]

Did this answer your question?