DBA Data[Home] [Help]

APPS.GHR_CAD_INS dependencies on GHR_COMPL_ADRS

Line 87: -- Insert the row into: ghr_compl_adrs

83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: --
86: --
87: -- Insert the row into: ghr_compl_adrs
88: --
89: insert into ghr_compl_adrs
90: (compl_adr_id
91: ,complaint_id

Line 89: insert into ghr_compl_adrs

85: --
86: --
87: -- Insert the row into: ghr_compl_adrs
88: --
89: insert into ghr_compl_adrs
90: (compl_adr_id
91: ,complaint_id
92: ,stage
93: ,start_date

Line 181: Cursor C_Sel1 is select ghr_compl_adrs_s.nextval from sys.dual;

177: Procedure pre_insert
178: (p_rec in out nocopy ghr_cad_shd.g_rec_type
179: ) is
180: --
181: Cursor C_Sel1 is select ghr_compl_adrs_s.nextval from sys.dual;
182: --
183: Cursor C_Sel2 is
184: Select null
185: from ghr_compl_adrs

Line 185: from ghr_compl_adrs

181: Cursor C_Sel1 is select ghr_compl_adrs_s.nextval from sys.dual;
182: --
183: Cursor C_Sel2 is
184: Select null
185: from ghr_compl_adrs
186: where compl_adr_id =
187: ghr_cad_ins.g_compl_adr_id_i;
188: --
189: l_proc varchar2(72) := g_package||'pre_insert';

Line 207: fnd_message.set_token('TABLE_NAME','ghr_compl_adrs');

203: --
204: -- The primary key values are already in use.
205: --
206: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
207: fnd_message.set_token('TABLE_NAME','ghr_compl_adrs');
208: fnd_message.raise_error;
209: End If;
210: Close C_Sel2;
211: --

Line 296: (p_module_name => 'GHR_COMPL_ADRS'

292: --
293: when hr_api.cannot_find_prog_unit then
294: --
295: hr_api.cannot_find_prog_unit_error
296: (p_module_name => 'GHR_COMPL_ADRS'
297: ,p_hook_type => 'AI');
298: --
299: end;
300: