Hi,
in my project I'm tring to filter an asset custom field with another asset custom field but I receive "no options" as result.
My new custom field retrieve datas from Azienda asset (company) and I have a custom field called Destinatario (employee) with code customfield_10103 and retrieve datas from Contatti asset.
My AQL query is:
object having inboundReferences(objectType = "Contatti" and Descrizione = ${customfield_10103.Descrizione})
I don't understand my error, please can you help me?
Giuseppe.
Hi
If I understand you correctly, the user will first select "Contact" and depending on the contact select Company in another field?
In that case you should be able to use the AQL
object having inboundReferences(Key in (${customfield_10103.id})
(Seems like you should be able to set Company automatically in a post function instead as I guess the Contact is only connected to on company)
The only parameter you can have in a placeholder for a field is ${customfield_xxxx.id} or ${customfield_xxxx.label} - see table a bit down on documention page https://confluence.atlassian.com/servicemanagementserver/advanced-placeholders-1044784599.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.