DBA Data[Home] [Help]

APPS.GME_PENDING_PRODUCT_LOTS_PVT dependencies on INV_LOT_API_PUB

Line 221: inv_lot_api_pub.auto_gen_lot

217: l_parent_lot := p_parent_lot;
218:
219: IF p_generate_parent_lot = fnd_api.g_true AND p_parent_lot IS NULL THEN
220: l_parent_lot :=
221: inv_lot_api_pub.auto_gen_lot
222: (p_org_id => p_organization_id
223: ,p_inventory_item_id => p_inventory_item_id
224: ,p_lot_generation => NULL
225: ,p_lot_uniqueness => NULL

Line 266: x_mmli_tbl (i).lot_number := inv_lot_api_pub.auto_gen_lot

262: END IF; -- IF p_generate_parent_lot = fnd_api.g_true AND p_parent_lot IS NULL THEN
263:
264: FOR i IN 1 .. x_mmli_tbl.COUNT LOOP
265: IF x_mmli_tbl (i).lot_number IS NULL THEN
266: x_mmli_tbl (i).lot_number := inv_lot_api_pub.auto_gen_lot
267: (p_org_id => p_organization_id
268: ,p_inventory_item_id => p_inventory_item_id
269: ,p_lot_generation => NULL
270: ,p_lot_uniqueness => NULL

Line 337: inv_lot_api_pub.create_inv_lot

333: l_in_lot_rec.organization_id := p_organization_id;
334: l_in_lot_rec.inventory_item_id := p_inventory_item_id;
335: l_in_lot_rec.lot_number := x_mmli_tbl (i).lot_number;
336:
337: inv_lot_api_pub.create_inv_lot
338: (x_return_status => x_return_status
339: ,x_msg_count => l_msg_count
340: ,x_msg_data => l_msg_data
341: ,x_row_id => l_row_id

Line 1230: l_return := INV_LOT_API_PUB.validate_quantities

1226: IF (NVL (g_debug, -1) = gme_debug.g_log_statement) THEN
1227: gme_debug.put_line ( g_pkg_name||'.'||l_api_name||' l_primary_lot_qty='||l_primary_lot_qty);
1228: END IF;
1229:
1230: l_return := INV_LOT_API_PUB.validate_quantities
1231: (p_api_version => 1.0
1232: ,p_init_msg_list => FND_API.G_FALSE
1233: ,p_transaction_type_id => l_transaction_type_id
1234: ,p_organization_id => p_matl_dtl_rec.organization_id

Line 1253: gme_debug.put_line ( g_pkg_name||'.'||l_api_name||' error returned from INV_LOT_API_PUB.validate_quantities with return status='||l_return_status);

1249:
1250: IF NOT l_return OR l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
1251: x_return_status := l_return_status;
1252: IF (NVL (g_debug, -1) = gme_debug.g_log_statement) THEN
1253: gme_debug.put_line ( g_pkg_name||'.'||l_api_name||' error returned from INV_LOT_API_PUB.validate_quantities with return status='||l_return_status);
1254: gme_debug.put_line ( g_pkg_name||'.'||l_api_name||' l_msg_count='||l_msg_count);
1255: gme_debug.put_line ( g_pkg_name||'.'||l_api_name||' l_msg_data='||l_msg_data);
1256: END IF;
1257: RAISE error_val_qties;