Hi Everyone,
Send help.
So basically, I want to show the 10% & 15% in the customer form when the Name is selected from the first field. Here is the sample Asset that holds the 10% and 15%.
Here is the form I'm working on and the current set.
I want to know the filter issue scope (AQL) that will target only the 10%&15% when the new installment amount has been selected.
Let me know if this is possible in JSM Cloud or not.
Thank you.
I believe you can do it using Assets custom fields with AQL in the Filter issue scope. You can dynamically filter the second field (10% & 15%) based on the first field’s selection.
Try this:
objectType = "Percentage"
object HAVING inboundReferences(objectType = "Installment" AND objectId IN (${customfield_XXXXX${0}}))
Replace customfield_XXXXX with the ID of Field 1.
objectType = "Percentage" AND Name IN (${customfield_XXXXX.label${0}})
Links:
Let me know if it worked!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.