Hi...I am using Progress 9.1e..
We have got a table where 2 rows have exactly same First name and Last Name values. What I am trying to achieve is trying to ignore rows in my program from this table which has duplicate values such as this. I am new to Progress and don't know what the equivalent syntax is in Progress for getting the distinct value, or skipping the duplicate values of a table.
in my program i have got the following query syntax:
so what can be done to skip the 2 rows which has the exact first name and family name values. any help would be much appreciated. thanks.
sayed
We have got a table where 2 rows have exactly same First name and Last Name values. What I am trying to achieve is trying to ignore rows in my program from this table which has duplicate values such as this. I am new to Progress and don't know what the equivalent syntax is in Progress for getting the distinct value, or skipping the duplicate values of a table.
in my program i have got the following query syntax:
Code:
for each sy-contact fields(sya-first-name sya-family-name sya-signatory)
where sya-internal
and sya-type = 'company'
no-lock:
if (sya-signatory = 'n/a') or (sya-signatory = '') then next.
sayed