DBA Data[Home] [Help]

APPS.IBU_ORDER_CAPTURE dependencies on RA_SALESREPS

Line 85: from ra_salesreps

81: where header_id = p_header_id;
82:
83: Cursor Get_person_id (p_salesrep_id NUMBER) IS
84: select person_id
85: from ra_salesreps
86: where salesrep_id = p_salesrep_id;
87:
88: --debug
89: l_x_msg_count NUMBER;

Line 171: -- obtaining person id from ra_salesreps since Order Capture

167: l_qte_header_rec.price_list_id := l_pricelist_id;
168: l_qte_header_rec.currency_code := l_transaction_curr_code;
169:
170: -- if/else added by mukhan
171: -- obtaining person id from ra_salesreps since Order Capture
172: -- internally translates person id to salesrep id
173:
174: OPEN Get_order_salesrep_id (p_header_id);
175: FETCH Get_order_salesrep_id into l_salesrep_id;