DBA Data[Home] [Help]

APPS.GMIVDX dependencies on GMICUOM

Line 1097: l_return_val := GMICUOM.uom_conversion

1093: IF GMIVDBL.ic_loct_inv_select(x_ic_loct_inv_row, x_ic_loct_inv_row) THEN
1094: --store quantities in opm item UOM and ODM item UOM
1095:
1096: p_lot_rec_tbl(j).opm_lot_status := x_ic_loct_inv_row.lot_status;
1097: l_return_val := GMICUOM.uom_conversion
1098: (
1099: x_ic_item_mst_row.item_id,
1100: nvl(x_ic_lots_mst_row.lot_id,0),
1101: p_lot_rec_tbl(j).quantity,

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

1103: x_ic_item_mst_row.item_um,
1104: 0
1105: );
1106: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1107: log_msg('After calling GMICUOM.uom_conversion to get opm_primary_quantity when transfer type is 0. return val is '||l_return_val);
1108: END IF;
1109: IF(l_return_val >= 0) THEN
1110: p_lot_rec_tbl(j).opm_primary_quantity := l_return_val;
1111: END IF;

Line 1174: l_return_val := GMICUOM.uom_conversion

1170: FND_MSG_PUB.Add;
1171: RAISE FND_API.G_EXC_ERROR;
1172: END IF;
1173:
1174: l_return_val := GMICUOM.uom_conversion
1175: (
1176: x_ic_item_mst_row.item_id,
1177: nvl(x_ic_lots_mst_row.lot_id,0),
1178: p_lot_rec_tbl(j).quantity,

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

1180: x_ic_item_mst_row.item_um2,
1181: 0
1182: );
1183: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1184: log_msg('After calling GMICUOM.uom_conversion to get quantity2 when transfer type is 0. return val is '||l_return_val);
1185: END IF;
1186:
1187: IF(l_return_val >= 0) THEN
1188: p_lot_rec_tbl(j).quantity2 := l_return_val;

Line 1339: l_return_val := GMICUOM.uom_conversion

1335: --Now lets calcualte the primary qty for OPM.
1336: --we needed the lot id before that since if the lot existed
1337: --conversion could have been lot specific.
1338:
1339: l_return_val := GMICUOM.uom_conversion
1340: (
1341: x_ic_item_mst_row.item_id,
1342: nvl(p_lot_rec_tbl(j).opm_lot_id,0),
1343: p_lot_rec_tbl(j).quantity,

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

1346: 0
1347: );
1348:
1349: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1350: log_msg('After calling GMICUOM.uom_conversion to get opm_primary_quantity when transfer type is 1. return val is '||l_return_val);
1351: END IF;
1352:
1353: IF(l_return_val >= 0) THEN
1354: p_lot_rec_tbl(j).opm_primary_quantity := l_return_val;

Line 1396: l_return_val := GMICUOM.uom_conversion

1392: FND_MSG_PUB.Add;
1393: RAISE FND_API.G_EXC_ERROR;
1394: END IF;
1395:
1396: l_return_val := GMICUOM.uom_conversion
1397: (
1398: x_ic_item_mst_row.item_id,
1399: nvl(p_lot_rec_tbl(j).opm_lot_id,0),
1400: p_lot_rec_tbl(j).quantity,

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

1403: 0
1404: );
1405:
1406: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1407: log_msg('After calling GMICUOM.uom_conversion to get quantity2 when transfer type is 1. return val is '||l_return_val);
1408: END IF;
1409:
1410: IF(l_return_val >= 0) THEN
1411: p_lot_rec_tbl(j).quantity2 := l_return_val;