DBA Data[Home] [Help]

APPS.JG_GLPPOS_PKG dependencies on FND_PRODUCT_INSTALLATIONS

Line 34: from fnd_product_installations -- Check if European Localization(7002)

30: into v_install_flag
31: from dual
32: where exists
33: (select 'Y' --
34: from fnd_product_installations -- Check if European Localization(7002)
35: where application_id = 7002 -- is installed.
36: and db_status = 'I' --
37: and status = 'I' --
38: intersect

Line 40: from fnd_product_installations -- Check if Regional Localization(7003)

36: and db_status = 'I' --
37: and status = 'I' --
38: intersect
39: select 'Y' --
40: from fnd_product_installations -- Check if Regional Localization(7003)
41: where application_id = 7003 -- is installed.
42: and db_status = 'I' --
43: and status = 'I' ); --
44: