Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
Hello,
I am currently creating a javascript trigger for Integrity 11.2. I am trying to link a document into a relationship field using the command "setRelationshipFieldValue". To test, I've been using the following code
" var a1 =[];
a1[0] = 50807;
delta.setRelationshipFieldValue("Related Validation Request Document",a1[0]);
"
When I run this, I get the error "cant find method". What am I doing wrong/What can I do to fix this issue.
Thanks.
Solved! Go to Solution.
I think the issue is that you are giving a single integer value, and the method is expecting an array of integers.
setRelationshipFieldValue (java.lang.String fieldName, int[] value)
Set a relationship field to an array of integers.
Does it work if you use:
delta.setRelationshipFieldValue("Related Validation Request Document",a1);
When I use that method, I receive another error prompt saying that the argument types are ambiguous.
This is exactly what I was looking for. I got it working based on this article. Thank you.