DBA Data[Home] [Help]

APPS.GME_PENDING_PRODUCT_LOTS_PVT dependencies on INV_LOT_API_PUB

Line 229: inv_lot_api_pub.auto_gen_lot

225: l_parent_lot := p_parent_lot;
226:
227: IF p_generate_parent_lot = fnd_api.g_true AND p_parent_lot IS NULL THEN
228: l_parent_lot :=
229: inv_lot_api_pub.auto_gen_lot
230: (p_org_id => p_organization_id
231: ,p_inventory_item_id => p_inventory_item_id
232: ,p_lot_generation => NULL
233: ,p_lot_uniqueness => NULL

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

270: END IF; -- IF p_generate_parent_lot = fnd_api.g_true AND p_parent_lot IS NULL THEN
271:
272: FOR i IN 1 .. x_mmli_tbl.COUNT LOOP
273: IF x_mmli_tbl (i).lot_number IS NULL THEN
274: x_mmli_tbl (i).lot_number := inv_lot_api_pub.auto_gen_lot
275: (p_org_id => p_organization_id
276: ,p_inventory_item_id => p_inventory_item_id
277: ,p_lot_generation => NULL
278: ,p_lot_uniqueness => NULL

Line 350: inv_lot_api_pub.create_inv_lot

346:
347: -- Bug 6941158 - Initialize origination type to production
348: l_in_lot_rec.origination_type := 1;
349:
350: inv_lot_api_pub.create_inv_lot
351: (x_return_status => x_return_status
352: ,x_msg_count => l_msg_count
353: ,x_msg_data => l_msg_data
354: ,x_row_id => l_row_id

Line 1243: l_return := INV_LOT_API_PUB.validate_quantities

1239: IF (NVL (g_debug, -1) = gme_debug.g_log_statement) THEN
1240: gme_debug.put_line ( g_pkg_name||'.'||l_api_name||' l_primary_lot_qty='||l_primary_lot_qty);
1241: END IF;
1242:
1243: l_return := INV_LOT_API_PUB.validate_quantities
1244: (p_api_version => 1.0
1245: ,p_init_msg_list => FND_API.G_FALSE
1246: ,p_transaction_type_id => l_transaction_type_id
1247: ,p_organization_id => p_matl_dtl_rec.organization_id

Line 1266: 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);

1262:
1263: IF NOT l_return OR l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
1264: x_return_status := l_return_status;
1265: IF (NVL (g_debug, -1) = gme_debug.g_log_statement) THEN
1266: 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);
1267: gme_debug.put_line ( g_pkg_name||'.'||l_api_name||' l_msg_count='||l_msg_count);
1268: gme_debug.put_line ( g_pkg_name||'.'||l_api_name||' l_msg_data='||l_msg_data);
1269: END IF;
1270: RAISE error_val_qties;