CPIC BY2018 Major IT Business Case Detail Bug Fix 004
The following three categories will pull the latest entry from the Operational Analysis Dynamic List. Please add them to your configuration, but they do not appear not on any tab.
Most Recent OA Record Number
Most Recent OA Date – XML
Most Recent OA Results – XML
New Category: Most Recent OA Record Number
Data type: Both
Value type: Integer
Cell Type Value: Function
Javascript:
var dt = getSubItems("PLAN: Operational Analysis Date");
var dt_max = null;
var dt_row = null;
for (var i = 0 ; i < dt.length ; i++)
{
if (dt[i].SubItemType != getValueList("Dynamic List Types", "Operational Analysis"))
continue;
if ((dt[i].Value != null) && ((dt_max == null) || (dt[i].Value > dt_max)))