static void getServerNameForCurrentSession(Args _args)
{
sysClientSessions cliSessions;
sysServerSessions svrSessions;
;
select svrSessions
exists join cliSessions
where cliSessions.SessionId == sessionID()
&& cliSessions.ServerID == svrSessions.ServerId;
info(substr(svrSessions.AOSId, 1, strfind(svrSessions.AOSId, '@', 1, strlen(svrSessions.AOSId))-1));
}
Friday, April 15, 2011
Get AOS server name for current session
The following code obtains the AOS server name for the current session:
Labels:
Dynamics AX 2009,
X++
Subscribe to:
Post Comments (Atom)
Thanks! Worked well.
ReplyDelete