Solved

SVD Selection based on Custom field in Forms

  • 25 July 2023
  • 1 reply
  • 71 views

Badge

can we add a custom field like service department in forms in assystnet and write expression in Service Department while editing the Service, to assign the requests to that specific department which was selected in Form while creating requests

icon

Best answer by DuncanK 1 August 2023, 13:59

View original

1 reply

Userlevel 2
Badge +5

Hi. Task routing can be done based on a number of things, including custom lookups (Single-Select Lookup fields). If you put a custom lookup on your form, you can use the dynamic task expression to route the task based on the client’s selection.

https://wiki.axiossystems.com/assyst11-6Wiki/index.php/Dynamic_Task_Expression

 

An example of this would be:

if($new.W(“SVD”).shortCode=”SD”, “SERVICE-DESK”,$NO_VALUE)

Where “SVD” is the shortcode of the field, and “SERVICE-DESK” is the shortcode of the SVD. The “SD” value here is the shortcode of the lookup value.

 

Once you have your dynamic expression, you can tell the Process Designer to use the value generated for the SVD assignment by adding $DYNAMIC_TASK_VALUE to the SVD expression.

 

Hope this helps.


Duncan

 

 

Reply