Loading the XML Versioning File
To load the list-based or state-based versioning XML file, enter the following from within a windchill shell:
windchill wt.series.LoadFileBasedSeries <XML_file> -load
where <XML_file> is the absolute file path to the existing XML file.
* 
Only one file can be loaded at a time. Loading a second file overwrites the first file.
Loading the List-based Series File Using LoadFromFile
Perform the following steps to load the list-based series file using LoadFromFile:
1. Create a loader file, for example, FileBasedSeries_Loader.xml with the following content:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE NmLoader SYSTEM "standardX24.dtd">
<NmLoader>
<csvCreateFileBasedBegin handler="wt.series.LoadFileBasedSeries.createFileBasedBegin">
<csvfileName>com/customer/series/FileBasedSeries.xml</csvfileName>
</csvCreateFileBasedBegin>
</NmLoader>
where FileBasedSeries.xml is your XML file for the list-based series.
2. To load the created file using CCD, place the file at the following location:
<customizationRootDirectory>/configurations/loadFiles
For more information on placement of files, see CCD Package Structure.
3. Create the following entry in your custom loadFileSet.xml:
<loadFile filename="customer/series/FileBasedSeries_Loader.xml"/>
4. Reference loadFileSet as a <loadFileSet> tag in your deploy.xml. The following is an example of deploy.xml:
<deploy>
<loadFileSet>custom/loadFileSet.xml</loadFileSet>
</deploy>
5. To propagate the changes, use the ant deploy target. For more information, see Deploy Your Customizations on Your Development Environment.
Was this helpful?