DBA Data[Home] [Help]

APPS.FND_CLIENT_INFO dependencies on FND_PRODUCT_GROUPS

Line 79: -- Check FND_PRODUCT_GROUPS for multi-org/currency flags

75: -- value was defined.
76: if (org_id is NULL) or (org_id = -1) then
77: -- If not R12, then check if the instance is multiorg-enabled.
78: if fnd_release.major_version < 12 then
79: -- Check FND_PRODUCT_GROUPS for multi-org/currency flags
80: select nvl(multi_org_flag, 'N'), nvl(multi_currency_flag, 'N')
81: into is_multi_org, is_multi_currency
82: from fnd_product_groups;
83: -- If multiorg-enabled, raise an error since org_id should not be NULL.

Line 82: from fnd_product_groups;

78: if fnd_release.major_version < 12 then
79: -- Check FND_PRODUCT_GROUPS for multi-org/currency flags
80: select nvl(multi_org_flag, 'N'), nvl(multi_currency_flag, 'N')
81: into is_multi_org, is_multi_currency
82: from fnd_product_groups;
83: -- If multiorg-enabled, raise an error since org_id should not be NULL.
84: -- FND_GLOBAL.org_id should not be NULL if instance is multiorg-enabled.
85: if is_multi_org = 'Y' then
86: /* Bug 6637377: This fnd_profile.get_specific call is a LAST CHECK to