D365 Business Central : Getting Extension Version from AL
by
thatnavguy
·
7 December 2019
To get your extension version, we can use NavApp and ModuleInfo.
local procedure GetAppVersion(): Text
var
ModuleInfo: ModuleInfo;
AppVersion: Version;
begin
NavApp.GetCurrentModuleInfo(ModuleInfo);
AppVersion := ModuleInfo.AppVersion();
Exit(Format(AppVersion));
end;
Like this:
Like Loading...
Related Post
Tags: AL / CALDevelopmentTips and Trick
thatnavguy
Experienced NZ-based NAV Developer and Consultant with 15+ years of experience leading multiple IT projects, performing business analyst, developing, implementing, and upgrading Dynamics NAV and Business Central.
Passionate to deliver solution that focuses on user-friendly interface while keeping high standard of compliance with the needs.
You may also like...