- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2024 09:25 PM - edited 01-02-2024 10:04 PM
We have account and service fields on the case form and In account we have custom field called Service list field with some values and we are looking for the way to show services on the case form based on the account.u_services.
Please let us know how to achieve this??
Thanks,
Learner
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2024 09:54 PM
Hi @Learner10
As per my understing I believe you need to update the reference qualifier for the 'Service Offering' field on Case table like below:
javascript:'sys_idIN'+current.account.u_service_offerings.toString();
Thanks
Anil Lande

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2024 09:39 PM
Hi,
What do you mean by show values on the case form?
Where exactly you want to show offerings?
Thanks
Anil Lande

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2024 09:54 PM
Hi @Learner10
As per my understing I believe you need to update the reference qualifier for the 'Service Offering' field on Case table like below:
javascript:'sys_idIN'+current.account.u_service_offerings.toString();
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2024 10:10 PM
Hi @Learner10
The Service Offering [service_offering] field is a task-based field and associate to the Service [business_service] field.
You should also take into account the out-of-the-box condition, as Service Offering is a child of Business Service.
javascript:'parent='+current.business_service;
So you can define a Dictionary Override for the Customer Case [sn_customerservice_case] table to override the OOTB one.
Sample.
javascript:'parent=' + current.business_service + '^sys_idIN' + current.account.u_service_offering;
Cheers,
Tai Vu