Hello @nto, Hello Walter,
here is an update query that I cooked up from both of your postings:
declare namespace tf = "http://namespaces.softwareag.com/tamino/TaminoFunction"
update
for $i in input()/d/*/text()
where $i ne "hello"
do replace $i with tf:createTextNode("newvalue")</pre><BR>I used a document which looked like this before the update:<BR><pre class="ip-ubbcode-code-pre"> <d>
<a>ckdjfk</a>
<b>hello</b>
<c>bye</c>
</d></pre><BR>After the update it was:<BR><pre class="ip-ubbcode-code-pre"> <d>
<a>newvalue</a>
<b>hello</b>
<c>newvalue</c>
</d>
Greetings,
Trevor.
#webMethods#Tamino#API-Management