DBA Data[Home] [Help]

APPS.IGS_FI_WAV_UTILS_002 dependencies on FND_LOG

Line 31: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN

27: Who When What
28: ***************************************************************** */
29: BEGIN
30:
31: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
32:
33: fnd_log.string( fnd_log.level_statement, 'igs.plsql.igs_fi_wav_utils_002.' || p_v_module, p_v_string);
34: END IF;
35:

Line 33: fnd_log.string( fnd_log.level_statement, 'igs.plsql.igs_fi_wav_utils_002.' || p_v_module, p_v_string);

29: BEGIN
30:
31: IF (fnd_log.level_statement >= fnd_log.g_current_runtime_level) THEN
32:
33: fnd_log.string( fnd_log.level_statement, 'igs.plsql.igs_fi_wav_utils_002.' || p_v_module, p_v_string);
34: END IF;
35:
36: END log_to_fnd;
37:

Line 1227: IF fnd_log.level_exception >= fnd_log.g_current_runtime_level THEN

1223: x_return_status := 'E';
1224: log_to_fnd(p_v_module => 'update_wav_assign_status.exception',
1225: p_v_string => 'sqlerrm ' || SQLERRM );
1226: -- Log the SQLERRM message and return to the calling Procedure
1227: IF fnd_log.level_exception >= fnd_log.g_current_runtime_level THEN
1228: fnd_log.string(fnd_log.level_exception,'igs.plsql.update_wav_assign_status.exception','sqlerrm ' || SQLERRM);
1229: END IF;
1230:
1231: END;

Line 1228: fnd_log.string(fnd_log.level_exception,'igs.plsql.update_wav_assign_status.exception','sqlerrm ' || SQLERRM);

1224: log_to_fnd(p_v_module => 'update_wav_assign_status.exception',
1225: p_v_string => 'sqlerrm ' || SQLERRM );
1226: -- Log the SQLERRM message and return to the calling Procedure
1227: IF fnd_log.level_exception >= fnd_log.g_current_runtime_level THEN
1228: fnd_log.string(fnd_log.level_exception,'igs.plsql.update_wav_assign_status.exception','sqlerrm ' || SQLERRM);
1229: END IF;
1230:
1231: END;
1232: