Add P0 extensibility compatibility knowledge

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>

Copilot-Session: 645349fd-1892-48f3-8a84-db77d6abd1c3
This commit is contained in:
Jesper Schulz-Wedde 2026-07-14 11:43:55 +02:00
parent 9214f73819
commit 23af51e02d
18 changed files with 307 additions and 15 deletions

View file

@ -0,0 +1,19 @@
// Demonstration-only AL. Version 2 keeps the shipped local event unchanged.
codeunit 50520 "Customer Scoring Events"
{
procedure ScoreCustomer(CustomerNo: Code[20]; Score: Integer; Reason: Text)
begin
OnCustomerScored(CustomerNo, Score);
OnCustomerScoredV2(CustomerNo, Score, Reason);
end;
[IntegrationEvent(false, false)]
local procedure OnCustomerScored(CustomerNo: Code[20]; Score: Integer)
begin
end;
[IntegrationEvent(false, false)]
local procedure OnCustomerScoredV2(CustomerNo: Code[20]; Score: Integer; Reason: Text)
begin
end;
}