Menu Object
 
Syntax
 
Menu.FinProjectOverview [ReportType][, FiscalYear][, DateFrom][, DateTo][, StatusCode][, ShowAddresses][, ShowCalculations][, GroupByBuildID][, RegenerateStats][, AutoStart]
 
Description
Opens the financial Project Overview reporting application. Optionally, the report type, period, status filter, and display options can be specified.
 
Parameter
Description
ReportType
Optional. Type of project overview report. Default value prtActiveProjects.
Valid values:
prtActiveProjects (0) = Active projects,
prtOpenInstalments (1) = Projects with open instalments,
prtUnbilledWork (2) = Projects with unbilled work,
prtByStatus (3) = Projects grouped by status.
FiscalYear
Optional. Fiscal year to report on. Default value 0 (current year).
DateFrom
Optional. Start date of the reporting period.
DateTo
Optional. End date of the reporting period.
StatusCode
Optional. Project status code to filter on.
ShowAddresses
Optional. When True, project addresses are included in the report. Default value False.
ShowCalculations
Optional. When True, project cost calculations are included. Default value False.
GroupByBuildID
Optional. When True, projects are grouped by their build identifier. Default value False.
RegenerateStats
Optional. When True, project statistics are recalculated before generating the report. Default value False.
AutoStart
Optional. When True, the report is generated immediately. Default value False.
See Also
FinProjecten (Dutch variant)
Example
 
Sub Main
    Menu.FinProjectOverview ReportType:=prtActiveProjects, FiscalYear:=2025, AutoStart:=True
End Sub