Previous Topic: Repeating Group Property HandlingNext Topic: Example 2


Example 1

Repeating import group of group view name LIST for procedure step EMPLOYEE_ADD containing attributes ID and NAME of entity view name IMPORT and entity EMPLOYEE:

int i; 
for (i = 0; i < oper.ListMax; i++) 
{
  oper.setImportEmployeeId(i, i);
  oper.setImportEmployeeName(i, "Name" + i);
}
oper.setListCount((short) i);