if I know the login in user ID, how do I get his identity?
Thanks
Qiaoyun
if I know the login in user ID, how do I get his identity?
Thanks
Qiaoyun
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("source_id",inn.getUserID());
alias.setAttribute("select","related_id");
alias = alias.apply();
string identity = alias.getProperty("related_id");
Thank you so for your reply. I found out that there is a relationship "Alias" connect "User" and "Identity" Will test it.
Best!
Thank you so for your reply. I found out that there is a relationship "Alias" connect "User" and "Identity" Will test it.
Best!
Copyright © 2024 Aras. All rights reserved.