- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2024 07:50 AM
I have added a skill determination rule using the Advanced option. The shell script code gives me a wonderful start...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2024 03:04 AM
Hi Paul! You could use skillLevelSysId and specify the sys ID of the skill level. I tested the code below to assign my "Microstation" skill with skill level of "Expert"
var skills = [];
var skill = {
"skillName": "Microstation",
"skillSysId": "143f6b6483355210d2a9b5b6feaad300",
"skillLevelSysId": "372577a083755210d2a9b5b6feaad3d6", // Expert
"mandatory": true
};
skills.push(skill);
return skills;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2024 03:04 AM
Hi Paul! You could use skillLevelSysId and specify the sys ID of the skill level. I tested the code below to assign my "Microstation" skill with skill level of "Expert"
var skills = [];
var skill = {
"skillName": "Microstation",
"skillSysId": "143f6b6483355210d2a9b5b6feaad300",
"skillLevelSysId": "372577a083755210d2a9b5b6feaad3d6", // Expert
"mandatory": true
};
skills.push(skill);
return skills;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2024 01:22 PM
Thank you, toptanti. Very helpful. This will be good to know for future. (I ended up making simple rules instead of advanced for setting the skill level).