Skip to content

KVSPSA Event Subscriber#

Events#

KVSPSAOnAfterTransferValuesToJobJnlLine(Record Job Journal Line, Record Service Line) :#

Summary: Integration event raised after transferring values from a service line to a job journal line. This event allows subscribers to perform additional custom value transfers or modifications to the job journal line after the standard transfer process is completed.

[IntegrationEvent(false, false)]
local procedure KVSPSAOnAfterTransferValuesToJobJnlLine(var JobJournalLine: Record "Job Journal Line"; ServiceLine: Record "Service Line"): 
[EventSubscriber(ObjectType::Codeunit, Codeunit::"KVSPSA Event Subscriber", 'KVSPSAOnAfterTransferValuesToJobJnlLine', '', false, false)]
local procedure DoSomethingKVSPSAOnAfterTransferValuesToJobJnlLine(var JobJournalLine: Record "Job Journal Line"; ServiceLine: Record "Service Line")
begin
end;

Parameters:

  • JobJournalLine: The job journal line that received the transferred values and can be further modified by subscribers.
  • ServiceLine: The source service line containing the values that were transferred to the job journal line.