Skip to main content
All CollectionsSystem TasksWorking with Groovy ScriptsGroovy Script Library
Groovy Script - Update the Revision Notes after the Document is Uploaded

Groovy Script - Update the Revision Notes after the Document is Uploaded

Updated over 3 weeks ago

Description: Sample Groovy script to update the revision notes, after the document is uploaded.

Context: Document

Remark: Accessible in 'Post' task mode only.

Script:

def execute(){

documentContext.getDocVO().revisionNotes = "Set Via Groovy Script";

documentService.updateDocument(documentContext);

}



Did this answer your question?