DBA Data[Home] [Help]

APPS.OTA_CTU_INS dependencies on OTA_CATEGORY_USAGES

Line 87: -- Insert the row into: ota_category_usages

83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: --
86: --
87: -- Insert the row into: ota_category_usages
88: --
89:
90: insert into ota_category_usages
91: (category_usage_id

Line 90: insert into ota_category_usages

86: --
87: -- Insert the row into: ota_category_usages
88: --
89:
90: insert into ota_category_usages
91: (category_usage_id
92: ,business_group_id
93: ,category
94: ,object_version_number

Line 226: Cursor C_Sel1 is select ota_category_usages_s.nextval from sys.dual;

222: Procedure pre_insert
223: (p_rec in out nocopy ota_ctu_shd.g_rec_type
224: ) is
225: --
226: Cursor C_Sel1 is select ota_category_usages_s.nextval from sys.dual;
227: --
228: Cursor C_Sel2 is
229: Select null
230: from ota_category_usages

Line 230: from ota_category_usages

226: Cursor C_Sel1 is select ota_category_usages_s.nextval from sys.dual;
227: --
228: Cursor C_Sel2 is
229: Select null
230: from ota_category_usages
231: where category_usage_id =
232: ota_ctu_ins.g_category_usage_id_i;
233: --
234: l_proc varchar2(72) := g_package||'pre_insert';

Line 252: fnd_message.set_token('TABLE_NAME','ota_category_usages');

248: --
249: -- The primary key values are already in use.
250: --
251: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
252: fnd_message.set_token('TABLE_NAME','ota_category_usages');
253: fnd_message.raise_error;
254: End If;
255: Close C_Sel2;
256: --

Line 395: (p_module_name => 'OTA_CATEGORY_USAGES'

391: --
392: when hr_api.cannot_find_prog_unit then
393: --
394: hr_api.cannot_find_prog_unit_error
395: (p_module_name => 'OTA_CATEGORY_USAGES'
396: ,p_hook_type => 'AI');
397: --
398: end;
399: --