assign from a function in a RUL
So this works
<assign property="RuleActionUserData" value=""A01""></assign>
This doesn't complile
SomePackage.SomeClass extends EnsRules and the method is a classmethod and final
Comments
The rule parser/compiler doesn't handle calls to methods/classmethods unless they extend Ens.Rule.FunctionSet, and it doesn't recognize the ##class() keyword. If your class does extend Ens.Rule.FunctionSet, you should be able to use just the Methodname as shown below:
<assign property="PropertyName" value="SomeMethod(args)" />
I'm 100% sure I tried that and it didn't work, but it does now, must have been late in the day :-) Thankyou