DBA Data[Home] [Help]

APPS.AHL_MC_ITEMGROUP_PVT dependencies on AHL_ITEM_GROUPS_PKG

Line 1264: AHL_ITEM_GROUPS_PKG.INSERT_ROW(

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

Line 2278: AHL_ITEM_GROUPS_PKG.UPDATE_ROW(

2274: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,
2275: 'ahl.plsql.ahl_mc_itemgroup_pvt.Modify_Item_group', 'Before calling Item Group Table Handler');
2276: END IF;
2277:
2278: AHL_ITEM_GROUPS_PKG.UPDATE_ROW(
2279: X_ITEM_GROUP_ID => l_old_item_group_rec.item_group_id,
2280: X_TYPE_CODE => l_old_item_group_rec.type_code,
2281: X_STATUS_CODE => l_old_item_group_rec.status_code,
2282: X_SOURCE_ITEM_GROUP_ID => l_old_item_group_rec.source_item_group_id,

Line 2689: AHL_ITEM_GROUPS_PKG.DELETE_ROW(

2685: DELETE AHL_ITEM_ASSOCIATIONS_B
2686: WHERE item_group_id = p_item_group_rec.item_group_id;
2687:
2688: -- Delete ahl_item_groups
2689: AHL_ITEM_GROUPS_PKG.DELETE_ROW(
2690: X_ITEM_GROUP_ID => p_item_group_rec.item_group_id
2691: );
2692:
2693: ELSIF l_item_group_rec.status_code ='COMPLETE'

Line 3367: ahl_item_groups_pkg.insert_row(

3363: 'ahl.plsql.ahl_mc_itemgroup_pvt.Create_ItemGroup_Revision', 'Calling Table handler');
3364: END IF;
3365:
3366:
3367: ahl_item_groups_pkg.insert_row(
3368: x_rowid => l_rowid,
3369: x_item_group_id => l_item_group_id,
3370: x_type_code => l_itemgroup_det.type_code,
3371: x_status_code => 'DRAFT',

Line 4063: ahl_item_groups_pkg.update_row(

4059: p_src_item_group_id => l_itemgroup_det.source_item_group_id
4060: );
4061:
4062: -- Merge the IG with the previous complete version
4063: ahl_item_groups_pkg.update_row(
4064: x_item_group_id => l_itemgroup_det.Source_Item_group_id,
4065: x_type_code => l_itemgroup_det.type_code,
4066: x_status_code => 'COMPLETE',
4067: x_source_item_group_id => null,