
Hi All,
How to check if an User logged in is an Administrator ?. Based on that I want to perform certain action.
I mean Only if the user has the admin role then will be allowed to perform certain activity else will not be allowed .
Regards,
Mania.
*This post is locked for comments
I have the same question (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()));
}
}