Hi, I'm using DC and I implemented more fields to the User, one of them is "DecisionMaker". I need the action "MyAction" is enabled only if the current user is a "DeciosionMaker." I tried the following criteria and did not work:
C#[Action(PredefinedCategory.View, Caption = "MyAction", SelectionDependencyType = MethodActionSelectionDependencyType.RequireSingleObject,
TargetObjectsCriteria = "CurrentUserId().DecisionMaker = true'")]
void MyAction();
can you help me?