Data extraction
This example shows data extraction for batches (ICLs) that were loaded and reviewed.
This example XML shows you how to configure your extraction profile to extract batches (ICLs) only after they are loaded and reviewed.
<?xml version="1.0" encoding="UTF-8"?>
<extraction>
<parameters>
<parameterSet name="basic example">
<parameter name="processedPath">c:/ITSExtraction/processed</parameter>
<parameter name="errorPath">c:/ITSExtraction/error</parameter>
<parameter name="intermediatePath">c:/ITSExtraction/processing</parameter>
<parameter name="autoNotify">true</parameter>
</parameterSet>
</parameters>
<profile type="CPCS" name="cpcs (loaded and reviewed)"
parameterSet="basic example">
<!-- Only want those batches (ICLs) to be extracted when they -->
<!-- are successfully loaded and reviewed. -->
<conditions>
<column>LOADED</column>
<column>REVIEWED</column>
</conditions>
</profile>
</extraction>