DBA Data[Home] [Help]

APPS.QA_CHART_HISTOGRAM_PKG dependencies on QA_CHART_DATA

Line 16: -- qltcontb.histogram has been called to populate qa_chart_data

12: x_row_count OUT NOCOPY NUMBER) IS
13:
14: --
15: -- This is a very specific private procedure that assumes
16: -- qltcontb.histogram has been called to populate qa_chart_data
17: -- (the old data point table), it then migrates the data over
18: -- to the qa_chart_generic table. It does a direct INSERT INTO
19: -- qa_chart_generic...SELECT FROM qa_chart_data. This is not
20: -- the most efficient way to achieve a histogram, but in order

Line 19: -- qa_chart_generic...SELECT FROM qa_chart_data. This is not

15: -- This is a very specific private procedure that assumes
16: -- qltcontb.histogram has been called to populate qa_chart_data
17: -- (the old data point table), it then migrates the data over
18: -- to the qa_chart_generic table. It does a direct INSERT INTO
19: -- qa_chart_generic...SELECT FROM qa_chart_data. This is not
20: -- the most efficient way to achieve a histogram, but in order
21: -- to completely re-use the legacy code for implementation and
22: -- maintenance efficient and, more importantly, to not destabilize
23: -- existing code, this is a reasonable approach.

Line 62: qa_chart_data;

58: bar_number,
59: hist_range,
60: num_occurrences
61: FROM
62: qa_chart_data;
63:
64: x_row_count := sql%ROWCOUNT;
65:
66: END populate_data;

Line 136: -- Main worker to populate the data points in qa_chart_data

132:
133: BEGIN
134:
135: --
136: -- Main worker to populate the data points in qa_chart_data
137: -- table. This is a pre-R12 existing API.
138: --
139: qltcontb.histogram(
140: sql_string => p_sql,

Line 182: FROM qa_chart_data;

178:
179: DELETE
180: /* Small amount of data from one session only. */
181: /* FTS expected and reviewed by bso 1/11/2006. */
182: FROM qa_chart_data;
183:
184: END create_chart;
185:
186: