DBA Data[Home] [Help]

APPS.PER_SLS_INS dependencies on PER_SOLUTION_SETS

Line 90: -- Insert the row into: per_solution_sets

86: p_rec.object_version_number := 1; -- Initialise the object version
87: --
88: --
89: --
90: -- Insert the row into: per_solution_sets
91: --
92: insert into per_solution_sets
93: (solution_set_name
94: ,user_id

Line 92: insert into per_solution_sets

88: --
89: --
90: -- Insert the row into: per_solution_sets
91: --
92: insert into per_solution_sets
93: (solution_set_name
94: ,user_id
95: ,description
96: ,status

Line 178: from per_solution_sets

174: ) is
175: --
176: Cursor C_Sel2 is
177: Select null
178: from per_solution_sets
179: where solution_set_name = per_sls_ins.g_solution_set_name_i
180: and user_id = per_sls_ins.g_user_id_i;
181: --
182: l_proc varchar2(72) := g_package||'pre_insert';

Line 201: fnd_message.set_token('TABLE_NAME','per_solution_sets');

197: --
198: -- The primary key values are already in use.
199: --
200: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
201: fnd_message.set_token('TABLE_NAME','per_solution_sets');
202: fnd_message.raise_error;
203: End If;
204: Close C_Sel2;
205: --

Line 291: (p_module_name => 'PER_SOLUTION_SETS'

287: --
288: when hr_api.cannot_find_prog_unit then
289: --
290: hr_api.cannot_find_prog_unit_error
291: (p_module_name => 'PER_SOLUTION_SETS'
292: ,p_hook_type => 'AI');
293: --
294: end;
295: --