- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2024 05:28 AM
Hi All,
I have a custom table with two fields :::
backend names as - service_offering and assignment_group
I have a requirement where on populating the SO, only those assignment groups should show up ( when I click the lookup icon ) which has a specific group_type.
I have tried writing a Advance Qualifier on Dictionary Override of 'Assignment Group' table but somehow it is not working.
Can someone help ?
Regards,
Saurabh
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2024 05:35 AM
@chatsaurav19 I spotted two issues in your code.
1. update your method to accept an argument
getOfferingAssignmentGroup: function(idOffering)
2. Comment the following line in your code.
//var idOffering = this.getParameter(‘offering_id’);
Replace the last line with following.
return 'sys_idIN'+JSON.stringify(arr);
Please don't forget to mark the response helpful and accepted solution if it manages to address your issue.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2024 05:35 AM
@chatsaurav19 I spotted two issues in your code.
1. update your method to accept an argument
getOfferingAssignmentGroup: function(idOffering)
2. Comment the following line in your code.
//var idOffering = this.getParameter(‘offering_id’);
Replace the last line with following.
return 'sys_idIN'+JSON.stringify(arr);
Please don't forget to mark the response helpful and accepted solution if it manages to address your issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2024 06:18 AM
Hi @Sandeep ,
I tried but this time when I click on the lookup icon it is giving me empty results from groups table
Regards,
Saurabh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2024 12:13 AM
Just a small twist and it worked. Marked as yellow tag