DBA Data[Home] [Help]

APPS.QA_CHART_PARETO_PKG SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 117

    PROCEDURE delete_data(p_chart_id NUMBER) IS
    --
    -- This is a simple wrapper to qa_chart_generic_pkg
    -- since Pareto Chart uses generic charting architecture.
    --
    BEGIN
        qa_chart_generic_pkg.delete_data(p_chart_id);
Line: 124

    END delete_data;
Line: 127

    PROCEDURE delete_data_autonomous(p_chart_id NUMBER) IS
    --
    -- This is a wrapper to delete_data and performs
    -- autonomous commit.
    --
    PRAGMA autonomous_transaction;
Line: 134

        delete_data(p_chart_id);
Line: 136

    END delete_data_autonomous;