I am pulling data from a XML field in an Oracle database for use in a Crystal Report. Currently, I'm using XMLExists with a parameter which works fine (below). The problem is only one parameter value can be entered for each report. Is there a way to query an XML field with a multiple value parameter?
xmlexists('declare default element namespace "
http://somenamespace.com/common/xsd"; (: :)
/Person[Id={?ID}]' passing xmlfield)
Thanks!