OnAfterAfterGetRecord (Report Extension Data Set Modify) trigger
Version: Available or changed with runtime version 7.1.
Runs after the OnAfterGetRecord trigger of the base data item.
Syntax
trigger OnAfterAfterGetRecord()
begin
...
end;
Remarks
This trigger can be called inside a modify
section, as shown in this pseudo-code:
reportextension 50111 MyExtension extends "Customer - List"
{
dataset
{
modify(Customer)
{
trigger OnAfterAfterGetRecord()
begin
// Do some changes here
end;
}
}
...
Use this trigger to perform any processing that is needed, based on the values in the fields of the individual records of a data item. The base object trigger is run before this trigger. For more information, see OnAfterGetRecord (Report Data Item) Trigger.