26. März 2025 10:50
pageextension 12345 "XXX-Posted Sales Shpt. Subform" extends "Posted Sales Shpt. Subform"
{
actions
{
addafter(UndoShipment)
{
action("XXX-UndoShipment")
{
ApplicationArea = Basic, Suite;
Caption = 'XXX Undo Shipment', Comment = 'DEU="XXX Warenausgang stornieren"';
trigger OnAction()
begin
UndoShipmentPosting();
end;
}
}
}
local procedure UndoShipmentPosting()
var
SalesShptLine: Record "Sales Shipment Line";
IsHandled: Boolean;
begin
SalesShptLine.Copy(Rec);
CurrPage.SetSelectionFilter(SalesShptLine);
OnBeforeUndoShipmentPosting(SalesShptLine, IsHandled);
if not IsHandled then
CODEUNIT.Run(CODEUNIT::"XXX-Undo Sales Shipment Line", SalesShptLine);
end;
[IntegrationEvent(false, false)]
local procedure OnBeforeUndoShipmentPosting(SalesShipmentLine: Record "Sales Shipment Line"; var IsHandled: Boolean)
begin
end;
}
Failed tasks: The extension 'XXX' failed validation for version 26.0 and country/region DE.
Details: source/SalesShipmentExtension/XXXPostedSalesShptSubform.PageExt.al (41,21) - Error AL0819:
The Page 'Posted Sales Shpt. Subform' already defines an event called 'OnBeforeUndoShipmentPosting'
with the same parameter types in 'Base Application by Microsoft (26.0.30643.31903)'.
pageextension 12345 "XXX-Posted Sales Shpt. Subform" extends "Posted Sales Shpt. Subform"
{
actions
{
addafter(UndoShipment)
{
action("XXX-UndoShipment")
{
ApplicationArea = Basic, Suite;
Caption = 'XXX Undo Shipment', Comment = 'DEU="XXX Warenausgang stornieren"';
trigger OnAction()
begin
UndoShipmentPosting();
end;
}
}
}
local procedure UndoShipmentPosting()
var
SalesShptLine: Record "Sales Shipment Line";
IsHandled: Boolean;
begin
SalesShptLine.Copy(Rec);
CurrPage.SetSelectionFilter(SalesShptLine);
if not IsHandled then
CODEUNIT.Run(CODEUNIT::"XXX-Undo Sales Shipment Line", SalesShptLine);
end;
}
Failed tasks: The extension 'XXX' failed validation for version 26.0 and country/region DE.
Details: source/SalesShipmentExtension/XXXPostedSalesShptSubform.PageExt.al (1,23) - Error AS0018:
Procedure 'OnBeforeUndoShipmentPosting(Record "Sales Shipment Line", var Boolean)' has been removed
in 'PageExtension XXX-Posted Sales Shpt. Subform'. A procedure that belongs to the public API must
not be removed as it will break dependent extensions calling this procedure.
The Page 'Posted Sales Shpt. Subform' already defines an event called 'OnBeforeUndoShipmentPosting'
with the same parameter types in 'Base Application by Microsoft (25.1.25873.27921)'.
This warning will become an error when targeting a runtime with version '15.0' or higher. AL0818
The procedure 'OnBeforeUndoShipmentPosting' in PageExtension 'XXX-Posted Sales Shpt. Subform' must
have at least one of the mandatory affixes 'XXX' to prevent breaking dependent extensions that reference
it in case a procedure with the same signature is introduced by the base object or by another extension.
26. März 2025 17:06
27. März 2025 08:42