@Alexandra_Dia are you experiencing this with the latest Universal UI?
- If you’re on the latest version, could you raise a ticket in TCP and include the Default logic as well as a Har file?
- If you’re not on the latest version, could you first install it and test again?
Hello @Arie V, we just tested it on the latest Universal UI and it’s partially working: the error message doesn’t appear anymore, but field is not cleared correctly.

Here is our default logic:
IF @entity_id = @parent_entity_id
BEGIN
SELECT @msg_parameter = CONCAT (
'Entity '
,@entity_name
,'not allowed.'
);
SELECT @msg_parameter = CONCAT (
'<message>'
,@msg_parameter
,'</message>'
);
SET @entity_id = NULL;
EXEC tsf_send_message 'entity_validation'
,@msg_parameter
,0;
END
Thank you!
Hi @Alexandra_Dia,
Please file a ticket with a reproduction for the remaining behavior if you haven’t done so already. Thank you!