Hello,
I'm using Oracle Apex 20.2.
I have a dynamic region where I want to draw specific items defined in a table.
One of this items is "File'. as a definition:
htp.p(<input type="file" id="5" name="FileUpload" class="file apex-item-file apex-item-file--native" style="width:500px" data-display-style="NATIVE" data-caption="Choose Files" size="30">');
In button process I have defined :
for rec in (select * FROM APEX_APPLICATION_TEMP_FILES) loop
apex_debug.enter('debug ',
'p_file_id ' , rec.ID,
'APPLICATION_ID ', rec.APPLICATION_ID,
'FILENAME ' , rec.FILENAME );
async_pkg.send_debug( apex_application.get_session_id,'APEX','DEBUG', 'SUBMIT FILES ' ,rec.ID ,rec.FILENAME);
delete APEX_APPLICATION_TEMP_FILES where id = rec.id;
end loop;
But there is no log in the table.
After that I've defined a branch that will stay in the same page.
What am I doing wrong?
Thanks in advance,
bsd