Hello,
I am using XML updater to update geodatabase metadata and it works well with single tag value.
However when there are multiple tags it updates all of them with the same value.
XML path in XMLUpdater: dataIdInfo/tpCat/TopicCatCd – before the change
<tpCat>
<TopicCatCd value="007"></TopicCatCd>
</tpCat>
<tpCat>
<TopicCatCd value="018"></TopicCatCd>
</tpCat>
XML path in XMLUpdater: dataIdInfo/tpCat/TopicCatCd, change value: 44 – after the change
<tpCat>
<TopicCatCd value="44"></TopicCatCd>
</tpCat>
<tpCat>
<TopicCatCd value="44"></TopicCatCd>
</tpCat>
Expected results after the change
<tpCat>
<TopicCatCd value="44"></TopicCatCd>
</tpCat>
<tpCat>
<TopicCatCd value="018"></TopicCatCd>
</tpCat>
Any help much appreciated.
Many thanks
Magda