DBA Data[Home] [Help]

APPS.PO_CONTERMS_UTL_GRP dependencies on FND_PROFILE

Line 6: NVL (FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');

2: /* $Header: POXGCTUS.pls 120.4 2005/09/01 16:45:39 dreddy noship $ */
3:
4: -- Read the profile option that enables/disables the debug log
5: g_fnd_debug CONSTANT VARCHAR2(1) :=
6: NVL (FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');
7:
8: -- Read profile option 'contracts enabled'
9: g_contracts_enabled CONSTANT VARCHAR2(1) :=
10: NVL (FND_PROFILE.VALUE('POC_ENABLED'),'N');

Line 10: NVL (FND_PROFILE.VALUE('POC_ENABLED'),'N');

6: NVL (FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');
7:
8: -- Read profile option 'contracts enabled'
9: g_contracts_enabled CONSTANT VARCHAR2(1) :=
10: NVL (FND_PROFILE.VALUE('POC_ENABLED'),'N');
11:
12: -- <11i10+ Contracts ER Auto Apply terms>
13: -- Read profile option 'Auto Apply Contracts template'
14: g_auto_apply_template CONSTANT VARCHAR2(1) :=

Line 15: NVL (FND_PROFILE.VALUE('PO_AUTO_APPLY_TEMPLATE'),'N');

11:
12: -- <11i10+ Contracts ER Auto Apply terms>
13: -- Read profile option 'Auto Apply Contracts template'
14: g_auto_apply_template CONSTANT VARCHAR2(1) :=
15: NVL (FND_PROFILE.VALUE('PO_AUTO_APPLY_TEMPLATE'),'N');
16:
17: -- declare categories table type based on contracts item category type dfn
18: SUBTYPE item_category_tbl_type IS OKC_TERMS_UTIL_GRP.category_tbl_type;
19: