Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

update attributes with other existing attributes

avatar
New Member

my xml configuration file is as below.

<configuration verbose="false" debugMode="false"> 
	<dataFlows> 
		<dataFlow> 
			<properties> 
				<dept>salary</dept>
				<version>1.0</version>
			</properties> 
			<to>
				<path>d_${dept}/${version}/csv</path> 
			</to> 
		</dataFlow> 
	</dataFlows> 
</configuration>

from LookupAttributes (with XMLFileLookupService), I am able to extract attributes like dept, version and path like below.

dept: salary

version: 1.0

path: d_${dept}/${version}/csv

I have tried to use updateAttribute and create new attribute called

to-path: ${path}

but to-path is also giving value as d_${dept}/${version}/csv

Can anyone help me to get to-path as d_salary/1.0/csv?

1 ACCEPTED SOLUTION

avatar
1 REPLY 1

avatar