DBA Data[Home] [Help]

APPS.QA_RESULTS_WF_PKG dependencies on QA_RESULTS

Line 1: PACKAGE BODY QA_RESULTS_WF_PKG as

1: PACKAGE BODY QA_RESULTS_WF_PKG as
2: /* $Header: qanotb.pls 115.2 2003/10/10 19:38:41 ksoh ship $ */
3:
4:
5:

Line 44: FROM qa_results qr

40: AND qpcao.token_name like 'X_%';
41:
42: cursor txn_hdr_cur IS
43: SELECT qr.txn_header_id
44: FROM qa_results qr
45: WHERE qr.plan_id = l_plan_id
46: AND qr.collection_id = l_collection_id
47: AND qr.occurrence = l_occurrence;
48:

Line 96: qa_results_pub.update_row(

92: elements(l_char_id).value := l_value;
93: END LOOP;
94:
95: if (do_update) THEN
96: qa_results_pub.update_row(
97: p_api_version => 1.0,
98: p_init_msg_list => fnd_api.g_true,
99: p_commit => fnd_api.g_true,
100: p_plan_id => l_plan_id,

Line 117: (p_module_name => 'qa_results_wf_pkg.process_updates',

113: if (return_status = FND_API.G_RET_STS_ERROR)
114: then
115: FOR i IN error_array.FIRST .. error_array.LAST LOOP
116: qa_skiplot_utility.insert_error_log
117: (p_module_name => 'qa_results_wf_pkg.process_updates',
118: p_error_message => itemtype|| '-' || itemkey
119: || ' *** '
120: || 'char_id: '||error_array(i).element_id
121: || ' Error: ' || error_array(i).error_code);

Line 146: wf_core.context('qa_results_wf_pkg', 'process_updates',

142: END IF; --end if funcmode = RESPOND
143:
144: EXCEPTION
145: WHEN OTHERS THEN
146: wf_core.context('qa_results_wf_pkg', 'process_updates',
147: itemtype, itemkey, to_char(actid), funcmode);
148: raise;
149:
150: END process_updates;

Line 231: wf_core.context('qa_results_wf_pkg', 'set_results_url',

227: avalue => url_string);
228:
229: EXCEPTION
230: WHEN OTHERS THEN
231: wf_core.context('qa_results_wf_pkg', 'set_results_url',
232: itemtype, itemkey, to_char(actid), funcmode);
233: raise;
234:
235: END set_results_url;

Line 237: END qa_results_wf_pkg;

233: raise;
234:
235: END set_results_url;
236:
237: END qa_results_wf_pkg;