DBA Data[Home] [Help]

APPS.PER_NAA_INS dependencies on PER_NL_ABSENCE_ACTIONS

Line 87: -- Insert the row into: per_nl_absence_actions

83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: per_naa_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: per_nl_absence_actions
88: --
89: insert into per_nl_absence_actions
90: (absence_action_id
91: ,absence_attendance_id

Line 89: insert into per_nl_absence_actions

85: per_naa_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: per_nl_absence_actions
88: --
89: insert into per_nl_absence_actions
90: (absence_action_id
91: ,absence_attendance_id
92: ,expected_date
93: ,description

Line 185: Cursor C_Sel1 is select per_nl_absence_actions_s.nextval from sys.dual;

181: Procedure pre_insert
182: (p_rec in out nocopy per_naa_shd.g_rec_type
183: ) is
184: --
185: Cursor C_Sel1 is select per_nl_absence_actions_s.nextval from sys.dual;
186: --
187: Cursor C_Sel2 is
188: Select null
189: from per_nl_absence_actions

Line 189: from per_nl_absence_actions

185: Cursor C_Sel1 is select per_nl_absence_actions_s.nextval from sys.dual;
186: --
187: Cursor C_Sel2 is
188: Select null
189: from per_nl_absence_actions
190: where absence_action_id =
191: per_naa_ins.g_absence_action_id_i;
192: --
193: l_proc varchar2(72) := g_package||'pre_insert';

Line 211: fnd_message.set_token('TABLE_NAME','per_nl_absence_actions');

207: --
208: -- The primary key values are already in use.
209: --
210: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
211: fnd_message.set_token('TABLE_NAME','per_nl_absence_actions');
212: fnd_message.raise_error;
213: End If;
214: Close C_Sel2;
215: --

Line 310: (p_module_name => 'PER_NL_ABSENCE_ACTIONS'

306: --
307: when hr_api.cannot_find_prog_unit then
308: --
309: hr_api.cannot_find_prog_unit_error
310: (p_module_name => 'PER_NL_ABSENCE_ACTIONS'
311: ,p_hook_type => 'AI');
312: --
313: end;
314: --