Hi,
I'm new to progress and need some help please. Policies is a variable which holds contract numbers. This variable is initialized with a list of contract numbers and gets incremented in the loop. It works fine when there are 10 contracts, but when i have 50000, it gives me an error. Is there another way i can do this?
The list of contract numbers are normally in an excel file. Is there a way to get the data directly from the file???
REPEAT:
FOR EACH contract_role NO-LOCK WHERE contract_number = Policies[c]
/* process*/
IF c > 9 THEN
LEAVE.
c = c + 1.
I'm new to progress and need some help please. Policies is a variable which holds contract numbers. This variable is initialized with a list of contract numbers and gets incremented in the loop. It works fine when there are 10 contracts, but when i have 50000, it gives me an error. Is there another way i can do this?
The list of contract numbers are normally in an excel file. Is there a way to get the data directly from the file???
REPEAT:
FOR EACH contract_role NO-LOCK WHERE contract_number = Policies[c]
/* process*/
IF c > 9 THEN
LEAVE.
c = c + 1.