DBA Data[Home] [Help]

APPS.HR_ADI_LOB_INS dependencies on FND_LOBS

Line 87: -- Insert the row into: fnd_lobs

83: --
84: --
85: --
86: --
87: -- Insert the row into: fnd_lobs
88: --
89: insert into fnd_lobs
90: (file_id
91: ,file_name

Line 89: insert into fnd_lobs

85: --
86: --
87: -- Insert the row into: fnd_lobs
88: --
89: insert into fnd_lobs
90: (file_id
91: ,file_name
92: ,file_content_type
93: ,file_data

Line 175: Cursor C_Sel1 is select fnd_lobs_s.nextval from sys.dual;

171: Procedure pre_insert
172: (p_rec in out nocopy hr_adi_lob_shd.g_rec_type
173: ) is
174: --
175: Cursor C_Sel1 is select fnd_lobs_s.nextval from sys.dual;
176: --
177: Cursor C_Sel2 is
178: Select null
179: from fnd_lobs

Line 179: from fnd_lobs

175: Cursor C_Sel1 is select fnd_lobs_s.nextval from sys.dual;
176: --
177: Cursor C_Sel2 is
178: Select null
179: from fnd_lobs
180: where file_id =
181: hr_adi_lob_ins.g_file_id_i;
182: --
183: l_proc varchar2(72) := g_package||'pre_insert';

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

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','fnd_lobs');
202: fnd_message.raise_error;
203: End If;
204: Close C_Sel2;
205: --

Line 305: (p_module_name => 'FND_LOBS'

301: --
302: when hr_api.cannot_find_prog_unit then
303: --
304: hr_api.cannot_find_prog_unit_error
305: (p_module_name => 'FND_LOBS'
306: ,p_hook_type => 'AI');
307: --
308: end;
309: --