Hi everyone,
I'm working with Oracle Apex 3.2
I have a report based on apex collection.
SELECT c003,c004 from apex_collections where collection_name = 'ATTIVITA';
I created a process (DELETE) that erase rows by an item : p61_test :
BEGIN
APEX_COLLECTION.DELETE_MEMBER (
p_collection_name => 'ATTIVITA',
p_seq => :P61_TEST );
END;
I don't know put a button in a report that assign the sequence of collection at item p61_test and then fire the process DELETE.
Pleae Help me.
Regards