Hi Friends,
I create a display method in SalesTable to display customer name. Here is code:
But, only the first record show the name in grid, if you sort it, it still show in first record but different name. Where did I miss something?
Regards,
River
display CustName custName()
{
CustTable custTable;
;
select Name from custTable where custTable.AccountNum == this.CustAccount;
return custTable.Name;
}
*This post is locked for comments
I have the same question (0)