I'm using apex 5.1 and universal theme.
I have a page with file browse item and I need to submit a page in order for me to read the file the blob in apex_application_temp_files.
I have been staying away from submitting a page since its slower and its harder to control display like messages and redirect.
Is there any pl/sql code to force apex to retrieve the file and store it in apex_application_temp_files table?
Thanks
apex.server.process('MyProc', {},
{
success: function(gReturn) {
alert ('yes');
},
dataType: "text"
});