Getting Assignment group name in business rule
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2023 02:22 AM
Hi All ,
I need to get Assignment group display name in business rule so that i can pass it thru API to Azure Devops .
I have tried with below code
I am getting undefined error
Please let me know how to get assignment group name given in Assignment group field
Thanks in Advance ,
Prashanth

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2023 02:28 AM
You can simply use:
current.getDisplayValue('assignment_group');
Aman Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2023 02:38 AM
@Prashanth Ranga - getDisplayBox() works at client side only, you can use:
current.assignment_group.getDisplayValue();
If my answer has helped with your question, please mark it as correct and helpful
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2023 03:04 AM
Hi @Prashanth Ranga,
Try this updated scripts -
var assignment_Group = current.getDisplayValue('assignment_group');
r.setStringParameterNoEscape('Assignment Group', assignment_Group);
Thanks,
Sagar Pagar