I would like to change every permission of items that are created by specific user.
When making the WF with the query:
<Query>
<Lists>
<List ID="..." />
</Lists>
<ViewFields>
<FieldRef Name="ID" />
</ViewFields>
<Where>
<Eq>
<FieldRef Name="Author" LookupId="TRUE" />
<Value Type="User">USERNAME</Value>
</Eq>
</Where>
</Query>
I get empty string.
What could be the problem?