DBA Data[Home] [Help]

APPS.BEN_CTY_INS dependencies on BEN_COMPTNCY_RT_F

Line 91: from ben_comptncy_rt_f t

87: --
88: Cursor C_Sel1 Is
89: select t.created_by,
90: t.creation_date
91: from ben_comptncy_rt_f t
92: where t.comptncy_rt_id = p_rec.comptncy_rt_id
93: and t.effective_start_date =
94: ben_cty_shd.g_old_rec.effective_start_date
95: and t.effective_end_date = (p_validation_start_date - 1);

Line 98: l_created_by ben_comptncy_rt_f.created_by%TYPE;

94: ben_cty_shd.g_old_rec.effective_start_date
95: and t.effective_end_date = (p_validation_start_date - 1);
96: --
97: l_proc varchar2(72) := g_package||'dt_insert_dml';
98: l_created_by ben_comptncy_rt_f.created_by%TYPE;
99: l_creation_date ben_comptncy_rt_f.creation_date%TYPE;
100: l_last_update_date ben_comptncy_rt_f.last_update_date%TYPE;
101: l_last_updated_by ben_comptncy_rt_f.last_updated_by%TYPE;
102: l_last_update_login ben_comptncy_rt_f.last_update_login%TYPE;

Line 99: l_creation_date ben_comptncy_rt_f.creation_date%TYPE;

95: and t.effective_end_date = (p_validation_start_date - 1);
96: --
97: l_proc varchar2(72) := g_package||'dt_insert_dml';
98: l_created_by ben_comptncy_rt_f.created_by%TYPE;
99: l_creation_date ben_comptncy_rt_f.creation_date%TYPE;
100: l_last_update_date ben_comptncy_rt_f.last_update_date%TYPE;
101: l_last_updated_by ben_comptncy_rt_f.last_updated_by%TYPE;
102: l_last_update_login ben_comptncy_rt_f.last_update_login%TYPE;
103: --

Line 100: l_last_update_date ben_comptncy_rt_f.last_update_date%TYPE;

96: --
97: l_proc varchar2(72) := g_package||'dt_insert_dml';
98: l_created_by ben_comptncy_rt_f.created_by%TYPE;
99: l_creation_date ben_comptncy_rt_f.creation_date%TYPE;
100: l_last_update_date ben_comptncy_rt_f.last_update_date%TYPE;
101: l_last_updated_by ben_comptncy_rt_f.last_updated_by%TYPE;
102: l_last_update_login ben_comptncy_rt_f.last_update_login%TYPE;
103: --
104: Begin

Line 101: l_last_updated_by ben_comptncy_rt_f.last_updated_by%TYPE;

97: l_proc varchar2(72) := g_package||'dt_insert_dml';
98: l_created_by ben_comptncy_rt_f.created_by%TYPE;
99: l_creation_date ben_comptncy_rt_f.creation_date%TYPE;
100: l_last_update_date ben_comptncy_rt_f.last_update_date%TYPE;
101: l_last_updated_by ben_comptncy_rt_f.last_updated_by%TYPE;
102: l_last_update_login ben_comptncy_rt_f.last_update_login%TYPE;
103: --
104: Begin
105: hr_utility.set_location('Entering:'||l_proc, 5);

Line 102: l_last_update_login ben_comptncy_rt_f.last_update_login%TYPE;

98: l_created_by ben_comptncy_rt_f.created_by%TYPE;
99: l_creation_date ben_comptncy_rt_f.creation_date%TYPE;
100: l_last_update_date ben_comptncy_rt_f.last_update_date%TYPE;
101: l_last_updated_by ben_comptncy_rt_f.last_updated_by%TYPE;
102: l_last_update_login ben_comptncy_rt_f.last_update_login%TYPE;
103: --
104: Begin
105: hr_utility.set_location('Entering:'||l_proc, 5);
106: --

Line 111: (p_base_table_name => 'ben_comptncy_rt_f'

107: -- Get the object version number for the insert
108: --
109: p_rec.object_version_number :=
110: dt_api.get_object_version_number
111: (p_base_table_name => 'ben_comptncy_rt_f'
112: ,p_base_key_column => 'comptncy_rt_id'
113: ,p_base_key_value => p_rec.comptncy_rt_id
114: );
115: --

Line 154: -- Insert the row into: ben_comptncy_rt_f

150: End If;
151: --
152: --
153: --
154: -- Insert the row into: ben_comptncy_rt_f
155: --
156: insert into ben_comptncy_rt_f
157: (comptncy_rt_id
158: ,effective_start_date

Line 156: insert into ben_comptncy_rt_f

152: --
153: --
154: -- Insert the row into: ben_comptncy_rt_f
155: --
156: insert into ben_comptncy_rt_f
157: (comptncy_rt_id
158: ,effective_start_date
159: ,effective_end_date
160: ,competence_id

Line 346: Cursor C_Sel1 is select ben_comptncy_rt_f_s.nextval from sys.dual;

342: ,p_validation_start_date in date
343: ,p_validation_end_date in date
344: ) is
345: --
346: Cursor C_Sel1 is select ben_comptncy_rt_f_s.nextval from sys.dual;
347: --
348: Cursor C_Sel2 is
349: Select null
350: from ben_comptncy_rt_f

Line 350: from ben_comptncy_rt_f

346: Cursor C_Sel1 is select ben_comptncy_rt_f_s.nextval from sys.dual;
347: --
348: Cursor C_Sel2 is
349: Select null
350: from ben_comptncy_rt_f
351: where comptncy_rt_id =
352: ben_cty_ins.g_comptncy_rt_id_i;
353: --
354: l_proc varchar2(72) := g_package||'pre_insert';

Line 372: fnd_message.set_token('TABLE_NAME','ben_comptncy_rt_f');

368: --
369: -- The primary key values are already in use.
370: --
371: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
372: fnd_message.set_token('TABLE_NAME','ben_comptncy_rt_f');
373: fnd_message.raise_error;
374: End If;
375: Close C_Sel2;
376: --

Line 540: (p_module_name => 'BEN_COMPTNCY_RT_F'

536: --
537: when hr_api.cannot_find_prog_unit then
538: --
539: hr_api.cannot_find_prog_unit_error
540: (p_module_name => 'BEN_COMPTNCY_RT_F'
541: ,p_hook_type => 'AI');
542: --
543: end;
544: --

Line 605: ,p_base_table_name => 'ben_comptncy_rt_f'

601: --
602: dt_api.validate_dt_mode
603: (p_effective_date => p_effective_date
604: ,p_datetrack_mode => p_datetrack_mode
605: ,p_base_table_name => 'ben_comptncy_rt_f'
606: ,p_base_key_column => 'comptncy_rt_id'
607: ,p_base_key_value => p_rec.comptncy_rt_id
608: ,p_parent_table_name1 => 'ben_vrbl_rt_prfl_f'
609: ,p_parent_key_column1 => 'vrbl_rt_prfl_id'