DBA Data[Home] [Help]

APPS.QA_CHART_CONTROL_PKG dependencies on QA_CHARS

Line 36: l_element qa_chars.name%TYPE;

32: p_chart_type NUMBER,
33: p_element_id NUMBER) RETURN VARCHAR2 IS
34:
35: l_label VARCHAR2(2000);
36: l_element qa_chars.name%TYPE;
37:
38: BEGIN
39: --
40: -- The y-axis label is constructed by concatenating the

Line 51: l_element := qa_chars_api.get_element_name(p_element_id);

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);
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;