mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-09 02:41:37 +01:00
Add P0 event and interface compatibility knowledge (#98)
* Add P0 extensibility compatibility knowledge Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 645349fd-1892-48f3-8a84-db77d6abd1c3 * Correct event compatibility guidance Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 645349fd-1892-48f3-8a84-db77d6abd1c3 --------- Co-authored-by: Jesper Schulz-Wedde <jesper.schulzwedde@microsoft.com>
This commit is contained in:
parent
078b869e33
commit
363f08f47e
19 changed files with 331 additions and 32 deletions
|
|
@ -0,0 +1,15 @@
|
|||
// Demonstration-only AL. Version 1 exposed var Score as an Integer.
|
||||
codeunit 50521 "Customer Scoring Events Bad"
|
||||
{
|
||||
procedure ScoreCustomer(CustomerNo: Code[20]; ScoreText: Text)
|
||||
begin
|
||||
OnCustomerScored(CustomerNo, ScoreText);
|
||||
end;
|
||||
|
||||
// 'local' limits raising, not subscription. Renaming Score to ScoreText,
|
||||
// changing its type, and removing var all break existing subscribers.
|
||||
[IntegrationEvent(false, false)]
|
||||
local procedure OnCustomerScored(CustomerNo: Code[20]; ScoreText: Text)
|
||||
begin
|
||||
end;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue