✏️ Explanatory Question
Answer: To create a cached display method for the PaymentTerm description in the CustGroup table:
display Description pktdisplayPaymTermDescription()
{
return (select firstOnly Description from PaymTerm
where PaymTerm.PaymTermId == this.PaymTermId).Description;
}
init() method of the CustGroup data source with the cacheAddMethod() call to cache the display method.