<%args>
$CustomFields
$Named => []
</%args>
<%init>
return if RT->Config->Get('ShowAllCustomFieldsOnMandatoryUpdate');
return unless @$Named;

$CustomFields->Limit( FIELD => 'Name', VALUE => $_, SUBCLAUSE => 'names', ENTRYAGGREGRATOR => 'OR', CASESENSITIVE => 1 )
    for @$Named;
</%init>
