DBA Data[Home] [Help]

APPS.INVPVDR4 dependencies on HR_ORGANIZATION_INFORMATION

Line 434: Table hr_organization_information is used instead of org_organization_defintions*/

430: BEGIN
431: /* Fix for bug 6804003 - Tax Codes are stored at O.U. level, so added
432: an inner subquery to fetch the operating_unit */
433: /*Bug 7437620 Modified the query to fetch the operating unit
434: Table hr_organization_information is used instead of org_organization_defintions*/
435:
436: SELECT 'valid_tax_code' into pur_dummy
437: FROM dual
438: WHERE EXISTS( SELECT NULL

Line 444: AND org_id IN (-99,(SELECT org_information3 FROM hr_organization_information

440: WHERE tax_type not in ('AWT','OFFSET')
441: AND enabled_flag = 'Y'
442: AND sysdate between start_date_active and nvl(end_date_active,sysdate)
443: AND lookup_code = cr.purchasing_tax_code
444: AND org_id IN (-99,(SELECT org_information3 FROM hr_organization_information
445: WHERE ( ORG_INFORMATION_CONTEXT || '') ='Accounting Information'
446: AND ORGANIZATION_ID=cr.organization_id)))
447: AND ROWNUM = 1;
448: EXCEPTION