Prezados, bom dia. Tenho uma tabela pai e filho que será preenchida automaticamente em um evento do fluxo.
Testei a seguinte rotina:
for (var i = 0; i < dataset.rowsCount; i++){
indice++;
log.info("indice: " + indice);
hAPI.setCardValue("apNivel___" + indice, dataset.getValue(i, "NIVEL"));
hAPI.setCardValue("apMatricula___" + indice, dataset.getValue(i, "MATRICULA"));
hAPI.setCardValue("apNome___" + indice, dataset.getValue(i, "NOME"));
hAPI.setCardValue("apStatus___" + indice, "");
hAPI.setCardValue("apStatusDesc___" + indice, "");
hAPI.setCardValue("apDataHora___" + indice, "");
} // for
mas, não funcionou. Alguém teria uma sugestão?
Log: Não foi encontrado o registro do campo apNivel___4 no documento id 126996 para ser alterado.