The CreatePanelData process populates a panel in a database chart with data from a source usage.
This process can be run multiple times in a batch file when importing data from different usages. A rule file can apply filtering rules to control what data is imported.
Input
HPD URI containing a usage ID
Output
HPD URI containing a chart identified by its Chart Version ID, Project ID, and Panel Number.
Syntax
carisbatch --run CreatePanelData [options] <input> <output>
Options
Long | Short | Description | Can Repeat | Notes |
|---|---|---|---|---|
--rule-file | -U | Path and name of the rule file that controls what data is imported. | FALSE | Optional |
Examples
Example | ||
Objective | Add data to panel 1 in the database chart identified as Chart Version ID 4. A rule file applies filtering rules during data import. | |
Description | Command Line Syntax | |
The source usage is identified by Usage ID 1 | hpd://username:password@OracleDB/db?UsageId=1 | |
The output chart is identified by the Chart Version ID as chart 4 and the panel is identified as panel 1. | hpd://username:password@OracleDB/db?ChartVersionId=4;ProjectId=1;PanelNumber=1 | |
The | C:\AllRuleFiles\MyRuleFile.crfx | |
Command Line | carisbatch --run CreatePanelData --rule-file "C:\AllRuleFiles\MyRuleFile.crfx" hpd://username:password@OracleDB/db?UsageId=1 hpd://username:password@OracleDB/db?ChartVersionId=4;ProjectId=1;PanelNumber=1 | |