Hi All,
Is is possible to pass a table records as FormDataSource in Args Class inspite of calling it from a Job/Class?
Because i want to loop through the multiple records in the destination class like this.
formDataSource = _args.record().dataSource();
for (common = formDataSource.getFirst(true) ? formDataSource.getFirst(true) : _args.record();
common;
common = formDataSource.getNext())
{
packedRecords += [common];
}