Wednesday, February 12, 2020

Display method : ProdTable : get user user name based on UserId

public Display TDC_CreatedBy getUserName()
{
    TDC_CreatedBy        nameLoc;
    UserInfo             userInfoLoc;

    select Name from userInfoLoc
                    where userInfoLoc.Id == this.createdBy;

    nameLoc     =      userInfoLoc.name;
    return nameLoc;
}

No comments:

Post a Comment