RE: Need to do Blank Shipment date on sales Order.
hello
subscribe to this event:
OnInitRecordOnBeforeAssignmentShipmentDate(Rec, IsHandled);
like this:
[EventSubscriber(ObjectType::Table, 36, 'OnInitRecordOnBeforeAssignShipmentDate', '', false, false)]
local procedure MyProcedure(var SalesHeader: Record "Sales Header";var IsHandled: Boolean)
begin
IsHandled:=true;
end;
check my answer if it was helpful, thanks
DAniele