DBA Data[Home] [Help]

APPS.INV_WORKFLOW dependencies on PO_REQ_DISTRIBUTIONS_ALL

Line 220: -- for process enabled organization get AAP from po_req_distributions_all

216: --
217: -- Bug 6065114 added following for OPM purposes.
218: --
219: IF (NVL(v_process_enabled_flag,'N') = 'Y' AND v_requisition_line_id IS NOT NULL) THEN
220: -- for process enabled organization get AAP from po_req_distributions_all
221: BEGIN
222: SELECT accrual_account_id
223: INTO v_order_type_cogs
224: FROM po_req_distributions_all

Line 224: FROM po_req_distributions_all

220: -- for process enabled organization get AAP from po_req_distributions_all
221: BEGIN
222: SELECT accrual_account_id
223: INTO v_order_type_cogs
224: FROM po_req_distributions_all
225: WHERE requisition_line_id = v_requisition_line_id
226: AND rownum < 2;
227: print_debug('for OPM Found v_acrual_acct: ' || v_order_type_cogs, l_function_name);
228: EXCEPTION