lauras
18th February 2009, 19:18
I have a large report I'm trying to create, it has about 1000 variables in it. I'm using multiple 'after.field' layouts to break it up, but still get this error: "Fatal Error: Function 'r.s.after.sort.fld' too large". It isn't referencing a single layout, because the layout number isn't in the message. What is the maximum for a report layout? How can I get past this problem without going to CrystalReports?

_Ralph_
18th February 2009, 20:25
From Infor ERP LN 6.1 Programmers Guide



Known limits
Reports

sorting doubles correct to 6 decimal places
maximum 255 fields on a report (including array elements)

Bic

maximum 255 arguments per function
maximum 32K variables per compilation
maximum BRANCH of 32K (BRANCH refers to the amount of generated code per function, including macros etc.)

lauras
18th February 2009, 20:30
That definitely explains it! thank you