mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 09:26:52 +01:00
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:
parent
9214f73819
commit
23af51e02d
18 changed files with 307 additions and 15 deletions
|
|
@ -0,0 +1,15 @@
|
|||
// 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue