DBA Data[Home] [Help]

APPS.QA_CHART_HISTOGRAM_PKG dependencies on QLTCONTB

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 108: -- This is a wrapper to the original qltcontb.histogram

104:
105:
106: PROCEDURE create_chart(
107: --
108: -- This is a wrapper to the original qltcontb.histogram
109: -- procedure. It calls qltcontb.histogram and then calls
110: -- populate_data. It will be called by QLTENGIN.pld.
111: --
112: -- Bug 5130880 Added target value.

Line 109: -- procedure. It calls qltcontb.histogram and then calls

105:
106: PROCEDURE create_chart(
107: --
108: -- This is a wrapper to the original qltcontb.histogram
109: -- procedure. It calls qltcontb.histogram and then calls
110: -- populate_data. It will be called by QLTENGIN.pld.
111: --
112: -- Bug 5130880 Added target value.
113: --

Line 139: qltcontb.histogram(

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,
141: num_points => x_num_points,
142: dec_prec => p_dec_prec,
143: num_bars => x_num_bars,