DBA Data[Home] [Help]

APPS.PER_PPC_INS dependencies on PER_PAY_PROPOSAL_COMPONENTS

Line 63: -- Insert the row into: per_pay_proposal_components

59: p_rec.object_version_number := 1; -- Initialise the object version
60: --
61: per_ppc_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: per_pay_proposal_components
64: --
65: insert into per_pay_proposal_components
66: ( component_id,
67: pay_proposal_id,

Line 65: insert into per_pay_proposal_components

61: per_ppc_shd.g_api_dml := true; -- Set the api dml status
62: --
63: -- Insert the row into: per_pay_proposal_components
64: --
65: insert into per_pay_proposal_components
66: ( component_id,
67: pay_proposal_id,
68: business_group_id,
69: approved,

Line 195: Cursor C_Sel1 is select per_pay_proposal_components_s.nextval from sys.dual;

191: Procedure pre_insert(p_rec in out nocopy per_ppc_shd.g_rec_type) is
192: --
193: l_proc varchar2(72) := g_package||'pre_insert';
194: --
195: Cursor C_Sel1 is select per_pay_proposal_components_s.nextval from sys.dual;
196: --
197: Begin
198: hr_utility.set_location('Entering:'||l_proc, 5);
199: --

Line 293: (p_module_name => 'PER_PAY_PROPOSAL_COMPONENTS'

289: );
290: exception
291: when hr_api.cannot_find_prog_unit then
292: hr_api.cannot_find_prog_unit_error
293: (p_module_name => 'PER_PAY_PROPOSAL_COMPONENTS'
294: ,p_hook_type => 'AI'
295: );
296: end;
297: -- End of API User Hook for post_insert.