DBA Data[Home] [Help]

APPS.QA_CHART_CONTROL_PKG dependencies on QLTCONTB

Line 78: -- qltcontb has been called to populate qa_chart_data

74: x_row_count OUT NOCOPY NUMBER) IS
75:
76: --
77: -- This is a very specific private procedure that assumes
78: -- qltcontb has been called to populate qa_chart_data
79: -- (the old data point table), it then migrates the data over
80: -- to the qa_chart_control table. It does a direct INSERT INTO
81: -- qa_chart_control...SELECT FROM qa_chart_data. This is not
82: -- the most efficient way to achieve a histogram, but in order

Line 168: -- The following are dummies required by qltcontb

164: l_dec_prec NUMBER;
165: l_subgroup_num NUMBER;
166:
167: --
168: -- The following are dummies required by qltcontb
169: --
170: l_top_mean NUMBER;
171: l_bottom_mean NUMBER;
172: l_top_ucl NUMBER;

Line 193: qltcontb.x_bar_r(

189: x_chart_id => x_chart_id);
190:
191: CASE p_chart_type
192: WHEN qa_ss_const.control_chart_XBarR THEN
193: qltcontb.x_bar_r(
194: sql_string => p_sql,
195: subgrp_size => p_subgroup_size,
196: num_subgroups => l_subgroup_num,
197: dec_prec => l_dec_prec,

Line 208: qltcontb.xmr(

204: not_enough_data => l_dummy,
205: compute_new_limits => false);
206:
207: WHEN qa_ss_const.control_chart_XmR THEN
208: qltcontb.xmr(
209: sql_string => p_sql,
210: subgrp_size => p_subgroup_size,
211: num_points => l_subgroup_num,
212: dec_prec => l_dec_prec,

Line 223: qltcontb.x_bar_s(

219: not_enough_data => l_dummy,
220: compute_new_limits => false);
221:
222: WHEN qa_ss_const.control_chart_XBarS THEN
223: qltcontb.x_bar_s(
224: sql_string => p_sql,
225: subgrp_size => p_subgroup_size,
226: num_subgroups => l_subgroup_num,
227: dec_prec => l_dec_prec,