mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 17:36:53 +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 * 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>
14 lines
429 B
AL
14 lines
429 B
AL
// Demonstration-only AL. Version 1 used [IntegrationEvent(true, true, false)].
|
|
codeunit 50531 "Shipment Events Bad"
|
|
{
|
|
procedure NotifyShipment(ShipmentNo: Code[20])
|
|
begin
|
|
OnShipmentCreated(ShipmentNo);
|
|
end;
|
|
|
|
// Version 2 mutates all three contract-significant arguments in place.
|
|
[IntegrationEvent(false, false, true)]
|
|
local procedure OnShipmentCreated(ShipmentNo: Code[20])
|
|
begin
|
|
end;
|
|
}
|