All product information in wiki.bizagi.com is only valid for Bizagi BPM Suite 9.1.X.
For newer Bizagi BPM Suite versions (10.X and up) please visit the User Guide.
 

HowToDeleteUploadedFile

From Business Process Management, BPM and Workflow Automation Wiki | BizAgi BPMS

Jump to: navigation, search

<keywords content="keywords"> delete uploaded, delete file, delete uploaded file, remove file, remove uploaded, remove upload, delete upload </keywords>

How to delete an uploaded file

An example would be to have a file-type attribute called fAnexx in the Master entity called Request, and this attribute is used in several activities of a sequential flow.


To delete the uploaded file use this statement:

Me.removeRelation("Request.fAnexx",true);



DO NOT USE this statement as THE VALUE OF THE UPLOADED FILE WILL REMAIN UNCHANGED:


Me.setXPath("Request.fAnexx", null)


<comments />