Skip to content

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 checked
  • Result: Boolean indicating the result of the check
  • isHandled: 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 blocking
  • DeliveryBlockingKVSMEDProcessInformation: Record of process information for delivery blocking
  • Result: Boolean indicating the result of the check
  • isHandled: Boolean indicating if the event has been handled