DBA Data[Home] [Help]

APPS.CSI_UTILITY_GRP dependencies on CSI_GEN_UTILITY_PVT

Line 94: -- srramakr modified to look at csi_gen_utility_pvt since ib_active in current package

90:
91: PROCEDURE check_ib_active
92: IS
93: BEGIN
94: -- srramakr modified to look at csi_gen_utility_pvt since ib_active in current package
95: -- has Pragma restriction. (Cursor optimization)
96: IF NOT csi_gen_utility_pvt.IB_ACTIVE THEN
97: FND_MESSAGE.Set_Name('CSI', 'CSI_IB_NOT_ACTIVE');
98: FND_MSG_PUB.Add;

Line 96: IF NOT csi_gen_utility_pvt.IB_ACTIVE THEN

92: IS
93: BEGIN
94: -- srramakr modified to look at csi_gen_utility_pvt since ib_active in current package
95: -- has Pragma restriction. (Cursor optimization)
96: IF NOT csi_gen_utility_pvt.IB_ACTIVE THEN
97: FND_MESSAGE.Set_Name('CSI', 'CSI_IB_NOT_ACTIVE');
98: FND_MSG_PUB.Add;
99: RAISE FND_API.G_Exc_Error;
100: END IF;

Line 422: csi_gen_utility_pvt.populate_install_param_rec;

418:
419: BEGIN
420:
421: IF csi_datastructures_pub.g_install_param_rec.fetch_flag IS NULL THEN
422: csi_gen_utility_pvt.populate_install_param_rec;
423: END IF;
424:
425: IF csi_datastructures_pub.g_install_param_rec.freeze_date is NULL then
426: SELECT freeze_date

Line 1391: csi_gen_utility_pvt.populate_install_param_rec;

1387: -- Check for the Freeze Date Existance and If there is a data is that
1388: -- before the freeze date.
1389:
1390: IF csi_datastructures_pub.g_install_param_rec.fetch_flag IS NULL THEN
1391: csi_gen_utility_pvt.populate_install_param_rec;
1392: END IF;
1393:
1394: IF csi_datastructures_pub.g_install_param_rec.freeze_date is NULL then
1395: raise inv_purge_allowed;

Line 1496: csi_gen_utility_pvt.populate_install_param_rec;

1492: -- Check for the Freeze Date Existance and If there is a data is that
1493: -- before the freeze date.
1494:
1495: IF csi_datastructures_pub.g_install_param_rec.fetch_flag IS NULL THEN
1496: csi_gen_utility_pvt.populate_install_param_rec;
1497: END IF;
1498:
1499: IF csi_datastructures_pub.g_install_param_rec.freeze_date is NOT NULL then
1500: l_freeze_date := csi_datastructures_pub.g_install_param_rec.freeze_date;