DBA Data[Home] [Help]

APPS.GHR_CCL_INS dependencies on GHR_COMPL_CLAIMS

Line 88: -- Insert the row into: ghr_compl_claims

84: --
85: --
86: --
87: --
88: -- Insert the row into: ghr_compl_claims
89: --
90: insert into ghr_compl_claims
91: (compl_claim_id
92: ,complaint_id

Line 90: insert into ghr_compl_claims

86: --
87: --
88: -- Insert the row into: ghr_compl_claims
89: --
90: insert into ghr_compl_claims
91: (compl_claim_id
92: ,complaint_id
93: ,claim
94: ,incident_date

Line 182: Cursor C_Sel1 is select ghr_compl_claims_s.nextval from sys.dual;

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

Line 186: from ghr_compl_claims

182: Cursor C_Sel1 is select ghr_compl_claims_s.nextval from sys.dual;
183: --
184: Cursor C_Sel2 is
185: Select null
186: from ghr_compl_claims
187: where compl_claim_id =
188: ghr_ccl_ins.g_compl_claim_id_i;
189: --
190: l_proc varchar2(72) := g_package||'pre_insert';

Line 208: fnd_message.set_token('TABLE_NAME','ghr_compl_claims');

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

Line 295: (p_module_name => 'GHR_COMPL_CLAIMS'

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