I want to upload a file to Sharepoint, and when I upload only I want to add all the properties of the Downloaded document.
We get the ID field only when the Document is uploaded to Sharepoint. Is there any other way to update the list without going through the identifier field.
Example:
<Batch OnError="Continue" ListVersion="1"
ViewName="270C0508-A54F-4387-8AD0-49686D685EB2">
<Method ID="1" Cmd="Update">
<Field Name="ID">4<Field>
<Field Name="Field_Name">Value</Field>
</Method>
<Method ID="2" Cmd="Update">
<Field Name="ID" >6</Field>
<Field Name="Field_Name">Value</Field>
</Method>
</Batch>
Link Link
**** I am using Sharepoint Web Services.And Uploading a document to pieces. ****
source
share