DBA Data[Home] [Help]

APPS.EGO_USER_RULES_PKG dependencies on APP_EXCEPTION

Line 140: app_exception.raise_exception;

136: fetch c into recinfo;
137: if (c%notfound) then
138: close c;
139: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
140: app_exception.raise_exception;
141: end if;
142: close c;
143: if ( (recinfo.RULESET_ID = X_RULESET_ID)
144: AND (recinfo.SEQUENCE = X_SEQUENCE)

Line 159: app_exception.raise_exception;

155: ) then
156: null;
157: else
158: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
159: app_exception.raise_exception;
160: end if;
161:
162: for tlinfo in c1 loop
163: if (tlinfo.BASELANG = 'Y') then

Line 172: app_exception.raise_exception;

168: ) then
169: null;
170: else
171: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
172: app_exception.raise_exception;
173: end if;
174: end if;
175: end loop;
176: return;