- 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 06:36 AM
@niveditakumari Is scheduled start date a custom field on the HR Profile or you have simply renamed employment start date?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2023 07:03 AM
Hi @Sandeep Rajput,
My requirement was to make schedule start date field editable only for 'ABC' group.
I know we can make any field editable to any group with ACL but as this is dot walked field which approach should we use to achieve it.
Regards,
Nivedita

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2023 07:47 AM
You can handle this via a client script, in the client script, check if the logged in user is a member of Group ABC it he/she is a member of the group then set the dot walked field to ReadOnly false else ReadOnly true.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2023 12:06 PM
How to get dot walked field value.
Can you please help me with that.
Regards,
Nivedita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2023 12:31 PM
Hi @Sandeep Rajput,
Which approach would be good to achieve it. ACL or Client Script.
I know in ACL we can use gs.getUser().isMemberOf(' ');
to get logged in User and we can return true but schedule start date is dot walked field how we can access this field.
Can you please help me with code for that.
Regards,
Nivedita