DBA Data[Home] [Help]

APPS.IGS_RU_GEN_001 dependencies on FND_LOG

Line 24: for PREREQ, COREQ rules). Added fnd_logging when rules errors out with an exception. bug#5154191

20: Know limitations, enhancements or remarks
21: Change History
22: Who When What
23: stutta 11-Apr-2006 Changed expand_uoo to create one pl/sql table record for a unit, version instance(only
24: for PREREQ, COREQ rules). Added fnd_logging when rules errors out with an exception. bug#5154191
25: bdeviset 13-DEC-2005 Modified the cursor in function student to exclude the unit which the prereq or coreq is set if it not null.
26: Bug# 4304688
27: bdeviset 05-OCT-2005 Modified functions adv_attribute,adv_relative_grade,sua_credit_points,asul_attribute
28: advanced_standing and advanced_stadning_unit_level for bug# 4480311

Line 56: g_debug_level CONSTANT NUMBER := FND_LOG.G_CURRENT_RUNTIME_LEVEL;

52: Rulp_Val_Senna as per the requirement of Bug# : 1899513.
53: (reverse chronological order - newest change first)
54: ***************************************************************/
55:
56: g_debug_level CONSTANT NUMBER := FND_LOG.G_CURRENT_RUNTIME_LEVEL;
57:
58: Function Rulp_Val_Senna(
59: p_rule_call_name IN VARCHAR2,
60: p_person_id IN NUMBER,

Line 6676: IF (FND_LOG.LEVEL_UNEXPECTED >= g_debug_level ) THEN

6672: RETURN v_turing_return;
6673: EXCEPTION
6674: WHEN rule_error THEN
6675: p_message := 'Rule Error while processing rule ';
6676: IF (FND_LOG.LEVEL_UNEXPECTED >= g_debug_level ) THEN
6677: FND_LOG.STRING(fnd_log.level_unexpected, 'igs.patch.115.sql.rules.error :',p_message||':'||SQLERRM);
6678: END IF;
6679: RETURN NULL;
6680: WHEN OTHERS THEN

Line 6677: FND_LOG.STRING(fnd_log.level_unexpected, 'igs.patch.115.sql.rules.error :',p_message||':'||SQLERRM);

6673: EXCEPTION
6674: WHEN rule_error THEN
6675: p_message := 'Rule Error while processing rule ';
6676: IF (FND_LOG.LEVEL_UNEXPECTED >= g_debug_level ) THEN
6677: FND_LOG.STRING(fnd_log.level_unexpected, 'igs.patch.115.sql.rules.error :',p_message||':'||SQLERRM);
6678: END IF;
6679: RETURN NULL;
6680: WHEN OTHERS THEN
6681: log_error('main',

Line 6684: IF (FND_LOG.LEVEL_UNEXPECTED >= g_debug_level ) THEN

6680: WHEN OTHERS THEN
6681: log_error('main',
6682: 'Error while processing rule');
6683: p_message := 'Error while processing rule ';
6684: IF (FND_LOG.LEVEL_UNEXPECTED >= g_debug_level ) THEN
6685: FND_LOG.STRING(fnd_log.level_unexpected, 'igs.patch.115.sql.rules.error :',p_message||':'||SQLERRM);
6686: END IF;
6687: RETURN NULL;
6688: END;

Line 6685: FND_LOG.STRING(fnd_log.level_unexpected, 'igs.patch.115.sql.rules.error :',p_message||':'||SQLERRM);

6681: log_error('main',
6682: 'Error while processing rule');
6683: p_message := 'Error while processing rule ';
6684: IF (FND_LOG.LEVEL_UNEXPECTED >= g_debug_level ) THEN
6685: FND_LOG.STRING(fnd_log.level_unexpected, 'igs.patch.115.sql.rules.error :',p_message||':'||SQLERRM);
6686: END IF;
6687: RETURN NULL;
6688: END;
6689: