DBA Data[Home] [Help]

APPS.PER_RI_CONFIG_UTILITIES dependencies on FND_LOOKUP_VALUES

Line 1711: from fnd_lookup_values

1707: ,p_lookup_code in varchar2)
1708: RETURN boolean IS
1709: cursor csr_org_class(cp_lookup_code in varchar2) IS
1710: select tag
1711: from fnd_lookup_values
1712: where lookup_type = 'ORG_CLASS'
1713: and lookup_code = cp_lookup_code
1714: and language = hr_api.userenv_lang;
1715:

Line 1716: l_tag fnd_lookup_values.tag%type;

1712: where lookup_type = 'ORG_CLASS'
1713: and lookup_code = cp_lookup_code
1714: and language = hr_api.userenv_lang;
1715:
1716: l_tag fnd_lookup_values.tag%type;
1717: l_enabled boolean default false;
1718: l_plus_tag varchar2(30);
1719:
1720: l_proc varchar2(72) := g_package || 'check_org_class_lookup_tag';