i have to show who created the Record in a table to show in my report.
Table: VendReceiptsListJour
i tried:
in processreport:
myTmp.CreatedName = this.getName(vendReceiptsListJour.createdBy);
getName Method:
public Name getName(NetworkAlias _alias)
{
UserInfo userInfo;
select * from userInfo where userInfo.networkAlias == _alias;
return UserInfo.name;
}
it didn't work, can you help me, thanks.
*This post is locked for comments
I have the same question (0)