hi,
how can i get the current database name and server name in my c/al code?
br
*This post is locked for comments
hi,
how can i get the current database name and server name in my c/al code?
br
*This post is locked for comments
For Dynamics NAV and Al development you can use the Active Session tabel. See function GetDatabaseIndicatorText in table 79:
ActiveSession.SETRANGE("Server Instance ID",SERVICEINSTANCEID);
ActiveSession.SETRANGE("Session ID",SESSIONID);
ActiveSession.FINDFIRST;
Text := ActiveSession."Database Name" + ' - ' + ActiveSession."Server Computer Name";
hi,
unfortunately does not work for nav 2013.
it's done by the WSH (Windows Scripting Host).
variables:
- "wshNetworkInfo", Type: Automation, Subtype: 'Windows Script Host Object Model'.WshNetwork
- "compName", Type: Text
Code sample:
CREATE(wshNetworkInfo);
compName := wshNetworkInfo.ComputerName;
CLEAR(wshNetworkInfo);
properties of class WshNetwork:
- UserDomain
- UserName
- UserProfile
- ComputerName
- Organization
- Site
for nav 5.0 function ENVIRON('COMPUTERNAME') works fine.
hi mohana,
tables 2000000047 to get server and 2000000048 to get the Database name is the answer. thx.
br
André Arnaud de Cal... 291,391 Super User 2024 Season 2
Martin Dráb 230,445 Most Valuable Professional
nmaenpaa 101,156