Need to set the description on Universal Request

PRAGHATIESH S
Tera Expert

Hi,

I have installed Universal Request plugin and configure it. When I submit new finance case, Universal Request will create as primary ticket and short description, opened by.. everything populated. But description is not populating on the universal request.

 

Can someone help here how to configure the description to auto populate based on finance case submission.

1 REPLY 1

HrishabhKumar
Kilo Sage

hi @PRAGHATIESH S ,

You  can create a logic that set the desired value in the description field of the request before or after submission.

1) Use business rule.

2) Use flow.

 

Using business rule first set the table, and type as before. Then use this logic

(function executeRule(current, previous /*null when async*/) {
    // Set the description field to anything you want.
    current.description = 'this is description';
})(current, previous);

 

Thanks

Hope it helps.

Mark it helpful and accept solution, if it helped you.