Continue on error

This commit is contained in:
Jan Kvetina 2022-02-26 10:37:03 +01:00
parent 33153f3a23
commit 0ef7b927d6

View File

@ -448,6 +448,7 @@ CREATE OR REPLACE PACKAGE BODY app_actions AS
) t
GROUP BY t.item_name
) LOOP
BEGIN
wwv_flow_api.create_page_item (
p_id => wwv_flow_api.id(wwv_flow_id.next_val),
p_name => d.item_name,
@ -477,6 +478,10 @@ CREATE OR REPLACE PACKAGE BODY app_actions AS
p_attribute_04 => 'TEXT',
p_attribute_05 => 'BOTH'
);
EXCEPTION
WHEN OTHERS THEN
app.log_error('ITEM_ERROR', d.item_name, d.display_sequence);
END;
END LOOP;
END LOOP;
--