DBA Data[Home] [Help]

APPS.INV_RCV_COMMON_APIS dependencies on INV_LOT_API_PUB

Line 4994: carried out in the INV_LOT_API_PUB package.

4990:
4991: /**************************************************************************
4992: As part of the Bug - 2181558, this code is commented out. The process of
4993: copying the lot attributes from the parent lot to the destination lot is
4994: carried out in the INV_LOT_API_PUB package.
4995:
4996: PROCEDURE populatelotattributes
4997: (x_return_status OUT VARCHAR2,
4998: p_organization_id IN NUMBER,

Line 5205: -- This is a wrapper to call inventory INV_LOT_API_PUB.insertLot

5201:
5202: END populatelotattributes;
5203: ******************************************************************************************/
5204:
5205: -- This is a wrapper to call inventory INV_LOT_API_PUB.insertLot
5206: -- it stores the inserted lot info in a global variable for
5207: -- transaction exception rollback
5208: PROCEDURE insert_dynamic_lot(
5209: p_api_version IN NUMBER

Line 5243: IF inv_lot_api_pub.validate_unique_lot(

5239: IF (l_debug = 1) THEN
5240: print_debug('Inside insert_dynamic_lot', 4);
5241: END IF;
5242:
5243: IF inv_lot_api_pub.validate_unique_lot(
5244: p_org_id => p_organization_id
5245: , p_inventory_item_id => p_inventory_item_id
5246: , p_lot_uniqueness => NULL
5247: , p_auto_lot_number => p_lot_number

Line 5298: inv_lot_api_pub.insertlot(

5294: IF (l_debug = 1) THEN
5295: print_debug('Lot uniqueness passed so inserting lot:' || l_exists, 4);
5296: END IF;
5297:
5298: inv_lot_api_pub.insertlot(
5299: p_api_version => p_api_version
5300: , p_init_msg_list => p_init_msg_list
5301: , p_commit => p_commit
5302: , p_validation_level => p_validation_level

Line 5330: carried out in the INV_LOT_API_PUB package.

5326:
5327: /**************************************************************************
5328: As part of the Bug - 2181558, this code is commented out. The process of
5329: copying the lot attributes from the parent lot to the destination lot is
5330: carried out in the INV_LOT_API_PUB package.
5331:
5332: -- bug 2180480
5333: IF p_transfer_organization_id IS NOT NULL AND
5334: l_exists = 'FALSE' THEN