catalog manger "search and replace " using xml script
SRI487Feb 19 2013 — edited Feb 19 2013Hi ,
we have renamed 6 rpd columns names in rpd & alias is not removed yet .In catalog manager i can search and replace using string .But it takes lot time as they are stored in different reports , which are existing . I am trying to use xml script for replacing them.I got sample script from help file for single column . can anyone help for doing that for multiple strings.I will provide with my inputs .
my inputs:
<?xml version="1.0" encoding="utf-8"?>
<actions>
<action command="textReplace" oldValue="column 1 " newValue="column one" ignoreCase="true"/>
<action command="textReplace" oldValue="column 2" newValue="column two" ignoreCase="true"/>
<action command="textReplace" oldValue="column 3" newValue="column three" ignoreCase="true"/>
</actions>
please correct me .