DBA Data[Home] [Help]

APPS.HR_DE_GENERAL dependencies on HR_ORGANIZATION_UNITS

Line 267: (p_business_group_id in hr_organization_units.business_group_id%type)

263:
264: End get_social_insurance_globals;
265:
266: Function business_group_currency
267: (p_business_group_id in hr_organization_units.business_group_id%type)
268: return fnd_currencies.currency_code%type is
269:
270: v_currency_code fnd_currencies.currency_code%type;
271:

Line 273: (c_business_group_id hr_organization_units.business_group_id%type) is

269:
270: v_currency_code fnd_currencies.currency_code%type;
271:
272: cursor currency_code
273: (c_business_group_id hr_organization_units.business_group_id%type) is
274: select fcu.currency_code
275: from hr_organization_information hoi,
276: hr_organization_units hou,
277: fnd_currencies fcu

Line 276: hr_organization_units hou,

272: cursor currency_code
273: (c_business_group_id hr_organization_units.business_group_id%type) is
274: select fcu.currency_code
275: from hr_organization_information hoi,
276: hr_organization_units hou,
277: fnd_currencies fcu
278: where hou.business_group_id = c_business_group_id
279: and hou.organization_id = hoi.organization_id
280: and hoi.org_information_context = 'Business Group Information'

Line 311: hr_organization_units org

307: org.name
308: into tax_office_number,
309: tax_office_name
310: from hr_organization_information tax_info ,
311: hr_organization_units org
312: where tax_info.organization_id = org.organization_id
313: and tax_info.organization_id = p_organization_id
314: and TAX_INFO.org_information_context = 'DE_TAX_OFFICE_INFO';
315: