I have a filter criteria on the Item Actions. I only want to show the edit button when the records meet a particular criteria. But I see the Edit action for all the records. This is my filter criteria I am using.
<fetch version="1.0" mapping="logical" distinct="true" >
<entity name="edm_travelrequest">
<filter>
<condition attribute="edm_requeststatus" operator="in" value="">
<value>784940001</value>
<value>784940005</value>
</condition>
</filter>
</entity>
</fetch>