Only the description on the class-side is cached, the #description
method one the instance-side is called whenever a form, report, query,
... is made.

Lukas

Thanks Lukas. I fixed the problem by changing my code:

quotationsTable := MAReport rows: quotations description: IZQuotation description

to: 

quotationsTable := MAReport rows: quotations description: quotations first description

That is I'm now calling #description from the instance side rather than the class side. Made sense once I'd thought about it

Thanks

Nick