KVSMEDInfoRequestCheckLib#
Events#
OnBeforeCheckOpenScheduleLines(Record KVSMEDDeliveryScheduleLine, Boolean, Boolean) :#
Summary: This event is triggered before checking open schedule lines.
[IntegrationEvent(false, false)]
local procedure OnBeforeCheckOpenScheduleLines(var KVSMEDDeliveryScheduleLine: Record "KVSMEDDeliveryScheduleLine"; var Result: Boolean; var isHandled: Boolean):
[EventSubscriber(ObjectType::Codeunit, Codeunit::"KVSMEDInfoRequestCheckLib", 'OnBeforeCheckOpenScheduleLines', '', false, false)]
local procedure DoSomethingOnBeforeCheckOpenScheduleLines(var KVSMEDDeliveryScheduleLine: Record "KVSMEDDeliveryScheduleLine"; var Result: Boolean; var isHandled: Boolean)
begin
end;
Parameters:
KVSMEDDeliveryScheduleLine
: Record of delivery schedule lines to be checkedResult
: Boolean indicating the result of the checkisHandled
: Boolean indicating if the event has been handled
OnBeforeExitIfRelatedProcessInfoStillBlocking(Record KVSMEDProcessInformation, Record KVSMEDProcessInformation, Boolean, Boolean) :#
Summary: This event is triggered before exiting if related process information is still blocking.
[IntegrationEvent(false, false)]
local procedure OnBeforeExitIfRelatedProcessInfoStillBlocking(BillingBlockingKVSMEDProcessInformation: Record "KVSMEDProcessInformation"; DeliveryBlockingKVSMEDProcessInformation: Record "KVSMEDProcessInformation"; var Result: Boolean; var isHandled: Boolean):
[EventSubscriber(ObjectType::Codeunit, Codeunit::"KVSMEDInfoRequestCheckLib", 'OnBeforeExitIfRelatedProcessInfoStillBlocking', '', false, false)]
local procedure DoSomethingOnBeforeExitIfRelatedProcessInfoStillBlocking(BillingBlockingKVSMEDProcessInformation: Record "KVSMEDProcessInformation"; DeliveryBlockingKVSMEDProcessInformation: Record "KVSMEDProcessInformation"; var Result: Boolean; var isHandled: Boolean)
begin
end;
Parameters:
BillingBlockingKVSMEDProcessInformation
: Record of process information for billing blockingDeliveryBlockingKVSMEDProcessInformation
: Record of process information for delivery blockingResult
: Boolean indicating the result of the checkisHandled
: Boolean indicating if the event has been handled