Integration (Table-Based Imports)
Task Name | Description | Argument |
---|---|---|
ImportClientList | Imports Client List data from the Import_Meterlist table. Takes foure arguments: the type of record to process, the number of days to keep processed data, whether bad records should be reprocessed, and weather meter groups should automatically be recomputed as the list is processed. | <args> <arg name="recordtype" value="1" type="System.Int32" /> <arg name="daysToKeep" value="1" type="System.Int32" /> <arg name="reprocessBad" value="False" type="System.Boolean" /> <arg name="recomputeMeterGroups" value="False" type="System.Boolean" /> </args> |
ImportMeteredData | Imports metered data from the Import_Reading Table. Can take no arguments or three arguments: the number of days to keep processed data, whether bad records should be reprocessed, and how many intervals should the values be shifted. | <args> <arg name="daysToKeep" value="1" type="System.Int32" /> <arg name="bReprocessBad" value="False" type="System.Boolean" /> <arg name="shiftMPI" value="0" type="System.Int32" /> </args> |
ImportPortfolioData | Imports Portfolio data from the Import_Portfolio table. Can take no arguments or two arguments: the number of days to keep processed data and whether bad records should be reprocessed. | <args> <arg name="daysToKeep" value="1" type="System.Int32" /> <arg name="bReprocessBad" value="False" type="System.Boolean" /> </args> |
ImportPricingData | Imports pricing data from the Import_MeterList_Reading table. Takes one argument, the meter importID of the pricing data to import. | <args> <arg name="importid" value="{ImportID}"/> </args> |
ImportSchedFcstData | Imports Schedule Forecast data from the Import_Schedule_Forecast table. Can take no arguments or three arguments: the number of days to keep processed data, whether bad records should be reprocessed, and how many intervals should the values be shifted. | <args> <arg name="daysToKeep" value="1" type="System.Int32" /> <arg name="bReprocessBad" value="False" type="System.Boolean" /> <arg name="shiftMPI" value="0" type="System.Int32" /> </args> |
ImportXDriverData | Imports X-Driver data from the Import_XDriver Table. Can take no arguments or three arguments: the number of days to keep processed data, whether bad records should be reprocessed, and how many intervals should the values be shifted. | <args> <arg name="daysToKeep" value="1" type="System.Int32" /> <arg name="bReprocessBad" value="False" type="System.Boolean" /> <arg name="shiftMPI" value="0" type="System.Int32" /> </args> |
ImportWeatherData | Imports weather data from the Import_Weather Table. Can take no arguments or three arguments: the number of days to keep processed data, whether bad records should be reprocessed, and how many intervals should the values be shifted. | <args> <arg name="daysToKeep" value="1" type="System.Int32" /> <arg name="bReprocessBad" value="False" type="System.Boolean" /> <arg name="shiftMPI" value="0" type="System.Int32" /> </args> |