Problem using predicates in xquery

Hi,
I’m using 4.4.1 patch 6 and I am trying to use the following xpath in a predicate, but it doesn’t seem to be valid, is this possible? Tamino seems to be complaining about the (

(initialData/(enteredBy,contractLead),extendedData/tfxSignatory) = 'rpuddephatt'

Thanks

Ryan

Hi Ryan,

yes an opening bracket as the beginning of a step in XPath is no good in Tamino. If what you are trying is to find those entries for which one of three descendants initialData/enteredBy, initialData/contractLead, and extendedData/tfxSignatory is equal ‘rpuddephatt’, do:

(initialData/enteredBy, initialData/contractLead, extendedData/tfxSignatory) =
‘rpuddephatt’

Regards,
Juliane.