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.0 2005/06/01 16:48:29 appldev noship $*/
3:
4: -- Read the profile option that enables/disables the debug log
5: g_asn_debug VARCHAR2(1) := NVL(fnd_profile.VALUE('RCV_DEBUG_MODE'), 'N');

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 1685: x_att_rec IN OUT NOCOPY RCV_TRANSACTIONS_INTERFACE_SV1.attributes_record_type ,

1681:
1682: PROCEDURE VALIDATE_SECONDARY_PARAMETERS(
1683: p_api_version IN NUMBER ,
1684: p_init_msg_lst IN VARCHAR2 ,
1685: x_att_rec IN OUT NOCOPY RCV_TRANSACTIONS_INTERFACE_SV1.attributes_record_type ,
1686: x_return_status OUT NOCOPY VARCHAR2 ,
1687: x_msg_count OUT NOCOPY NUMBER ,
1688: x_msg_data OUT NOCOPY VARCHAR2
1689: )

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

1719: 'PO_VALIDATE_PARAMETERS'
1720: ) THEN
1721: l_progress :='0002';
1722: IF (g_asn_debug = 'Y') THEN
1723: asn_debug.put_line('FND_API not compatible rcv_transactions_interface_sv1.VALIDATE_SECONDARY_PARAMETERS'||l_progress);
1724: END IF;
1725: END IF;
1726:
1727: -- Initialize message list if p_init_msg_list is set to TRUE.

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

1742:
1743: BEGIN
1744: l_progress :='0003';
1745: IF (g_asn_debug = 'Y') THEN
1746: asn_debug.put_line('Inside rcv_transactions_interface_sv1.VALIDATE_SECONDARY_PARAMETERS:' || l_progress);
1747: END IF;
1748:
1749: -------Checking if the item is dual UOM controlled. If not then Return .
1750: SELECT tracking_quantity_ind , secondary_default_ind

Line 2178: END rcv_transactions_interface_sv1;

2174:
2175: END VALIDATE_SECONDARY_PARAMETERS;
2176:
2177: /* */
2178: END rcv_transactions_interface_sv1;
2179:
2180: