KVSKBACreateSetupData#
Procedures#
SetHideMessage() :#
Summary: Configures the codeunit to suppress confirmation dialogs and information messages during execution.
procedure SetHideMessage():
Remarks: Useful for automated setup processes where user interaction is not desired.
SetRecreate() :#
Summary: Forces recreation of setup data even if it already exists.
procedure SetRecreate():
Remarks: When set, existing setup data will be deleted before creating new entries.
SalesQuoteStatuses() :#
procedure SalesQuoteStatuses():
Events#
OnAfterInitReportSelection() :#
Summary: Integration event triggered after initializing report selections.
[IntegrationEvent(false, false)]
local procedure OnAfterInitReportSelection():
[EventSubscriber(ObjectType::Codeunit, Codeunit::"KVSKBACreateSetupData", 'OnAfterInitReportSelection', '', false, false)]
local procedure DoSomethingOnAfterInitReportSelection()
begin
end;
Remarks: Allows subscribers to add additional report selections or modify existing ones after the standard setup is completed.