DBA Data[Home] [Help]

APPS.GMIVDX dependencies on GMICUOM

Line 1090: l_return_val := GMICUOM.uom_conversion

1086: IF GMIVDBL.ic_loct_inv_select(x_ic_loct_inv_row, x_ic_loct_inv_row) THEN
1087: --store quantities in opm item UOM and ODM item UOM
1088:
1089: p_lot_rec_tbl(j).opm_lot_status := x_ic_loct_inv_row.lot_status;
1090: l_return_val := GMICUOM.uom_conversion
1091: (
1092: x_ic_item_mst_row.item_id,
1093: nvl(x_ic_lots_mst_row.lot_id,0),
1094: p_lot_rec_tbl(j).quantity,

Line 1100: log_msg('After calling GMICUOM.uom_conversion to get opm_primary_quantity when transfer type is 0. return val is '||l_return_val);

1096: x_ic_item_mst_row.item_um,
1097: 0
1098: );
1099: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1100: log_msg('After calling GMICUOM.uom_conversion to get opm_primary_quantity when transfer type is 0. return val is '||l_return_val);
1101: END IF;
1102: IF(l_return_val >= 0) THEN
1103: p_lot_rec_tbl(j).opm_primary_quantity := l_return_val;
1104: END IF;

Line 1167: l_return_val := GMICUOM.uom_conversion

1163: FND_MSG_PUB.Add;
1164: RAISE FND_API.G_EXC_ERROR;
1165: END IF;
1166:
1167: l_return_val := GMICUOM.uom_conversion
1168: (
1169: x_ic_item_mst_row.item_id,
1170: nvl(x_ic_lots_mst_row.lot_id,0),
1171: p_lot_rec_tbl(j).quantity,

Line 1177: log_msg('After calling GMICUOM.uom_conversion to get quantity2 when transfer type is 0. return val is '||l_return_val);

1173: x_ic_item_mst_row.item_um2,
1174: 0
1175: );
1176: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1177: log_msg('After calling GMICUOM.uom_conversion to get quantity2 when transfer type is 0. return val is '||l_return_val);
1178: END IF;
1179:
1180: IF(l_return_val >= 0) THEN
1181: p_lot_rec_tbl(j).quantity2 := l_return_val;

Line 1332: l_return_val := GMICUOM.uom_conversion

1328: --Now lets calcualte the primary qty for OPM.
1329: --we needed the lot id before that since if the lot existed
1330: --conversion could have been lot specific.
1331:
1332: l_return_val := GMICUOM.uom_conversion
1333: (
1334: x_ic_item_mst_row.item_id,
1335: nvl(p_lot_rec_tbl(j).opm_lot_id,0),
1336: p_lot_rec_tbl(j).quantity,

Line 1343: log_msg('After calling GMICUOM.uom_conversion to get opm_primary_quantity when transfer type is 1. return val is '||l_return_val);

1339: 0
1340: );
1341:
1342: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1343: log_msg('After calling GMICUOM.uom_conversion to get opm_primary_quantity when transfer type is 1. return val is '||l_return_val);
1344: END IF;
1345:
1346: IF(l_return_val >= 0) THEN
1347: p_lot_rec_tbl(j).opm_primary_quantity := l_return_val;

Line 1389: l_return_val := GMICUOM.uom_conversion

1385: FND_MSG_PUB.Add;
1386: RAISE FND_API.G_EXC_ERROR;
1387: END IF;
1388:
1389: l_return_val := GMICUOM.uom_conversion
1390: (
1391: x_ic_item_mst_row.item_id,
1392: nvl(p_lot_rec_tbl(j).opm_lot_id,0),
1393: p_lot_rec_tbl(j).quantity,

Line 1400: log_msg('After calling GMICUOM.uom_conversion to get quantity2 when transfer type is 1. return val is '||l_return_val);

1396: 0
1397: );
1398:
1399: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1400: log_msg('After calling GMICUOM.uom_conversion to get quantity2 when transfer type is 1. return val is '||l_return_val);
1401: END IF;
1402:
1403: IF(l_return_val >= 0) THEN
1404: p_lot_rec_tbl(j).quantity2 := l_return_val;