Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
FileList|data deployment
jpm
TODO :deploy all contents of a number of DCRs listed inside a file List to Database
The deploymentConfig.xml is attached.
This config xml is works fine for individual DCR deployment.
But, how can i deploy a file list of all the DCRs of the data type "features(mentioned inside deploymentConfig.xml)" to the DB.
Since I was passing the value of $absolutepath(mentioned inside deploymentConfig.xml) for primary key for individual DCR deployment.
so, is there any way through which i can pass the individual file entry from fileList as value of $absolutepath(mentioned inside deploymentConfig.xml) for primary key or there is some other way around?
Find more posts tagged with
Comments
nakumar
Instead of the following:
[html]
value="$absolutePath"
allows-null="no"/>
[/html]
try the following:
[html]
value="path"
allows-null="no"/>
[/html]
instead of passing $absolutePath, we can get the "path" from filelist.
jpm
Thanks Narendra!