Dear Forum
I am trying to remove SharePoint list items in one of actions.
It works well when I pass a sharepoint item ID, but I do not have this available in webcon.
I would like to delete an item based on other column that I have. I tried CAML query below, but it does not work. Tried different columns, tried "" and '', tried contains but it does not work.
Any ideas how to do it properly?
<Where>
<Eq>
<FieldRef Name="Project Code"/>
<Value Type="Text">3153</Value>
</Eq>
</Where>
I have a field "Project Code", text type in Webcon, and "Project Code" text type in SharePoint. Filtering using this, does not work.
3153 in above example is a project code that I tried passing manually or through Form field value, no luck. I either get an error or nothing gets deleted