dlgEvent_relationName_AfterRunningReport

Function called to perform post operations after the report is run.

Syntax

PUBLIC FUNCTION dlgEvent_relationName_AfterRunningReport(
)

Usage

This function is used to perform post operations after a report is run. In the below example the reportCounter has been added to output the number of printed reports at the end of operations when the report is run.

Example

PRIVATE DEFINE reportCounter INTEGER
...
PUBLIC FUNCTION dlgEvent_Relation1_AfterRunningReport()
    LET reportCounter += 1
    CALL libdbappCore.log(C_LOG_INFO, SFMT("dlgEvent_Relation1_AfterRunningReport (BA Relation scope) is raised - reportCounter = %1", reportCounter))
END FUNCTION