DBA Data[Home] [Help]

APPS.FND_PROFILE dependencies on FND_CORE_LOG

Line 61: corelog_is_enabled BOOLEAN := nvl(fnd_core_log.is_enabled, FALSE);

57:
58: /*
59: ** Global variable used to identify core logging is enabled or not.
60: */
61: corelog_is_enabled BOOLEAN := nvl(fnd_core_log.is_enabled, FALSE);
62:
63: /*
64: ** Global variable used to identify the profile that core logging tracks.
65: */

Line 66: profile_to_log VARCHAR2(80) := fnd_core_log.profile_to_log;

62:
63: /*
64: ** Global variable used to identify the profile that core logging tracks.
65: */
66: profile_to_log VARCHAR2(80) := fnd_core_log.profile_to_log;
67:
68: /*
69: ** Global variable that stores Applications Release Major Version
70: */

Line 95: ** wrapper to FND_CORE_LOG.WRITE_PROFILE with defaulting current

91: ========================================================================*/
92:
93: /*
94: ** corelog
95: ** wrapper to FND_CORE_LOG.WRITE_PROFILE with defaulting current
96: ** profile context.
97: */
98: PROCEDURE corelog
99: (

Line 111: fnd_core_log.write_profile(profileName,

107: serverId IN NUMBER DEFAULT profiles_server_id
108: ) IS
109: BEGIN
110: IF corelog_is_enabled THEN
111: fnd_core_log.write_profile(profileName,
112: profileValue,
113: currentAPI,
114: userId,
115: respId,

Line 126: ** wrapper to FND_CORE_LOG.PUT_LINE, uses profile option name for

122: END corelog;
123:
124: /*
125: ** corelog_using_name
126: ** wrapper to FND_CORE_LOG.PUT_LINE, uses profile option name for
127: ** filtering.
128: */
129: PROCEDURE corelog_using_name
130: (

Line 137: fnd_core_log.put_line(profileName || ':' || textLine || ':' ||

133: ) IS
134: BEGIN
135: IF corelog_is_enabled THEN
136: IF profile_to_log IS NULL THEN
137: fnd_core_log.put_line(profileName || ':' || textLine || ':' ||
138: to_char(dbms_utility.get_time - start_time,
139: '999,999,999.99') || ' ms.');
140: ELSE
141: IF profileName = profile_to_log THEN

Line 142: fnd_core_log.put_line(profileName || ':' || textLine || ':' ||

138: to_char(dbms_utility.get_time - start_time,
139: '999,999,999.99') || ' ms.');
140: ELSE
141: IF profileName = profile_to_log THEN
142: fnd_core_log.put_line(profileName || ':' || textLine || ':' ||
143: to_char(dbms_utility.get_time - start_time,
144: '999,999,999.99') || ' ms.');
145: END IF;
146: END IF;

Line 152: ** wrapper to FND_CORE_LOG.PUT_LINE, logs a textline and does not filter

148: END corelog_using_name;
149:
150: /*
151: ** corelog_line
152: ** wrapper to FND_CORE_LOG.PUT_LINE, logs a textline and does not filter
153: */
154: PROCEDURE corelog_line(textLine IN VARCHAR2) IS
155: BEGIN
156: IF corelog_is_enabled THEN

Line 157: fnd_core_log.put_line(textLine || ':' ||

153: */
154: PROCEDURE corelog_line(textLine IN VARCHAR2) IS
155: BEGIN
156: IF corelog_is_enabled THEN
157: fnd_core_log.put_line(textLine || ':' ||
158: to_char(dbms_utility.get_time - start_time,
159: '999,999,999.99') || ' ms.');
160: END IF;
161: END corelog_line;

Line 2016: fnd_core_log.write_profile_save(profNameUpper,

2012: levelValue2Actual NUMBER;
2013: userName VARCHAR2(100);
2014: BEGIN
2015:
2016: fnd_core_log.write_profile_save(profNameUpper,
2017: nvl(x_value, 'NO VALUE') ||
2018: ':Enter SAVE',
2019: x_level_name,
2020: x_level_value,

Line 2276: fnd_core_log.write_profile_save(profNameUpper,

2272: END IF;
2273: END IF;
2274:
2275: -- Log exit
2276: fnd_core_log.write_profile_save(profNameUpper,
2277: nvl(x_value, 'NO VALUE') ||
2278: ':Exit SAVE',
2279: x_level_name,
2280: x_level_value,