Hello,
we have implemented Custom Condition to validate duplicites of values in Fields in Documents.
We have defined rule in Document Model like this.
{
"type": "Rule",
"id": "rule_7935a",
"name": "FoerderungAlreadyExisting",
"Rule": {
"errorEntityId": "include_99c89_field_69112",
"errorCode": "Error rule_7935a",
"errorCondition": "FieldFilled(XFLB_root/Name) \nAnd CustomCondition FoerderungAlreadyExisting",
"severity": "ERROR",
"errorMessage": [
{
"locale": "de",
"text": "Unter diesem Namen existiert bereits eine Förderung. Bitte anderen Namen wählen."
}
]
}
},
While debugging the Java Code wit Custom Condition is executed and in Browser we see that error is trandferred to the FE.
What is not working is that error is not shown in form at required field.
Do you know, what do we miss?

