I am having trouble in validing a string list using a trigger filter.
I have String list of variable size and should validate them with a group of strings.
Thank you.
Prasad.
I am having trouble in validing a string list using a trigger filter.
I have String list of variable size and should validate them with a group of strings.
Thank you.
Prasad.
What is the structure of the document you are using in your trigger?
If it contains a StringList, which element(s) of the List are you filtering on?
If your document structure is as follows:
MyDoc
→ StringList
→ string
You can reference each element of your stringList in the trigger as follows:
%MyDoc/StringList[0]% L_EQUALS "value" && %MyDoc/StringList[1]% L_EQUALS "value2" etc
Thanks for the Reply.
I am looking at scenario where i get String[0…n]. So its not feasible to expect records in certain place and put validation in this scenario.
Prasad.