- 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-11-2023 12:27 AM
The ACL looks okay to me. What issue you are facing after applying this ACL? Are you checking with the user who is part of this group?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2023 04:03 AM
Hi @Sandeep Rajput,
I have created HR case and that is not assigned to 'Leader Services' group and then also scheduled start date is editable. I want scheduled start date should be editable with Leader services group members.
Regards,
Nivedita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2023 05:26 AM
It is editable for anyone. I want scheduled start date should be editable with Leader Services group members only and for other employee that field should be read only.
Regards,
Nivedita

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2023 11:04 AM
@niveditakumari Can you check if there is any other ACL which is defined on this custom field? As the ACL you created looks good to me. There must be some other write ACL defined on this field which is providing access to other users.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2023 01:18 PM