I am having trouble here and am getting quite confused
I have this
int otherId = 100;
UserInfo InitiatingUser = UserController.GetUserById(base.PortalId, base.UserId);
UserInfo TargetUser = UserController.GetUserById(base.PortalId, otherId);
InitiatingUser gets populated but TargetUser remains null and I don't understand why. If I were to put 100 in place of 'otherId' then TargetUser get populated.
Thanks for the help