DBA Data[Home] [Help]

APPS.RCV_INT_ORDER_PP_PVT dependencies on RCV_TRANSACTIONS_INTERFACE

Line 1195: -- removed rcv_transactions_interface_sv.check_date_tolerance;

1191: asn_debug.put_line('cursor record ' || TO_CHAR(rows_fetched));
1192: asn_debug.put_line('int org rcv : calling get available qty');
1193: END IF;
1194:
1195: -- removed rcv_transactions_interface_sv.check_date_tolerance;
1196: -- removed check shipto_location enforcement
1197: -- removed check receipt days exception code
1198:
1199: --{

Line 1824: the deliver_to_person_id mentioned in the parent transaction(i.e from rcv_transactions_interface).

1820: END get_deliver_to_person_from_rt;
1821:
1822: /* Function get_deliver_to_person_from_rti() is added as part of Bug#6375015 fix.
1823: This function is called from validate_io_rcv_line() and it tries to default
1824: the deliver_to_person_id mentioned in the parent transaction(i.e from rcv_transactions_interface).
1825: */
1826:
1827: FUNCTION get_deliver_to_person_from_rti(
1828: x_cascaded_table IN OUT NOCOPY rcv_roi_preprocessor.cascaded_trans_tab_type,

Line 1835: from rcv_transactions_interface

1831: l_parent_deliver_to_person_id NUMBER := null;
1832: BEGIN
1833: select deliver_to_person_id
1834: into l_parent_deliver_to_person_id
1835: from rcv_transactions_interface
1836: where interface_transaction_id = x_cascaded_table(n).parent_transaction_id;
1837:
1838: IF (g_asn_debug = 'Y') THEN
1839: asn_debug.put_line('Got deliver_to_person_id of parent txn as:'||l_parent_deliver_to_person_id);