Difference between revisions of "DCS Using Script"
Line 38: | Line 38: | ||
The fifth parameter can be set when rebuild DCS | The fifth parameter can be set when rebuild DCS | ||
<source lang="javascript"> | <source lang="javascript"> | ||
− | dcs.Rebuild(true, true, 0, true, | + | dcs.Rebuild(true, true, 0, true, extraParameter); |
</source> | </source> | ||
Revision as of 08:31, 26 October 2018
DCS now can have data without using questionnaire, it's setting by script:
DCS using with script, required a workflow:
- The workflow must return CustomDataCacheSpecificationBuildResult
- The workflow get 5 parameters:
- 1: Any parameter you have specified in the setup
- 2: The DateTime (or Empty) from which to include data in a partial rebuild
- 3: The Entire array of Non Unique Ids from last rebuild (or empty if full rebuild)
- 4: The Entire array of Unique Ids from last rebuild (or empty if full rebuild)
- 5: The extraParameter, can be set when the rebuild is instanciated from cgscript
The first parameter can be set on UI:
Or can be set by cgscript:
Dictionary d1 = {"Key1":99, "Key2": "xxx"};
Dictionary d2 = {"": "yyy"};
DataCacheSpecification dcs = new DataCacheSpecification(dcsRId);
dcs.BuildUsingWorkflowScriptResourceId = workflowRId;
dcs.BuildUsingWorkflowScriptParameter={d1,d2};
dcs.Save();
The fifth parameter can be set when rebuild DCS
dcs.Rebuild(true, true, 0, true, extraParameter);
Example for using script:
A simple DCS with 5 rows and one column "test"; value for each row is a random number
How to do it:
- Create a new DCS:
+ Choose using script
+ Add a custom column
- Create a workflow and insert the workflow in to the DCS
Code on workflow must return CustomDataCacheSpecificationBuildResult, how many rows on DCS belonging the length of res. In this example, res is returned with array 5 items, therefor the DCS have 5 rows
CustomDataCacheSpecificationBuildResult res = new CustomDataCacheSpecificationBuildResult();
res.NonUniqueIds.AddRange({1,2,3,4,5});
res.Ids.AddRange({5,6,7,8,9});
return res;
Let continue with another example using parameter Add another column "Order" in to the above DCS, value for each row is a text: "Order number 1" to "Order number 5"
Add custom column name "Order", type full column on the DCS:
Because on script of Order custom column, have an undefined variables x, therefore we can not create that Order column on UI, just make by cgscrip:
DataCacheSpecification dcs = new DataCacheSpecification(15640179);
QcsCustomColumn cc = new QcsCustomColumn("Order", "string", true, dcs);
cc.CgScript = "array param = Workflow_getParameters();
Dictionary localCache = param[0];
FullCustomColumnSettings fs = param[1];
array result = {};
number numberRows = fs.UpdatedNumberOfRows;
for(number i = 0; i < numberRows; i++) {
result.Add(x + convertToString(i+1));
}
return result;";
cc.Save();
dcs.Save();
In workflow, add 1 more line:
res.AddVariableForFullCustomColumns("x", "Order number ");
After rebuild the DCS, "x" will be replace by "Order number "
Let add one more column order same with the column Order above, name "Order1"
But this time row value will be gotten from parameter
Also need use cgscript to create full custom column "Order1"
On workflow need adding code for get parameter
array param = Workflow_getParameters();// array param with 5 items
array a = param[0];// array a with 1 item type dictionary
Dictionary d = a[0];
string value = d["key"];
and alse need add one line for setting value
res.AddVariableForFullCustomColumns("y", value );
After rebuilding DCS, value for row will be replace "y" by value "Order number " which was wet from DCS parameter
DCS can also get value while buiding DCS, by using the fifth parameter
Let make an example, add another column name "Date" to the DCS, value for each row is current dateTime when build DCS
First, add a full custom column
On workflow add a line to the fifth parameter
array extraParameter = param[4];
and also add a line for set the parameter
res.AddVariableForFullCustomColumns("z", extraParameter );
Values will be set when rebuild DCS by dcs.Rebuild
DataCacheSpecification dcs = new DataCacheSpecification(DCSRid);
array extraParameter = getCurrentDateTime();
dcs.Rebuild(true, true, 0, true, extraParameter);
DCS will look like below after rebuiding: