I have a process that allows for a client to upload multiple pictures to a BO. It has been working just fine.
We updated to the latest release last week and now the selection screen for pick the files we want to upload will not show up.
The process works as follows:
First, it opens a form with some session variables to add a description and a couple of other pieces of information:
View SessionVariables USING 'Media Upload Prompt'
After entering the prompt data there is a button to bring up the process that select the files and creates the new records. This process looks like this:
CREATE PASS_Media FOR EACH FileItem WITH
PASS_Media.CreatedBy=LoggedInEmployee,
PASS_Media.MediaFileDescription=SessionVariables.Title,
PASS_Media.Confidentiality=SessionVariables.ConfidentialityLevel,
PASS_Media.PASS_Report=SessionVariables.CurrentReport,
PASS_Media.MediaFile=FileItem.Doc,
PASS_Media.MediaFilePath=SystemSettings.DefaultMediaLocation+'\'+FILE_NAME(FileItem.Doc)+'.'+FILE_EXTENSION(FileItem.Doc)
The operation that calls the above process has 'Implements multi-file upload' checked
The problem is absolutely nothing happens when I hit the button to start that process and there are no log entries showing that anything is happening.
In version 8.7 (Build 3006) it works just fine.
But, in version 8.8 (whatever build) it just does nothing,
Is there something that has changed?
Thanks,
Jim