Menu Object
 
Syntax
 
Menu.FinTransactionReports [FiscalYear][, DateFrom][, DateTo][, DetailLevel][, AccountFrom][, AccountTo][, JournalCode][, ShowPeriodTotals][, IncludeSubAccounts][, AutoStart]
 
Description
Opens the Transaction Reports (mutation reports) application. Optionally, the reporting period, account range, detail level, and display options can be specified.
 
Parameter
Description
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.
DetailLevel
Optional. Level of transaction detail in the report. Default value tdlFullyDetailed.
Valid values:
tdlFullyCompressed (0) = Fully compressed (totals only),
tdlPartlyCompressed (1) = Partly compressed,
tdlFullyDetailed (2) = Fully detailed (all transactions).
AccountFrom
Optional. First general ledger account number in the account range. Default value 0 (all accounts from the start).
AccountTo
Optional. Last general ledger account number in the account range. Default value 0 (all accounts to the end).
JournalCode
Optional. Code of the journal to filter transactions.
ShowPeriodTotals
Optional. When True, period subtotals are shown in the report. Default value False.
IncludeSubAccounts
Optional. When True, sub-account transactions are included. Default value False.
AutoStart
Optional. When True, the report is generated immediately. Default value False.
See Also
FinMutatieVerslagen (Dutch variant)
Example
 
Sub Main
    Menu.FinTransactionReports FiscalYear:=2025, DetailLevel:=tdlFullyDetailed, AccountFrom:=4000, AccountTo:=4999, AutoStart:=True
End Sub