Quantcast
Channel: Microsoft Dynamics AX Forum - Recent Threads
Viewing all articles
Browse latest Browse all 175888

RE: How to check if an User logged in is an Administrator via x++ ?

$
0
0

Hi ,

If you want to do this using X++ try below code to find Security roles for current user

static void Job206(Args _args)

{

   SecurityRole        role;

    SecurityUserRole    userRole;

    UserInfo            userInfo;

    ;

   while select  role

   exists join userRole

   where role.RecId     == userRole.SecurityRole

         && userRole.User == curUserId()

   {

   info(strFmt("%1  -  %2", role.Name,curUserId()));

   }

}


Viewing all articles
Browse latest Browse all 175888

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>