DBA Data[Home] [Help]

APPS.PN_PROFILE_UPGRADE dependencies on HR_OPERATING_UNITS

Line 4: TYPE def_set_of_books_type IS TABLE OF hr_operating_units%ROWTYPE

1: PACKAGE BODY pn_profile_upgrade AS
2: /* $Header: PNXPROFB.pls 120.4 2006/04/03 10:13:28 appldev noship $ */
3:
4: TYPE def_set_of_books_type IS TABLE OF hr_operating_units%ROWTYPE
5: INDEX BY BINARY_INTEGER;
6:
7: TYPE profile_value_rec_type IS RECORD
8: (profile_option_name fnd_profile_options.profile_option_name%TYPE,

Line 149: FROM hr_operating_units hr,

145:
146: CURSOR def_set_of_books_cur IS
147: SELECT hr.organization_id org_id,
148: hr.set_of_books_id set_of_books_id
149: FROM hr_operating_units hr,
150: fnd_profile_options o,
151: fnd_profile_option_values v
152: WHERE v.profile_option_id = o.profile_option_id
153: AND o.profile_option_name = 'ORG_ID'