DBA Data[Home] [Help]

APPS.ECE_RULES_PKG dependencies on ECE_RULE_VIOLATIONS_S

Line 81: select ece_rule_violations_s.nextval into l_seq from dual;

77: xProgress := 'ECERULEB-10-1020';
78: -- insert new violation information into ece_rule_violations table.
79:
80: l_cur_index := g_rule_violation_tbl.count + 1;
81: select ece_rule_violations_s.nextval into l_seq from dual;
82:
83: if SQL%NOTFOUND then
84: ec_debug.pl (0, 'EC', 'ECE_GET_NEXT_SEQ_FAILED',
85: 'PROGRESS_LEVEL', xProgress,

Line 86: 'SEQ', 'ECE_RULE_VIOLATIONS_S');

82:
83: if SQL%NOTFOUND then
84: ec_debug.pl (0, 'EC', 'ECE_GET_NEXT_SEQ_FAILED',
85: 'PROGRESS_LEVEL', xProgress,
86: 'SEQ', 'ECE_RULE_VIOLATIONS_S');
87: end if;
88:
89: g_rule_violation_tbl(l_cur_index).violation_id := l_seq;
90: g_rule_violation_tbl(l_cur_index).document_id := p_document_id;