- 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-08-2023 01:34 AM
@niveditakumari how are you setting the value on this field? Via script? Could you please paste your script here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-08-2023 02:25 AM
Hi @Sandeep Rajput,
I have added scheduled start date using form layout as you have mentioned.
Can you please tell what should I check for that.
Regards,
Nivedita

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-08-2023 03:00 AM
Came across this knowledge article https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0754233 this is a know issue with dot walked field. If you wish to update the employment start in this case, then instead of having a dot walked field, I recommend having a custom field on the HR Case table and update the value on employment start on HR Profile once the value on custom field on the case form changes. This can be achieved using an onBefore insert/update business rule.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-08-2023 04:01 AM
I have read this article here it has mentioned that when we put any value to dot walkin field then also it doesn't save that value we will get blank field value but I tried this way to my requirement and I'm able to save that value in scheduled start date field.
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-08-2023 04:31 AM
Hi @Sandeep Rajput,
We are having scheduled start date on Subject Person HR Profile table then it should set that value in HR case form also correct?
Shall I create script to get it.
Regards,
Nivedita