DBA Data[Home] [Help]

APPS.HXC_HDP_BUS dependencies on HXC_DEPOSIT_PROCESSES

Line 28: -- hxc_deposit_processes and PER_BUSINESS_GROUPS

24: --
25: -- Declare cursor
26: --
27: -- EDIT_HERE In the following cursor statement add join(s) between
28: -- hxc_deposit_processes and PER_BUSINESS_GROUPS
29: -- so that the security_group_id for
30: -- the current business group context can be derived.
31: -- Remove this comment when the edit has been completed.
32: cursor csr_sec_grp is

Line 35: , hxc_deposit_processes hdp

31: -- Remove this comment when the edit has been completed.
32: cursor csr_sec_grp is
33: select pbg.security_group_id
34: from per_business_groups pbg
35: , hxc_deposit_processes hdp
36: -- , EDIT_HERE table_name(s) 333
37: where hdp.deposit_process_id = p_deposit_process_id;
38: -- and pbg.business_group_id = EDIT_HERE 333.business_group_id;
39: --

Line 100: -- hxc_deposit_processes and PER_BUSINESS_GROUPS

96: --
97: -- Declare cursor
98: --
99: -- EDIT_HERE In the following cursor statement add join(s) between
100: -- hxc_deposit_processes and PER_BUSINESS_GROUPS
101: -- so that the legislation_code for
102: -- the current business group context can be derived.
103: -- Remove this comment when the edit has been completed.
104: cursor csr_leg_code is

Line 107: , hxc_deposit_processes hdp

103: -- Remove this comment when the edit has been completed.
104: cursor csr_leg_code is
105: select pbg.legislation_code
106: from per_business_groups pbg
107: , hxc_deposit_processes hdp
108: -- , EDIT_HERE table_name(s) 333
109: where hdp.deposit_process_id = p_deposit_process_id;
110: -- and pbg.business_group_id = EDIT_HERE 333.business_group_id;
111: --

Line 266: p_name in hxc_deposit_processes.name%TYPE,

262: -- {End Of Comments}
263: -- ----------------------------------------------------------------------------
264: Procedure chk_name
265: (
266: p_name in hxc_deposit_processes.name%TYPE,
267: p_object_version_number in hxc_deposit_processes.object_version_number%TYPE
268: ) IS
269: --
270: l_proc varchar2(72);

Line 267: p_object_version_number in hxc_deposit_processes.object_version_number%TYPE

263: -- ----------------------------------------------------------------------------
264: Procedure chk_name
265: (
266: p_name in hxc_deposit_processes.name%TYPE,
267: p_object_version_number in hxc_deposit_processes.object_version_number%TYPE
268: ) IS
269: --
270: l_proc varchar2(72);
271: --

Line 279: FROM hxc_deposit_processes hdp

275: SELECT 'error'
276: FROM sys.dual
277: WHERE EXISTS (
278: SELECT 'x'
279: FROM hxc_deposit_processes hdp
280: WHERE hdp.name = p_name
281: AND hdp.object_version_number <> NVL(p_object_version_number, -1) );
282: --
283: l_error varchar2(5) := NULL;