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 2011: l_invalid_item_instance_tbl AHL_UTIL_UC_PKG.Instance_Tbl_Type2;

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

Line 2349: AHL_UTIL_UC_PKG.Check_Invalidate_Instance

2345: FND_LOG.string(FND_LOG.level_statement,l_full_name,'Validating '||l_index||
2346: ' items in the IG for remove.');
2347: END IF;
2348:
2349: AHL_UTIL_UC_PKG.Check_Invalidate_Instance
2350: (
2351: p_api_version => 1.0,
2352: p_init_msg_list => FND_API.G_FALSE,
2353: p_instance_tbl => l_invalid_item_instance_tbl,

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

3894: l_action varchar2(2);
3895:
3896: -- SATHAPLI::Bug# 4328454 fix
3897: -- The declared variables are not being used now as the call to
3898: -- AHL_UTIL_UC_PKG.Invalidate_Instance will not be made in this procedure.
3899: -- The validation of Item group updates for active UCs is now being done
3900: -- in procedure Modify_Item_group. Refer to old version of the package
3901: -- for details.
3902:

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

4000: IF (l_fork_or_merge = 0)
4001: THEN
4002:
4003: -- SATHAPLI::Bug# 4328454 fix
4004: -- Call to AHL_UTIL_UC_PKG.Invalidate_Instance will not be made in this
4005: -- procedure.The validation of Item group updates for active UCs is now
4006: -- being done in procedure Modify_Item_group. Refer to old version of
4007: -- the package for details.
4008:

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

4046: p_action => 'U'
4047: );
4048:
4049: -- SATHAPLI::Bug# 4328454 fix
4050: -- Code pertaining to call to AHL_UTIL_UC_PKG.Invalidate_Instance removed.
4051: -- Refer to old version of the package for details.
4052:
4053: ELSE
4054: -- SATHAPLI::Service Bulletin Effectivity, 23-Mar-2011, update affected SB rules, if any.

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

4088: x_last_updated_by => fnd_global.user_id,
4089: x_last_update_login => fnd_global.login_id);
4090:
4091: -- SATHAPLI::Bug# 4328454 fix
4092: -- Call to AHL_UTIL_UC_PKG.Invalidate_Instance will not be made in this
4093: -- procedure.The validation of Item group updates for active UCs is now
4094: -- being done in procedure Modify_Item_group. Refer to old version of
4095: -- the package for details.
4096:

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

4139: Delete from ahl_item_groups_b
4140: where item_group_id = l_itemgroup_det.item_group_id;
4141:
4142: -- SATHAPLI::Bug# 4328454 fix
4143: -- Code pertaining to call to AHL_UTIL_UC_PKG.Invalidate_Instance removed.
4144: -- Refer to old version of the package for details.
4145:
4146: END IF; -- Fork_Or_Merge
4147: End if;