In Create Job requisition page under Details section Worker type should be defaulted to Emp page
Summary:
In Create Job requisition page under Details section Worker type should be defaulted to Employee page
Content (please ensure you mask any confidential information):
I wrote the code as "
define([], () => {
'use strict';
/** * Default value expression for Details.WorkerTypeCode * @param {object} context * @return {string} */ function getDetailsWorkerTypeCode(context) { const { $componentContext, $fields, $modules, $user } = context;
// Default the worker type to 'employee' return 'Employee'; }
return { getDetailsWorkerTypeCode };});
Still not able to see the Employee under Worker type
Version (include the version you are using, if applicable):
Code Snippet (add any code snippets that support your topic, if applicable):