1
  1. For some enhancing reason, I have added some new fields in my form. It is having default value.
  2. But the existing document is not getting updated with the new fields.
  3. I am having a thousands of documents. I can not open, Edit and save. I tried to save the document from backend. I can not believe, that was also not working.
  4. Is their anyway for updating documents?
Richard Schwartz
  • 14,463
  • 2
  • 23
  • 41
Ramkumar
  • 874
  • 11
  • 27

2 Answers2

3

Create a view action button that executes this command:

@Command[ToolsRefreshAllDocs])

Richard Schwartz
  • 14,463
  • 2
  • 23
  • 41
1

If you prefer using backend classes, you need call notesDocument.ComputeWithForm( False, False ) before saving document.

pstr
  • 384
  • 1
  • 2
  • 6