bcquality/microsoft/knowledge/events/treat-local-and-internal-events-as-subscriber-contracts.bad.al
Jesper Schulz-Wedde 23af51e02d Add P0 extensibility compatibility knowledge
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>

Copilot-Session: 645349fd-1892-48f3-8a84-db77d6abd1c3
2026-07-14 11:43:55 +02:00

15 lines
527 B
AL

// Demonstration-only AL. Version 1 exposed Score as an Integer named Score.
codeunit 50521 "Customer Scoring Events Bad"
{
procedure ScoreCustomer(CustomerNo: Code[20]; ScoreText: Text)
begin
OnCustomerScored(CustomerNo, ScoreText);
end;
// 'local' limits raising, not subscription. This type/name change breaks
// subscribers compiled against the shipped event.
[IntegrationEvent(false, false)]
local procedure OnCustomerScored(CustomerNo: Code[20]; ScoreText: Text)
begin
end;
}