flow designer - connect 2 tables
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
Hi,
when a new sc_task created with the assignment group as 'aks' and short description 'abc' creted, the flow designer should trigger. There is a table named sc_req_item were there is a field named termination_username. This field value is required for further checks.
Also, There is another table named alm_hardware, the assigned_to variable is required here for further checks.
Take the termination_username value from the sc_req_item table, give this to assign_to field in the hardware table. If any record exists when we search using the name, add a note in the sc_task, 'thank you'. If there is no record associated with the user, directly close the sc_task. how to implement this? how can we take value from one table and use in another? how many lookups should use and the conditions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
52m ago
Hi @JulietD ,
Try the steps below:
When a new sc_task is created with:
- Assignment Group = 'aks'
- Short Description = 'abc'
Then:
- Trigger a Flow.
- Get termination_username from the related sc_req_item. (dot walk from req item field)
- Search alm_hardware table for records where assigned_to = termination_username. (Use lookup record)
- If a record exists:
- Add a note to the sc_task: "thank you". (update record)
- If no record exists:
- Close the sc_task. (update record)
Mark this as helpful and correct of this helps .
Thanks
