DBA Data[Home] [Help]

APPS.INV_RCV_COMMON_APIS dependencies on INV_LOT_API_PUB

Line 4471: carried out in the INV_LOT_API_PUB package.

4467:
4468: /**************************************************************************
4469: As part of the Bug - 2181558, this code is commented out. The process of
4470: copying the lot attributes from the parent lot to the destination lot is
4471: carried out in the INV_LOT_API_PUB package.
4472:
4473: PROCEDURE populatelotattributes
4474: (x_return_status OUT VARCHAR2,
4475: p_organization_id IN NUMBER,

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

4678:
4679: END populatelotattributes;
4680: ******************************************************************************************/
4681:
4682: -- This is a wrapper to call inventory INV_LOT_API_PUB.insertLot
4683: -- it stores the inserted lot info in a global variable for
4684: -- transaction exception rollback
4685: PROCEDURE insert_dynamic_lot(
4686: p_api_version IN NUMBER

Line 4718: IF inv_lot_api_pub.validate_unique_lot(

4714: IF (l_debug = 1) THEN
4715: print_debug('Inside insert_dynamic_lot', 4);
4716: END IF;
4717:
4718: IF inv_lot_api_pub.validate_unique_lot(
4719: p_org_id => p_organization_id
4720: , p_inventory_item_id => p_inventory_item_id
4721: , p_lot_uniqueness => NULL
4722: , p_auto_lot_number => p_lot_number

Line 4773: inv_lot_api_pub.insertlot(

4769: IF (l_debug = 1) THEN
4770: print_debug('Lot uniqueness passed so inserting lot:' || l_exists, 4);
4771: END IF;
4772:
4773: inv_lot_api_pub.insertlot(
4774: p_api_version => p_api_version
4775: , p_init_msg_list => p_init_msg_list
4776: , p_commit => p_commit
4777: , p_validation_level => p_validation_level

Line 4803: carried out in the INV_LOT_API_PUB package.

4799:
4800: /**************************************************************************
4801: As part of the Bug - 2181558, this code is commented out. The process of
4802: copying the lot attributes from the parent lot to the destination lot is
4803: carried out in the INV_LOT_API_PUB package.
4804:
4805: -- bug 2180480
4806: IF p_transfer_organization_id IS NOT NULL AND
4807: l_exists = 'FALSE' THEN