
1,067 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
In the workday adaptive tool i have to write export data function:
function exportdata(context){
var reader=context.createTableReader();
vsr row=null;
while((row=reader.readerRow())!=null){
ai.log.logInfo(JSON.stringify(row));
}
}
the above code is the predefined code from workday. my data contains two columns ID and value these two colums i want to export.