2021.1

Table Of Contents
missing = [];
for (i = 0; i < required.length; i += 1) {
var step = required[i];
if (config[step]) {
if (!matches && step === "jobcreation")
missing.push("contentcreation");
matches += 1;
} else {
if (matches !== 0) missing.push(step);
}
if (matches === selections) break;
}
/* Add the inputs to the Workflow Selections to Create
the All-In-One Configuration */
if (config.datamining) {
getInputValue($datafile, "datamining",
"identifier");
getInputValue($datamapper, "datamining", "config");
outputDesc = "Data Set ID";
}
if (config.contentcreation) {
getInputValue($template, "contentcreation",
"config");
if (!config.datamining) {
getInputValue($datarecords, "contentcreation",
"identifiers", jsonIDListValue);
$datarecords.prop("disabled", false);
} else {
$datarecords.prop("disabled", true);
}
outputDesc = "Content Set ID(s)";
}
if (config.jobcreation) {
getInputValue($jcpreset, "jobcreation", "config");
getTableInputValue($parameters, "jobcreation",
"parameters",
jsonRuntimeParametersValue);
$jcpreset.prop("disabled", false);
outputDesc = "Job Set ID";
} else {
$jcpreset.prop("disabled", true);
}
Page 410