DBA Data[Home] [Help]

APPS.PON_WF_UTL_PKG dependencies on FND_PROFILE

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

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

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

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