Database view containing recruitment status description in Pending Applicants
User needs TRS view containing recruitment status description in Pending Applicants program
Munis all versions
Tyler Reporting Services views
Pending Applicants
The view database overlay shows only the status code.
To view this description in Munis, follow the steps below:
Navigate to Munis menu > Human Capital Management > Recruiting > Pending Applicants
Search for a given requisition number, the field Recruitment Status under MAIN tab contains the description.
The description for this status code is available in TRS view pr_miscellaneous under the column ms_desc_long. In following SQL query, replace XXXX with the status code in Pending Applicants to get the description:
SELECT
a_misc_code,
ms_desc_short,
ms_desc_long
FROM pr_miscellaneous
WHERE a_code_type = 'RSTS'
and a_misc_code = 'XXXX'