DBA Data[Home] [Help]

APPS.OTA_TPS_SHD dependencies on OTA_TRAINING_PLANS

Line 32: If (p_constraint_name = 'OTA_TRAINING_PLANS_PK') Then

28: l_proc varchar2(72) := g_package||'constraint_error';
29: --
30: Begin
31: --
32: If (p_constraint_name = 'OTA_TRAINING_PLANS_PK') Then
33: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
34: fnd_message.set_token('PROCEDURE', l_proc);
35: fnd_message.set_token('STEP','5');
36: fnd_message.raise_error;

Line 37: ElsIf (p_constraint_name = 'OTA_TRAINING_PLANS_UK3') Then

33: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
34: fnd_message.set_token('PROCEDURE', l_proc);
35: fnd_message.set_token('STEP','5');
36: fnd_message.raise_error;
37: ElsIf (p_constraint_name = 'OTA_TRAINING_PLANS_UK3') Then
38: fnd_message.set_name('OTA', 'OTA_13867_TPS_DUPLICATE_TP');
39: fnd_message.set_token('PROCEDURE', l_proc);
40: fnd_message.set_token('STEP','30');
41: fnd_message.raise_error;

Line 55: (p_training_plan_id in ota_training_plans.training_plan_id%TYPE

51: -- ----------------------------------------------------------------------------
52: -- |-----------------------------< api_updating >-----------------------------|
53: -- ----------------------------------------------------------------------------
54: Function api_updating
55: (p_training_plan_id in ota_training_plans.training_plan_id%TYPE
56: ,p_object_version_number in ota_training_plans.object_version_number%TYPE
57: )
58: Return Boolean Is
59: --

Line 56: ,p_object_version_number in ota_training_plans.object_version_number%TYPE

52: -- |-----------------------------< api_updating >-----------------------------|
53: -- ----------------------------------------------------------------------------
54: Function api_updating
55: (p_training_plan_id in ota_training_plans.training_plan_id%TYPE
56: ,p_object_version_number in ota_training_plans.object_version_number%TYPE
57: )
58: Return Boolean Is
59: --
60: --

Line 114: from ota_training_plans

110: ,additional_member_flag
111: ,learning_path_id
112: -- Modified for Bug#3479186
113: ,contact_id
114: from ota_training_plans
115: where training_plan_id = p_training_plan_id;
116: --
117: l_fct_ret boolean;
118: --

Line 227: from ota_training_plans

223: ,creator_person_id
224: ,additional_member_flag
225: ,learning_path_id
226: ,contact_id
227: from ota_training_plans
228: where training_plan_id = p_training_plan_id
229: for update nowait;
230: --
231: l_proc varchar2(72) := g_package||'lck';

Line 270: fnd_message.set_token('TABLE_NAME', 'ota_training_plans');

266: -- The object is locked therefore we need to supply a meaningful
267: -- error message.
268: --
269: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
270: fnd_message.set_token('TABLE_NAME', 'ota_training_plans');
271: fnd_message.raise_error;
272: End lck;
273: --
274: -- ----------------------------------------------------------------------------