userInfo

Type: String

The userInfo property of the Process class contains any additional information that the user needs to store for a process. For example, you can display user data in the JADE Monitor Users window, if required, by executing the following code.

beginTransaction;
    process.userInfo := "specify-the-user-supplied-text-here";
commitTransaction;

The following examples show the use of the userInfo property.

startSvrApp4() updating;
vars
    timestamp : TimeStamp;
begin
    beginTransaction;
    process.userInfo := app.name & ' ' & method.name;
    commitTransaction;
    beginTimer(30000, Timer_OneShot, Start_Exe);
end;

beginTransaction;
    process.userInfo := 'Sort started at ' & ts.String;
commitTransaction;