Table of Contents

KVSKBACLLCMBSheet

Events

OnBeforeSetLanguageFormatAddressInCustomer(Record Customer, Boolean) :

Summary: Integration event raised before setting language and address formatting for a customer in the report.

[IntegrationEvent(false, false)]
local procedure OnBeforeSetLanguageFormatAddressInCustomer(Customer: Record "Customer"; var IsHandled: Boolean): 

Parameters:

  • Customer: The customer record used for address and language context.
  • IsHandled: Output parameter indicating if the event was handled by a subscriber.

Remarks: Subscribers can implement custom language selection and address formatting for customer-based report output. Set IsHandled to true to skip the standard formatting logic.

OnBeforeSetLanguageFormatAddressInContact(Record Contact, Boolean) :

Summary: Integration event raised before setting language and address formatting for a contact in the report.

[IntegrationEvent(false, false)]
local procedure OnBeforeSetLanguageFormatAddressInContact(Contact: Record "Contact"; var IsHandled: Boolean): 

Parameters:

  • Contact: The contact record used for address and language context.
  • IsHandled: Output parameter indicating if the event was handled by a subscriber.

Remarks: Subscribers can implement custom language selection and address formatting for contact-based report output. Set IsHandled to true to skip the standard formatting logic.

OnBeforeSetLanguageFormatAddressInVendor(Record Vendor, Boolean) :

Summary: Integration event raised before setting language and address formatting for a vendor in the report.

[IntegrationEvent(false, false)]
local procedure OnBeforeSetLanguageFormatAddressInVendor(Vendor: Record "Vendor"; var IsHandled: Boolean): 

Parameters:

  • Vendor: The vendor record used for address and language context.
  • IsHandled: Output parameter indicating if the event was handled by a subscriber.

Remarks: Subscribers can implement custom language selection and address formatting for vendor-based report output. Set IsHandled to true to skip the standard formatting logic.