Skip to main content

Groovy Script - Update the Document Title to Uppercase, after the Document is Uploaded

Updated over 2 months ago

Description: Sample Groovy script to update the document title to uppercase, after the document is uploaded.

Context: Document

Remark: Accessible in 'Post' task mode only.

Script:

def execute(){

DocumentVO document = documentService.getDocumentDetails();

documentContext.getDocVO().docTitle = document.getDocTitle().toUpperCase();

documentService.updateDocument(documentContext);

}



Did this answer your question?