DBA Data[Home] [Help]

APPS.GMO_VBATCH_TASK_PVT dependencies on INV_LOT_API_PUB

Line 1247: l_char_tbl inv_lot_api_pub.char_tbl;

1243: ,x_message_data OUT NOCOPY VARCHAR2
1244: )
1245: IS
1246: l_lot_rec mtl_lot_numbers%ROWTYPE;
1247: l_char_tbl inv_lot_api_pub.char_tbl;
1248: l_number_tbl inv_lot_api_pub.number_tbl;
1249: l_date_tbl inv_lot_api_pub.date_tbl;
1250: BEGIN
1251: l_lot_rec.INVENTORY_ITEM_ID := p_lot_rec(1);

Line 1248: l_number_tbl inv_lot_api_pub.number_tbl;

1244: )
1245: IS
1246: l_lot_rec mtl_lot_numbers%ROWTYPE;
1247: l_char_tbl inv_lot_api_pub.char_tbl;
1248: l_number_tbl inv_lot_api_pub.number_tbl;
1249: l_date_tbl inv_lot_api_pub.date_tbl;
1250: BEGIN
1251: l_lot_rec.INVENTORY_ITEM_ID := p_lot_rec(1);
1252: l_lot_rec.ORGANIZATION_ID := p_lot_rec(2);

Line 1249: l_date_tbl inv_lot_api_pub.date_tbl;

1245: IS
1246: l_lot_rec mtl_lot_numbers%ROWTYPE;
1247: l_char_tbl inv_lot_api_pub.char_tbl;
1248: l_number_tbl inv_lot_api_pub.number_tbl;
1249: l_date_tbl inv_lot_api_pub.date_tbl;
1250: BEGIN
1251: l_lot_rec.INVENTORY_ITEM_ID := p_lot_rec(1);
1252: l_lot_rec.ORGANIZATION_ID := p_lot_rec(2);
1253: l_lot_rec.LOT_NUMBER := p_lot_rec(3);

Line 1263: inv_lot_api_pub.create_inv_lot

1259: l_lot_rec.CREATION_DATE := sysdate;
1260: l_lot_rec.CREATED_BY := FND_GLOBAL.USER_ID;
1261: l_lot_rec.LAST_UPDATE_LOGIN := FND_GLOBAL.LOGIN_ID;
1262: /*
1263: inv_lot_api_pub.create_inv_lot
1264: (
1265: p_lot_rec => l_lot_rec
1266: ,p_source => NULL
1267: ,p_api_version => 1.0

Line 1274: inv_lot_api_pub.create_inv_lot(

1270: ,p_validation_level => fnd_api.g_valid_level_full
1271: ,p_origin_txn_id => 1
1272: );
1273: */
1274: inv_lot_api_pub.create_inv_lot(
1275: x_return_status => x_return_status
1276: ,x_msg_count => x_message_count
1277: ,x_msg_data => x_message_data
1278: , p_inventory_item_id => l_lot_rec.INVENTORY_ITEM_ID

Line 1339: x_lot_number := INV_LOT_API_PUB.auto_gen_lot

1335: ,x_message_data OUT NOCOPY VARCHAR2
1336: )
1337: IS
1338: BEGIN
1339: x_lot_number := INV_LOT_API_PUB.auto_gen_lot
1340: (
1341: p_org_id => p_organization_id,
1342: p_inventory_item_id => p_inventory_item_id,
1343: p_lot_generation => NULL,