apex collection update member
BEGIN
APEX_COLLECTION.UPDATE_MEMBER (
p_collection_name => 'Departments',
p_seq => '2', -- sequence ID of the collection member to be updated
p_c001 => 'Engineering',
p_c002 => 'Sales');
END;