Is it possible to update a Sharepoint list without an "ID"?

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. ****

+5
source share
1 answer

It's impossible. First, the file must complete the download, then it will have properties that can be set! (otherwise, properties can be set for non-existent files if the file does not load.)

+3

All Articles