- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2023 06:20 AM
Hi,
I have to add HR Profile table field 'scheduled start date' on Onboarding HR Service and that field should be editable. I have to dot walk in this field to Onboarding case.
Can you please help me to get it.
Regards,
Nivedita
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2023 11:24 AM
@niveditakumari Sorry for keep you waiting for so long. As discussed here is how you need to configure the ACL on HR Profile table.
Create following ACL on HR Profile Table and employment start date field
Here is how you need to configure the script.
Here is the script.
answer=false;
if(gs.getUser().isMemberOf('HR Tier 1')){ //replace HR Tier1 with your group name
answer = true;
}
Here is how the dot walked field look on the HR Case form once the ACL is in place.
Hope this helps.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2023 07:07 AM
@niveditakumari Could you please mention the business requirement here, I am not sure why would you like to put the scheduled start date on the onboarding service, instead you should put this field on the record producer and populate the case variables using it so that later on it can be reused in you script.
If you wish to keep the field for reporting purposes then define a custom field on your sn_hr_le_case table and populate the same at the time of case creation.
Since the HR Service is case agnostic, it should never have a case specific field on it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2023 11:59 AM
Hi @Sandeep Rajput,
I have requirement On HR Service - "Onboarding" - add the HR Profile table field "Scheduled Start Date" and make editable. Dot walk field to Onboarding case. We have 'Scheduled Start Date ' on HR Profile table.
Can you please help me to get it.
Regards,
Nivedita

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2023 08:44 AM
@niveditakumari Here is my solution.
As recommended previously, instead of adding the field to the HR Service form, you should add it on the case form. Following are the steps to add a field from HR Profile to the case form by simply dot walking on the form layout.
1. On the case form, configure the form layout.
2. Find the Subject Person HR Profile field in the available section in the slush bucket. Choose highlighted button to expand the Subject Person HR Profile fields.
From the Subject Person HR Profile fields, choose Employment start date field.
Position this field appropriately on the hr case form.
This is how the fields looks finally on the case form.
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-08-2023 12:44 AM
Hi @Sandeep Rajput,
I tried it but it is not working value is not setting on scheduled start date.
Please help me to get that value.
Regards,
Nivedita