DBA Data[Home] [Help]

APPS.PON_LOCALE_PKG dependencies on FND_LOG

Line 314: if (fnd_log.level_statement >= fnd_log.g_current_runtime_level) then

310: v_status VARCHAR2(240) := null;
311: v_msg VARCHAR2(240) := null;
312: BEGIN
313:
314: if (fnd_log.level_statement >= fnd_log.g_current_runtime_level) then
315: fnd_log.string(
316: log_level => fnd_log.level_statement,
317: module =>'PON_LOCALE_PKG',
318: message =>'Entered the function with parameters -- ' ||

Line 315: fnd_log.string(

311: v_msg VARCHAR2(240) := null;
312: BEGIN
313:
314: if (fnd_log.level_statement >= fnd_log.g_current_runtime_level) then
315: fnd_log.string(
316: log_level => fnd_log.level_statement,
317: module =>'PON_LOCALE_PKG',
318: message =>'Entered the function with parameters -- ' ||
319: ' p_first_name : ' || p_first_name ||

Line 316: log_level => fnd_log.level_statement,

312: BEGIN
313:
314: if (fnd_log.level_statement >= fnd_log.g_current_runtime_level) then
315: fnd_log.string(
316: log_level => fnd_log.level_statement,
317: module =>'PON_LOCALE_PKG',
318: message =>'Entered the function with parameters -- ' ||
319: ' p_first_name : ' || p_first_name ||
320: ' p_last_name : ' || p_last_name ||

Line 340: if (fnd_log.level_statement >= fnd_log.g_current_runtime_level) then

336: v_display_name,
337: v_status,
338: v_msg);
339:
340: if (fnd_log.level_statement >= fnd_log.g_current_runtime_level) then
341: fnd_log.string(
342: log_level => fnd_log.level_statement,
343: module =>'PON_LOCALE_PKG',
344: message =>'v_status : ' || v_status || '; v_status : ' || v_status || ' ;Returning the value v_display_name : '||v_display_name);

Line 341: fnd_log.string(

337: v_status,
338: v_msg);
339:
340: if (fnd_log.level_statement >= fnd_log.g_current_runtime_level) then
341: fnd_log.string(
342: log_level => fnd_log.level_statement,
343: module =>'PON_LOCALE_PKG',
344: message =>'v_status : ' || v_status || '; v_status : ' || v_status || ' ;Returning the value v_display_name : '||v_display_name);
345: end if;

Line 342: log_level => fnd_log.level_statement,

338: v_msg);
339:
340: if (fnd_log.level_statement >= fnd_log.g_current_runtime_level) then
341: fnd_log.string(
342: log_level => fnd_log.level_statement,
343: module =>'PON_LOCALE_PKG',
344: message =>'v_status : ' || v_status || '; v_status : ' || v_status || ' ;Returning the value v_display_name : '||v_display_name);
345: end if;
346: RETURN v_display_name;