- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2023 02:49 AM
Hi,
I have the record producer 'Create Incident' which create a record in incident table. On the incident table i have the fields assignment group and assigned to. How can I auto populate these fields using the record producer based on caller_id value from the record producer?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2023 06:02 AM
@Alon Grod you can write something like this in Record producer script
Define like this in conditions
In action give group name.
Bharath Chintala
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2023 04:40 AM
@Sai Kumar B Can you please share the code logic inside the record producer?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2023 04:43 AM
@Community Alums
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2023 04:43 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2023 04:50 AM
Hi @Alon Grod ,
Well to understand this requirement , you can learn from this doc : Populate record producer data and redirect users
What i understood is that you want to map Route To variable to Assignment group field on the target table. If yes then there are two options.
Option 1: Make sure your variable name in Record producer is equal to column name of assignment group of the target table.
Or
Option 2: Use the map to a field in the Record producer variable.
For ex: Create a variable on the record producer with the same name as the field in the target record. For example, a variable named caller_id on a Create a New Incident record producer populates the caller_id field on the new incident record.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2023 04:55 AM
@Community Alums I dont have the variables assignment group and assigned to on the record producer, i only have them on the backend. The goal is to populate this two fields automatically based on the caller id after submitting the create incident record producer.