"";contacts(firstname);" ";contacts(lastname);" ";contacts(title)
|
// note that the company name comes from the relational table
contacts(companyname)
|
//display phone numbers from the multi dimensional field
//A temporary variable is created to store the multiple phone numbers
//by setting the delimiter of the temp variable to ",", values from the
//workphone field is tored as an array into the temp variable
var temp
temp(delim)=","
temp(phones)=contacts(Workphone)
//display the phone numbers
loop pcnt (temp(phones(00)))
temp(phones(pcnt(count)));" "
repeat pcnt 10
|
contacts(faxnumber)
|
"";contacts(emailaddress);""
|