Skip to main content

Flow LogonUser Detailed Information

%SystemPath%\Common\eBALibrary.dll


using eBALibrary;
public void FlowGroup1_OnAfterEvent(object sender,OnAfterEventArguments args)

{

User user =Organization.GetUser(args. UserId);// create a structure according to the userid of the person who pressed the butoan at that moment.

Position userPos =Organization.GetPosition(args. PositionId); It creates a structure according to the position information of the person who presses the button at that moment

string nameLastName = user. FirstName + " " + user. LastName returns the last name based on //userid

string positionTask = userPos.Description; Gives an explanation according to the position id

}