Reputation: 115
I have created my submission form in Bonita and I have added all my variables. Here below is a photo of my submission form
Here is the Validation Form
I want to be able to get the file uploaded on the first form, to the validation form, so I can be able to download it as a link.
But when I tried to reference it, I get an error message when I tried to click on the link
How can I reference the file correctly? Any Ideas?
Upvotes: 2
Views: 700
Reputation: 76
Note: You would need to press the fx button in the URL field and provide the input like '/bonita/portal/' + context.file_ref.url
Also there are couple of cases to check in your question:
'/bonita/portal/' + context.file_ref.url
where
file is the name of the process document.'/bonita/portal/' + context.submit_ref.File
where submit is the name of the business variable and File is the attribute where you saved the document URLUpvotes: 1