DBA Data[Home] [Help]

APPS.QA_CHART_HISTOGRAM_PKG dependencies on QA_CHART_GENERIC

Line 18: -- to the qa_chart_generic table. It does a direct INSERT INTO

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
21: -- to completely re-use the legacy code for implementation and
22: -- maintenance efficient and, more importantly, to not destabilize

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 39: INSERT INTO qa_chart_generic(

35: -- so it always contains a small no. of records only.
36: --
37: -- bso Wed Jan 11 13:54:47 PST 2006
38: --
39: INSERT INTO qa_chart_generic(
40: created_by,
41: creation_date,
42: last_updated_by,
43: last_update_date,

Line 237: -- This is a simple wrapper to qa_chart_generic_pkg

233:
234:
235: PROCEDURE delete_data(p_chart_id NUMBER) IS
236: --
237: -- This is a simple wrapper to qa_chart_generic_pkg
238: -- since Histogram uses generic charting architecture.
239: --
240: BEGIN
241: qa_chart_generic_pkg.delete_data(p_chart_id);

Line 241: qa_chart_generic_pkg.delete_data(p_chart_id);

237: -- This is a simple wrapper to qa_chart_generic_pkg
238: -- since Histogram uses generic charting architecture.
239: --
240: BEGIN
241: qa_chart_generic_pkg.delete_data(p_chart_id);
242: END delete_data;
243:
244:
245: PROCEDURE delete_data_autonomous(p_chart_id NUMBER) IS