Is there a way in a BPM to tell if the user client is a MES station vs a full smart client, etc? I know I can get the user’s computer name but client type would be better for how I need to restrict users on this request I’m working on.
callContextClient.ClientType
Enumerations I am aware of are
- Default
- Mes
- Handheld
if(callContextClient.ClientType == “Mes”)
{
//do something
}
Scott
1 Like
Thanks @litzer67, turns out in our case we really wanted to allow “WinClient” but block all else. Now to get the users to test this to ensure it’s working as they -redesigned- request the way they want it too.