DBA Data[Home] [Help]

APPS.QA_RESULTS_INTERFACE_PKG dependencies on QA_PLAN_CHARS

Line 30: from qa_plan_chars qpc, qa_chars qc

26:
27: DECLARE
28:
29: cursor CES is select result_column_name, qpc.char_id
30: from qa_plan_chars qpc, qa_chars qc
31: where plan_id = given_plan_id
32: and qpc.char_id = qc.char_id
33: and qpc.enabled_flag = 1
34: order by prompt_sequence;

Line 112: FROM qa_plan_chars qpc, qa_chars qc

108: RETURN VARCHAR2 IS
109:
110: cursor CES is
111: SELECT result_column_name, qpc.char_id, qc.datatype
112: FROM qa_plan_chars qpc, qa_chars qc
113: WHERE plan_id = p_plan_id
114: AND qpc.char_id = qc.char_id
115: AND qpc.enabled_flag = 1
116: ORDER BY prompt_sequence;