There are some open enhancements to the multiple file upload plugin which we will be adding in a future release, this being one of them.
For now you will have to use a Before insert trigger and reference an item from session state.
e.g.
IF INSERTING THEN
:NEW.my_column := nvl(v('P1_ITEM_NAME'), 'Default Value');
END IF;