I am sure I am missing something simple. I don’t seem to be able to find any documentation no how to refresh the display grid after a document has been added to the collection or even just after changing the profile.The simple code below will update the description of the document, but not display this change until I click refresh on either desksite or worksite. Can someone point me in the correct direction Dim rpSelectedNRTDocuments As Array = mContext.Item "SelectedNRTDocuments") Dim objdoc As IManDocument = rpSelectedNRTDocuments(0) objdoc.Description = "Display this change in grid" objdoc.Update() objdoc.Refresh()Cheers for any help