I have a 3rd party extension installed on Premise. There is a bug in the OnAfterGetRecord trigger of a report. I cannot create a reportextension and use OnAfterAfterGetRecord because the OnAfterGetRecord will also execute. Is there a way to use OnBeforeAfterGetRecord and then set the OnAfterGetRecord to handled=true? I attempted to subscribe to the event, but I either have something wrong with the syntax or it's not possible, Any assistance is appreciated
codeunit 50703 CVCLPLabelSubscriber
{
EventSubscriberInstance = StaticAutomatic;
[EventSubscriber(ObjectType::Report, Report::"IWX Sample LP 5x3 Label", 'OnAfterGetRecord', '', true, true)]
local procedure CVCOnAfterGetRecord()
begin
end;
}