Hi, I am trying to update the attributes (Ex: Remarks) of a file using UpdateEntry() method. here is the sample code id used: EntryInfo oDocEntryInfo = EntriesController.GetEntry(this.PortalId, iCollectionID,"Locale",true,true); if (oDocEntryInfo != null) { oDocEntryInfo.Remarks = "This is user manual doc"; EntriesController.UpdateEntry(oDocEntryInfo,true,true,true,true); } Here "iCollectionID" is the PDF file document/entry ID, which I get on uploading of PDF document using SimplifiedUpload() method of EntriesController class. But the method UpdateEntry() is not updating the 'remarks'! Am I missing any thing here or Is there any other approach to update the remarks field using API? Regards, Srinivas |