Agent An agent name or a formula. The formula's format is the Formula language (see the 'Lotus Domino Designer Help' for more information). Multiple formulas can be separated by a new line. Each formula is executed in its own context, so keep the formulas using temporary variables on one line. From the 'Lotus Domino Designer Help': @Functions that affect the user interface do not work in the Evaluate method. These include: @Command, @DbManager, @DbName, @DbTitle, @DDEExecute, @DDEInitiate, @DDEPoke, @DDETerminate, @DialogBox, @PickList, @PostedCommand, @Prompt, and @ViewTitle. To change a field value only use the syntax function @SetField. The syntax 'FIELD xxx :=' is not supported. Examples: temp := Cost1+Cost2; @SetField("TotalCost"; @If(@IsError(temp); 0; temp)) @SetField("CloseOriginal"; "1") |