Hi
I need to add the end name to each node ( I think that is what its called) in the XML file.
I was able to do this using XML:TreeBuilder but I found out I can install any Perl Modules on the PC
So not modules. Although I do have XML::Smart XML::Simple all ready on the PC. Dont know if that helps.
Example
Before
<JOB APPLICATION="TEST_00002" APPL_TYPE="OS" >
<RULE_BASED_CALENDARS NAME="*"/>
<QUANTITATIVE NAME="TEST99990" ONFAIL="R" ONOK="R" QUANT="1"/>
<QUANTITATIVE NAME="TEST99991" ONFAIL="R" ONOK="R" QUANT="1"/>
</JOB>
needs to be
<JOB APPLICATION="TEST_00002" APPL_TYPE="OS" >
<RULE_BASED_CALENDARS NAME="*"/></RULE_BASED_CALENDARS>
<QUANTITATIVE NAME="TEST99990" ONFAIL="R" ONOK="R" QUANT="1"/></QUANTITATIVE>
<QUANTITATIVE NAME="TEST99991" ONFAIL="R" ONOK="R" QUANT="1"/></QUANTITATIVE>
</JOB>
Thanks