DBA Data[Home] [Help]

APPS.QA_CHART_CONTROL_PKG dependencies on QA_CHART_CONTROL

Line 1: PACKAGE BODY qa_chart_control_pkg AS

1: PACKAGE BODY qa_chart_control_pkg AS
2: /* $Header: qacctrlb.pls 120.3 2006/02/08 16:26:15 bso noship $ */
3:
4: --
5: -- Tracking Bug 4939897

Line 23: -- x-axis label is constructed by QA_CHART_CONTROL_X_LABEL

19:
20: FUNCTION get_x_axis_label(p_subgroup_size NUMBER) RETURN VARCHAR2 IS
21: BEGIN
22: --
23: -- x-axis label is constructed by QA_CHART_CONTROL_X_LABEL
24: --
25: fnd_message.set_name('QA', 'QA_CHART_CONTROL_X_LABEL');
26: fnd_message.set_token('SIZE', p_subgroup_size);
27: RETURN fnd_message.get;

Line 25: fnd_message.set_name('QA', 'QA_CHART_CONTROL_X_LABEL');

21: BEGIN
22: --
23: -- x-axis label is constructed by QA_CHART_CONTROL_X_LABEL
24: --
25: fnd_message.set_name('QA', 'QA_CHART_CONTROL_X_LABEL');
26: fnd_message.set_token('SIZE', p_subgroup_size);
27: RETURN fnd_message.get;
28: END get_x_axis_label;
29:

Line 46: -- Top label is QA_CHART_CONTROL_TOP_Y_LABELxx

42: -- string by g_separator. They will be parsed out by
43: -- the control chart's Controller Object then set to
44: -- the appropriate chart bean.
45: --
46: -- Top label is QA_CHART_CONTROL_TOP_Y_LABELxx
47: -- Bottom label is QA_CHART_CONTROL_BOT_Y_LABELxx
48: --
49: -- where xx is the subchart type.
50: --

Line 47: -- Bottom label is QA_CHART_CONTROL_BOT_Y_LABELxx

43: -- the control chart's Controller Object then set to
44: -- the appropriate chart bean.
45: --
46: -- Top label is QA_CHART_CONTROL_TOP_Y_LABELxx
47: -- Bottom label is QA_CHART_CONTROL_BOT_Y_LABELxx
48: --
49: -- where xx is the subchart type.
50: --
51: l_element := qa_chars_api.get_element_name(p_element_id);

Line 52: fnd_message.set_name('QA', 'QA_CHART_CONTROL_TOP_Y_LABEL' ||

48: --
49: -- where xx is the subchart type.
50: --
51: l_element := qa_chars_api.get_element_name(p_element_id);
52: fnd_message.set_name('QA', 'QA_CHART_CONTROL_TOP_Y_LABEL' ||
53: p_chart_type);
54: fnd_message.set_token('ELEMENT_NAME', l_element);
55: l_label := fnd_message.get;
56:

Line 57: fnd_message.set_name('QA', 'QA_CHART_CONTROL_BOT_Y_LABEL' ||

53: p_chart_type);
54: fnd_message.set_token('ELEMENT_NAME', l_element);
55: l_label := fnd_message.get;
56:
57: fnd_message.set_name('QA', 'QA_CHART_CONTROL_BOT_Y_LABEL' ||
58: p_chart_type);
59: fnd_message.set_token('ELEMENT_NAME', l_element);
60: l_label := l_label || g_separator || fnd_message.get;
61:

Line 80: -- to the qa_chart_control table. It does a direct INSERT INTO

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

Line 81: -- qa_chart_control...SELECT FROM qa_chart_data. This is not

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
83: -- to completely re-use the legacy code for implementation and
84: -- maintenance efficient and, more importantly, to not destabilize
85: -- existing code, this is a reasonable approach.

Line 101: INSERT INTO qa_chart_control(

97: -- so it always contains a small no. of records only.
98: --
99: -- bso Fri Jan 13 18:57:22 PST 2006
100: --
101: INSERT INTO qa_chart_control(
102: created_by,
103: creation_date,
104: last_updated_by,
105: last_update_date,

Line 306: DELETE FROM qa_chart_control

302:
303:
304: PROCEDURE delete_data(p_chart_id NUMBER) IS
305: BEGIN
306: DELETE FROM qa_chart_control
307: WHERE chart_id = p_chart_id;
308: END delete_data;
309:
310:

Line 323: END qa_chart_control_pkg;

319: COMMIT;
320: END delete_data_autonomous;
321:
322:
323: END qa_chart_control_pkg;