DBA Data[Home] [Help]

APPS.AHL_MC_ITEMGROUP_PVT dependencies on AHL_ITEM_GROUPS_PKG

Line 1262: AHL_ITEM_GROUPS_PKG.INSERT_ROW(

1258:
1259: l_last_updated_by := to_number(fnd_global.USER_ID);
1260: l_last_update_login := to_number(fnd_global.LOGIN_ID);
1261:
1262: AHL_ITEM_GROUPS_PKG.INSERT_ROW(
1263: X_ROWID => l_row_id,
1264: X_ITEM_GROUP_ID => l_item_grp_id,
1265: X_TYPE_CODE => p_x_item_grp_rec.type_code,
1266: X_STATUS_CODE => 'DRAFT',

Line 2268: AHL_ITEM_GROUPS_PKG.UPDATE_ROW(

2264: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,
2265: 'ahl.plsql.ahl_mc_itemgroup_pvt.Modify_Item_group', 'Before calling Item Group Table Handler');
2266: END IF;
2267:
2268: AHL_ITEM_GROUPS_PKG.UPDATE_ROW(
2269: X_ITEM_GROUP_ID => l_old_item_group_rec.item_group_id,
2270: X_TYPE_CODE => l_old_item_group_rec.type_code,
2271: X_STATUS_CODE => l_old_item_group_rec.status_code,
2272: X_SOURCE_ITEM_GROUP_ID => l_old_item_group_rec.source_item_group_id,

Line 2679: AHL_ITEM_GROUPS_PKG.DELETE_ROW(

2675: DELETE AHL_ITEM_ASSOCIATIONS_B
2676: WHERE item_group_id = p_item_group_rec.item_group_id;
2677:
2678: -- Delete ahl_item_groups
2679: AHL_ITEM_GROUPS_PKG.DELETE_ROW(
2680: X_ITEM_GROUP_ID => p_item_group_rec.item_group_id
2681: );
2682:
2683: ELSIF l_item_group_rec.status_code ='COMPLETE'

Line 3357: ahl_item_groups_pkg.insert_row(

3353: 'ahl.plsql.ahl_mc_itemgroup_pvt.Create_ItemGroup_Revision', 'Calling Table handler');
3354: END IF;
3355:
3356:
3357: ahl_item_groups_pkg.insert_row(
3358: x_rowid => l_rowid,
3359: x_item_group_id => l_item_group_id,
3360: x_type_code => l_itemgroup_det.type_code,
3361: x_status_code => 'DRAFT',

Line 4037: ahl_item_groups_pkg.update_row(

4033: -- Refer to old version of the package for details.
4034:
4035: ELSE
4036: -- Merge the IG with the previous complete version
4037: ahl_item_groups_pkg.update_row(
4038: x_item_group_id => l_itemgroup_det.Source_Item_group_id,
4039: x_type_code => l_itemgroup_det.type_code,
4040: x_status_code => 'COMPLETE',
4041: x_source_item_group_id => null,