DBA Data[Home] [Help]

APPS.IGS_SS_ENR_DETAILS dependencies on IGS_RU_GEN_003

Line 3476: return igs_ru_gen_003.rulp_get_rule(l_n_seq_num);

3472: --get the rule text
3473: IF l_n_seq_num IS NULL THEN
3474: return get_none_desc;
3475: ELSE
3476: return igs_ru_gen_003.rulp_get_rule(l_n_seq_num);
3477: END IF;
3478:
3479: END get_rule_text;
3480:

Line 4972: l_rule_text := IGS_RU_GEN_003.rulp_get_rule(l_rule_seq_num);

4968: --check for rule at unit section level
4969: OPEN c_coreq_usec(p_uoo_id);
4970: FETCH c_coreq_usec INTO l_rule_seq_num;
4971: IF c_coreq_usec%FOUND THEN
4972: l_rule_text := IGS_RU_GEN_003.rulp_get_rule(l_rule_seq_num);
4973: END IF;
4974: CLOSE c_coreq_usec;
4975:
4976:

Line 4983: l_rule_text := IGS_RU_GEN_003.rulp_get_rule(l_rule_seq_num);

4979: IF l_rule_text IS NULL THEN
4980: OPEN c_coreq_unit(p_uoo_id);
4981: FETCH c_coreq_unit INTO l_rule_seq_num;
4982: IF c_coreq_unit%FOUND THEN
4983: l_rule_text := IGS_RU_GEN_003.rulp_get_rule(l_rule_seq_num);
4984: END IF;
4985: CLOSE c_coreq_unit;
4986: END IF;
4987: