Prior to upgrade to 5.2, we had a txt report with the following:
RecordID,Invoice #,Date,Account #,Amount,Inc-Tax Amount,Tax Code,Non-GST Amount,GST Amount
<<LIST('MYOBReportZorInvoices','
','MYOBExport','Commas')>>
Where MYOBReportZorInvoices was a query, and MYOBExport is an attribute on the BO that was calculated with data.
After upgrading to 5.2 this report failed to generate any data in the LIST function. When we changed the report and put the full query in the LIST function (as follows below) it started to generate data again correctly.
Are queries no longer supported in the LIST function (or maybe this is a bug)?
RecordID,Invoice #,Date,Account #,Amount,Inc-Tax Amount,Tax Code,Non-GST Amount,GST Amount
<<LIST('FIND ZorInvoices WHERE ZorInvoices.Status=`Final` AND ZorInvoices.InvoiceDate>=LoggedInRegularUser.FeeReportFrom AND ZorInvoices.InvoiceDate<=LoggedInRegularUser.FeeReportTo','
','MYOBExport','Commas')>>