DBA Data[Home] [Help]

APPS.CTO_DEACTIVATE_CONFIG_PK dependencies on INV_ITEM_GRP

Line 380: l_item_rec INV_ITEM_GRP.Item_rec_type;

376: tmp_item_arr tmp_item_tab;
377:
378: -- begin new variables for bugfix 3275577
379:
380: l_item_rec INV_ITEM_GRP.Item_rec_type;
381: x_item_rec INV_ITEM_GRP.Item_rec_type;
382: x_err_tbl INV_ITEM_GRP.Error_tbl_type;
383:
384: -- end new variables for bugfix 3275577

Line 381: x_item_rec INV_ITEM_GRP.Item_rec_type;

377:
378: -- begin new variables for bugfix 3275577
379:
380: l_item_rec INV_ITEM_GRP.Item_rec_type;
381: x_item_rec INV_ITEM_GRP.Item_rec_type;
382: x_err_tbl INV_ITEM_GRP.Error_tbl_type;
383:
384: -- end new variables for bugfix 3275577
385:

Line 382: x_err_tbl INV_ITEM_GRP.Error_tbl_type;

378: -- begin new variables for bugfix 3275577
379:
380: l_item_rec INV_ITEM_GRP.Item_rec_type;
381: x_item_rec INV_ITEM_GRP.Item_rec_type;
382: x_err_tbl INV_ITEM_GRP.Error_tbl_type;
383:
384: -- end new variables for bugfix 3275577
385:
386: /*************************************************/

Line 1117: INV_ITEM_GRP.Update_Item

1113: if (p_template_id is not null) then
1114: l_item_rec.INVENTORY_ITEM_ID := l_selected_inv_item_id;
1115: l_item_rec.ORGANIZATION_ID := l_org_id;
1116:
1117: INV_ITEM_GRP.Update_Item
1118: (
1119: p_Item_rec => l_item_rec
1120: , x_Item_rec => x_item_rec
1121: , x_return_status => x_return_status

Line 1127: WriteToLog ('INV_ITEM_GRP.Update_Item returned status '|| x_return_status ||'. Failed to apply template.');

1123: , p_Template_Id => p_template_id
1124: );
1125:
1126: if ( x_return_status <> FND_API.G_RET_STS_SUCCESS ) then
1127: WriteToLog ('INV_ITEM_GRP.Update_Item returned status '|| x_return_status ||'. Failed to apply template.');
1128: l_result_message := 'Failed to apply template.';
1129: l_next_step_flag := FND_API.G_TRUE;
1130:
1131: end if;