DBA Data[Home] [Help]

APPS.PON_WF_UTL_PKG dependencies on FND_PROFILE

Line 20: g_fnd_debug CONSTANT VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');

16: store the profile value for logging in a global constant variable
17: so that we avoid checking the profile every time
18: */
19:
20: g_fnd_debug CONSTANT VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');
21:
22: /* package name for logging */
23:
24: g_pkg_name CONSTANT VARCHAR2(30) := 'PON_WF_UTL_PVT';

Line 157: /* Function returning FND Profile value at Site Level */

153: /* High-level function that returns the internal buyer url
154: of the following form at: 'http://:/' */
155: FUNCTION get_base_internal_buyer_url RETURN VARCHAR2;
156:
157: /* Function returning FND Profile value at Site Level */
158: FUNCTION get_site_level_profile_value(p_profile_name varchar2) RETURN VARCHAR2;
159:
160:
161: END PON_WF_UTL_PKG;