Sub EventOnBeforeTransferData(Args: IUiPrxReportCancelEventArgs);
Begin
// set of operators
End Sub EventOnBeforeTransferData;
Args - the parameter, which enables the user to work with event parameters.
The EventOnBeforeTransferData method implements the event that occurs before saving changed values of all data areas of the report to a source.
Sub EventOnBeforeTransferData(Args: IUiPrxReportCancelEventArgs);
Begin
WinApplication.InformationBox("Report data " + Args.Report.MetabaseObject.Id + " are saved to cube");
End Sub EventOnBeforeTransferData;
An information message is displayed when the event occurs.
See also: