DBA Data[Home] [Help]

APPS.RCV_INT_ORDER_PP_PVT dependencies on RCV_TRANSACTIONS_INTERFACE

Line 1146: -- removed rcv_transactions_interface_sv.check_date_tolerance;

1142: asn_debug.put_line('cursor record ' || TO_CHAR(rows_fetched));
1143: asn_debug.put_line('int org rcv : calling get available qty');
1144: END IF;
1145:
1146: -- removed rcv_transactions_interface_sv.check_date_tolerance;
1147: -- removed check shipto_location enforcement
1148: -- removed check receipt days exception code
1149:
1150: --{

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

1757: END get_deliver_to_person_from_rt;
1758:
1759: /* Function get_deliver_to_person_from_rti() is added as part of Bug#6375015 fix.
1760: This function is called from validate_io_rcv_line() and it tries to default
1761: the deliver_to_person_id mentioned in the parent transaction(i.e from rcv_transactions_interface).
1762: */
1763:
1764: FUNCTION get_deliver_to_person_from_rti(
1765: x_cascaded_table IN OUT NOCOPY rcv_roi_preprocessor.cascaded_trans_tab_type,

Line 1772: from rcv_transactions_interface

1768: l_parent_deliver_to_person_id NUMBER := null;
1769: BEGIN
1770: select deliver_to_person_id
1771: into l_parent_deliver_to_person_id
1772: from rcv_transactions_interface
1773: where interface_transaction_id = x_cascaded_table(n).parent_transaction_id;
1774:
1775: IF (g_asn_debug = 'Y') THEN
1776: asn_debug.put_line('Got deliver_to_person_id of parent txn as:'||l_parent_deliver_to_person_id);