Hello I have this problem:
I m trying to use this simple script
String a = cfValues['custom_field']
String b = cfValues['custom_field']
a.length() == b.length()
but the problem is that cf values in string b give me an error becuse in our instance we created 2 custom fields with the same name so I received this error:
"Could not look up the type for this custom field, so this code can't be type-checked. Possibly the field doesn't exist, or multiple exist for this name"
I know that a work around could be change the name of the custom field but this is not possible for other reason.
SO I would like to know if someone can give me a solution where in string b I can indicate just one (the right) of two custom fields that we have in our instance.
I already tried using the id in this format "customfield_10902" or "10902" but didn't works
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.