Hi!,
I have a problem, I have a process with a loop with form, but in the next iterations the form not is initialized.
Can I do initialize field 'uploadfile' in begin each iteration?
Regards,
Fernando
Solved! Go to Solution.
yeah, you got to tweak the code to meet your requirement. May be instead of delete, you may want to do something like relatedContent.setField(null);
The best way to do that is to put a script/service task in the loop back to delete the existing file. You can use the relatedContentService api (com.activiti.service.runtime.RelatedContentService) to do this..I have a sample groovy script below..the 'uploadfield' will need to be replaced with your upload field id
def page = null;
int pageNumber = 0;
while ((page == null) || (page.hasNext())) {
page = relatedContentService
.getFieldContentForProcessInstance(
execution.getProcessInstanceId(), 'uploadfield', 50,
pageNumber);
relatedContentService.deleteRelatedContent(page.getContent());
pageNumber++;
}
Cheers,
Ciju
Hi Ciju Joseph
But I do not want delete the previous files, I need clean fields for a new upload.
Cheers,
Fernando
yeah, you got to tweak the code to meet your requirement. May be instead of delete, you may want to do something like relatedContent.setField(null);
Ask for and offer help to other Alfresco Process Services and Activiti Users and members of the Alfresco team.
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.