Setting the Number of Rows in BOM Reports
Copy
By default, the BOM Reports are limited to 1000000 rows. Opening a larger BOM structure causes an error.
If your company manages smaller BOM structures, you can limit BOM Reports to a specific number of rows using the following procedure:
- Search for the PE_ExecuteQdReportMethod Method and open its item view for editing.
- Go to the PE_ExecuteQdReportMethod Method editor.
Change 1000000 to the specific number at all occurrences of the following if statement:
if (_partsTree.Count >= 1000000) { throw new Aras.Server.Core.InnovatorServerException(errorLookup.Lookup(“PE_ReportIsVeryLarge”)); }
- Click Done on the PE_ExecuteQdReportMethod Method toolbar and close its item view.