Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
I am trying t execute the following xquery in Tamino. Tamino throws an access failure exception. Is this query correct? When I replace “77003-6611-1-en-pub” with a number say 6, no exceptions are thrown. But naturally, I do not get the data I want.I have a document with docname “77003-6611-1-en-pub”."declare namespace tf = “http://namespaces.softwareag.com/tamino/TaminoFunction”for $q in input()/htmlwhere tf:getDocname($q) = “77003-6611-1-en-pub”return $qIs this a valid query?
Hi,the query needs to be:declare namespace tf = “http://namespaces.softwareag.com/tamino/TaminoFunction”for $q in input()/htmlwhere tf:getDocname(root($q)) = “77003-6611-1-en-pub”return $qhope this helps.Stuart Fyffe-CollinsSoftware AG (UK) Ltd.