DBA Data[Home] [Help]

APPS.RCV_TRANSACTIONS_INTERFACE_SV1 dependencies on RCV_TRANSACTIONS_INTERFACE

Line 1: PACKAGE BODY rcv_transactions_interface_sv1 AS

1: PACKAGE BODY rcv_transactions_interface_sv1 AS
2: /* $Header: RCVTIS2B.pls 120.4.12020000.4 2012/11/22 10:20:22 liayang ship $*/
3:
4: -- Read the profile option that enables/disables the debug log
5: g_asn_debug VARCHAR2(1) := asn_debug.is_debug_on; -- Bug 9152790

Line 133: x_unit_of_measure rcv_transactions_interface.unit_of_measure%TYPE := NULL;

129: ===========================================================================*/
130: PROCEDURE validate_uom(
131: x_uom_record IN OUT NOCOPY rcv_shipment_line_sv.quantity_shipped_record_type
132: ) IS
133: x_unit_of_measure rcv_transactions_interface.unit_of_measure%TYPE := NULL;
134: x_unit_meas_lookup_code_lines po_lines.unit_meas_lookup_code%TYPE := NULL;
135: x_progress VARCHAR2(3);
136: x_new_conversion NUMBER := 0;
137: x_cum_enabled chv_org_options.enable_cum_flag%TYPE := NULL;

Line 291: x_auto_transact_code IN rcv_transactions_interface.auto_transact_code%TYPE

287:
288: ===========================================================================*/
289: PROCEDURE validate_item(
290: x_item_id_record IN OUT NOCOPY rcv_shipment_line_sv.item_id_record_type,
291: x_auto_transact_code IN rcv_transactions_interface.auto_transact_code%TYPE
292: ) IS -- bug 608353
293: x_progress VARCHAR2(3);
294: x_inventory_item mtl_system_items.inventory_item_id%TYPE := NULL;
295: x_organization_id mtl_system_items.organization_id%TYPE := NULL;

Line 1836: x_att_rec IN OUT NOCOPY RCV_TRANSACTIONS_INTERFACE_SV1.attributes_record_type ,

1832:
1833: PROCEDURE VALIDATE_SECONDARY_PARAMETERS(
1834: p_api_version IN NUMBER ,
1835: p_init_msg_lst IN VARCHAR2 ,
1836: x_att_rec IN OUT NOCOPY RCV_TRANSACTIONS_INTERFACE_SV1.attributes_record_type ,
1837: x_return_status OUT NOCOPY VARCHAR2 ,
1838: x_msg_count OUT NOCOPY NUMBER ,
1839: x_msg_data OUT NOCOPY VARCHAR2 ,
1840: p_transaction_id IN NUMBER /*BUG#10380635 */

Line 1890: asn_debug.put_line('FND_API not compatible rcv_transactions_interface_sv1.VALIDATE_SECONDARY_PARAMETERS'||l_progress);

1886: 'PO_VALIDATE_PARAMETERS'
1887: ) THEN
1888: l_progress :='0002';
1889: IF (g_asn_debug = 'Y') THEN
1890: asn_debug.put_line('FND_API not compatible rcv_transactions_interface_sv1.VALIDATE_SECONDARY_PARAMETERS'||l_progress);
1891: END IF;
1892: END IF;
1893:
1894: -- Initialize message list if p_init_msg_list is set to TRUE.

Line 1927: asn_debug.put_line('Inside rcv_transactions_interface_sv1.VALIDATE_SECONDARY_PARAMETERS:' || l_progress);

1923:
1924: BEGIN
1925: l_progress :='0003';
1926: IF (g_asn_debug = 'Y') THEN
1927: asn_debug.put_line('Inside rcv_transactions_interface_sv1.VALIDATE_SECONDARY_PARAMETERS:' || l_progress);
1928: END IF;
1929:
1930: -------Checking if the item is dual UOM controlled. If not then Return .
1931: SELECT tracking_quantity_ind , secondary_default_ind

Line 2465: END rcv_transactions_interface_sv1;

2461:
2462: END VALIDATE_SECONDARY_PARAMETERS;
2463:
2464: /* */
2465: END rcv_transactions_interface_sv1;
2466:
2467: