how to get the value from sysid in business rules
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-11-2016 11:55 PM
Hi Team,
how to get the value from sysid in business rules.
Thanks,
Chandra
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-13-2016 04:03 AM
hi Chandra,
if I understand you correctly - you need to get these values on Form (therefore on client side) and to change other field values also on form.
If so - then you need to use onChange client script
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-13-2016 04:42 AM
Hi Chandra,
Assuming that:
Field1 is a reference field to sys_user_group.
ID is the field that shows the source table:
Maybe a before insert BR will help you:
current.u_field1 = current.id.assignment_group;
If you provide a bit more details on what you are trying to do, and when, we can help more.
Harel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-13-2016 09:38 PM
Hi Team,
How can We get the group manager name in BR.Could you please help me on
this.
Thanks,
Chandra
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-14-2016 04:17 AM
Assuming that:
Field1 is a reference field to sys_user_group.
ID is the field that shows the source table:
current.u_field1 = current.id.assignment_group.manager.getDisplayValue();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-10-2021 10:46 PM
Try:
var parentRecord = g_form.getReference('parent').name;
gs.log('Parent value '+parentRecord);
Will give the value of parent name