DBA Data[Home] [Help]

APPS.IGW_QUESTIONS_PKG dependencies on APP_EXCEPTION

Line 145: app_exception.raise_exception;

141: fetch c into recinfo;
142: if (c%notfound) then
143: close c;
144: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
145: app_exception.raise_exception;
146: end if;
147: close c;
148: if ( (recinfo.APPLIES_TO = X_APPLIES_TO)
149: AND (recinfo.EXPLANATION_FOR_YES_FLAG = X_EXPLANATION_FOR_YES_FLAG)

Line 160: app_exception.raise_exception;

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

Line 176: app_exception.raise_exception;

172: ) then
173: null;
174: else
175: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
176: app_exception.raise_exception;
177: end if;
178: end if;
179: end loop;
180: return;