DBA Data[Home] [Help]

APPS.AHL_MC_ITEMGROUP_PVT dependencies on AHL_UTIL_UC_PKG

Line 214: l_invalid_item_instance_tbl AHL_UTIL_UC_PKG.Instance_Tbl_Type2;

210:
211: l_api_name CONSTANT VARCHAR2(30) := 'validate_IG_update';
212: l_full_name CONSTANT VARCHAR2(60) := 'ahl.plsql.'||G_PKG_NAME||'.'||l_api_name;
213:
214: l_invalid_item_instance_tbl AHL_UTIL_UC_PKG.Instance_Tbl_Type2;
215:
216: TYPE t_id IS TABLE OF NUMBER
217: INDEX BY BINARY_INTEGER;
218:

Line 294: AHL_UTIL_UC_PKG.Check_Invalidate_Instance

290: ' items in the IG for update.');
291: END IF;
292:
293: -- Call UC procedure to check if active Units are getting affected
294: AHL_UTIL_UC_PKG.Check_Invalidate_Instance
295: (
296: p_api_version => 1.0,
297: p_init_msg_list => FND_API.G_FALSE,
298: p_instance_tbl => l_invalid_item_instance_tbl,

Line 2007: l_invalid_item_instance_tbl AHL_UTIL_UC_PKG.Instance_Tbl_Type2;

2003: l_row_id VARCHAR2(30);
2004:
2005: -- SATHAPLI::Bug# 4328454 fix
2006: l_full_name CONSTANT VARCHAR(60) := 'ahl.plsql.'||G_PKG_NAME||'.'||l_api_name;
2007: l_invalid_item_instance_tbl AHL_UTIL_UC_PKG.Instance_Tbl_Type2;
2008: l_update_flag VARCHAR2(1) := 'N';
2009: l_index NUMBER := 1;
2010:
2011: BEGIN

Line 2339: AHL_UTIL_UC_PKG.Check_Invalidate_Instance

2335: FND_LOG.string(FND_LOG.level_statement,l_full_name,'Validating '||l_index||
2336: ' items in the IG for remove.');
2337: END IF;
2338:
2339: AHL_UTIL_UC_PKG.Check_Invalidate_Instance
2340: (
2341: p_api_version => 1.0,
2342: p_init_msg_list => FND_API.G_FALSE,
2343: p_instance_tbl => l_invalid_item_instance_tbl,

Line 3888: -- AHL_UTIL_UC_PKG.Invalidate_Instance will not be made in this procedure.

3884: l_action varchar2(2);
3885:
3886: -- SATHAPLI::Bug# 4328454 fix
3887: -- The declared variables are not being used now as the call to
3888: -- AHL_UTIL_UC_PKG.Invalidate_Instance will not be made in this procedure.
3889: -- The validation of Item group updates for active UCs is now being done
3890: -- in procedure Modify_Item_group. Refer to old version of the package
3891: -- for details.
3892:

Line 3994: -- Call to AHL_UTIL_UC_PKG.Invalidate_Instance will not be made in this

3990: IF (l_fork_or_merge = 0)
3991: THEN
3992:
3993: -- SATHAPLI::Bug# 4328454 fix
3994: -- Call to AHL_UTIL_UC_PKG.Invalidate_Instance will not be made in this
3995: -- procedure.The validation of Item group updates for active UCs is now
3996: -- being done in procedure Modify_Item_group. Refer to old version of
3997: -- the package for details.
3998:

Line 4032: -- Code pertaining to call to AHL_UTIL_UC_PKG.Invalidate_Instance removed.

4028: p_action => 'U'
4029: );
4030:
4031: -- SATHAPLI::Bug# 4328454 fix
4032: -- Code pertaining to call to AHL_UTIL_UC_PKG.Invalidate_Instance removed.
4033: -- Refer to old version of the package for details.
4034:
4035: ELSE
4036: -- Merge the IG with the previous complete version

Line 4066: -- Call to AHL_UTIL_UC_PKG.Invalidate_Instance will not be made in this

4062: x_last_updated_by => fnd_global.user_id,
4063: x_last_update_login => fnd_global.login_id);
4064:
4065: -- SATHAPLI::Bug# 4328454 fix
4066: -- Call to AHL_UTIL_UC_PKG.Invalidate_Instance will not be made in this
4067: -- procedure.The validation of Item group updates for active UCs is now
4068: -- being done in procedure Modify_Item_group. Refer to old version of
4069: -- the package for details.
4070:

Line 4117: -- Code pertaining to call to AHL_UTIL_UC_PKG.Invalidate_Instance removed.

4113: Delete from ahl_item_groups_b
4114: where item_group_id = l_itemgroup_det.item_group_id;
4115:
4116: -- SATHAPLI::Bug# 4328454 fix
4117: -- Code pertaining to call to AHL_UTIL_UC_PKG.Invalidate_Instance removed.
4118: -- Refer to old version of the package for details.
4119:
4120: END IF; -- Fork_Or_Merge
4121: End if;