DBA Data[Home] [Help]

APPS.QA_CHART_PARETO_PKG dependencies on QA_CHART_HEADERS_PKG

Line 48: qa_chart_headers_pkg.create_chart(

44: -- Simple wrapper to qa_chart_generic_pkg since a Pareto
45: -- Chart uses the generic charting architecture.
46: --
47:
48: qa_chart_headers_pkg.create_chart(
49: p_criteria_id => p_criteria_id,
50: p_title => p_title,
51: p_description => p_description,
52: p_x_label => 'DUMMY',

Line 54: qa_chart_headers_pkg.get_function_axis_label(

50: p_title => p_title,
51: p_description => p_description,
52: p_x_label => 'DUMMY',
53: p_y_label =>
54: qa_chart_headers_pkg.get_function_axis_label(
55: p_element_id => p_y_element_id,
56: p_function_code => p_function_code),
57: x_chart_id => x_chart_id);
58:

Line 73: qa_chart_headers_pkg.set_x_label(

69: -- x-axis label is a bit tricky, it needs to know the
70: -- row_count, therefore we created the header with a
71: -- 'DUMMY' x-axis label and now update it.
72: --
73: qa_chart_headers_pkg.set_x_label(
74: p_chart_id => x_chart_id,
75: p_label => get_x_axis_label(p_x_element_id, x_row_count));
76:
77: END create_chart;