DBA Data[Home] [Help]

APPS.GHR_PRE_INS dependencies on GHR_PA_REMARKS

Line 55: -- Insert the row into: ghr_pa_remarks

51: Begin
52: hr_utility.set_location('Entering:'||l_proc, 5);
53: p_rec.object_version_number := 1; -- Initialise the object version
54: --
55: -- Insert the row into: ghr_pa_remarks
56: --
57: insert into ghr_pa_remarks
58: ( pa_remark_id,
59: pa_request_id,

Line 57: insert into ghr_pa_remarks

53: p_rec.object_version_number := 1; -- Initialise the object version
54: --
55: -- Insert the row into: ghr_pa_remarks
56: --
57: insert into ghr_pa_remarks
58: ( pa_remark_id,
59: pa_request_id,
60: remark_id,
61: description,

Line 142: Cursor C_Sel1 is select ghr_pa_remarks_s.nextval from sys.dual;

138: Procedure pre_insert(p_rec in out NOCOPY ghr_pre_shd.g_rec_type) is
139: --
140: l_proc varchar2(72) := g_package||'pre_insert';
141: --
142: Cursor C_Sel1 is select ghr_pa_remarks_s.nextval from sys.dual;
143: --
144: Begin
145: hr_utility.set_location('Entering:'||l_proc, 5);
146: --

Line 214: ( p_module_name => 'GHR_PA_REMARKS'

210:
211: exception
212: when hr_api.cannot_find_prog_unit then
213: hr_api.cannot_find_prog_unit_error
214: ( p_module_name => 'GHR_PA_REMARKS'
215: ,p_hook_type => 'AI'
216: );
217: end;
218: -- End of API User Hook for post_insert.