Aras Community
Search
User
Site
Search
User
Forums
Applications
Community
Development
Getting Started
Integrations
Aras Labs
Community Projects
Submit a Community Project
More
Cancel
State
Verified Answer
+1
person also asked this
people also asked this
Replies
8 replies
Subscribers
18 subscribers
Views
17448 views
Users
0 members are here
christopher Gillis
Options
Share
More
Cancel
Related
how do I find identity associated with the user by C# or Javar
Offline
QuietClounds
over 4 years ago
if I know the login in user ID, how do I get his identity?
Thanks
Qiaoyun
Top Replies
AngelaIp
over 4 years ago
+5
I wished Aras would have a standard function for this common task. But they haven´t. You have to do this with AML: // Get user Alias Identity Item alias = inn.newItem("Alias","get"); alias.setProperty…
Offline
skoleva
1 month ago
in reply to
AngelaIp
+3
verified
I know that the question is a little bit old, but in the newer versions you can try this code (for C#) string userIdentityId = CCO.Identity.GetIdentityIdByUserId(inn.getUserID());
AngelaIp
1 month ago
in reply to
skoleva
+2
That´s an excellent one - thank you!!! Seems to be a very uncommon function, I just found one reference in Innovator at all. But it´s so obviously useful! Finally somebody found the solution to a 5 year…