DBA Data[Home] [Help]

APPS.AMS_APPROVAL_DETAILS_PKG dependencies on APP_EXCEPTION

Line 188: app_exception.raise_exception;

184: fetch c into recinfo;
185: if (c%notfound) then
186: close c;
187: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
188: app_exception.raise_exception;
189: end if;
190: close c;
191: if ( ((recinfo.START_DATE_ACTIVE = X_START_DATE_ACTIVE)
192: OR ((recinfo.START_DATE_ACTIVE is null) AND (X_START_DATE_ACTIVE is null)))

Line 225: app_exception.raise_exception;

221: ) then
222: null;
223: else
224: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
225: app_exception.raise_exception;
226: end if;
227:
228: for tlinfo in c1 loop
229: if (tlinfo.BASELANG = 'Y') then

Line 237: app_exception.raise_exception;

233: ) then
234: null;
235: else
236: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
237: app_exception.raise_exception;
238: end if;
239: end if;
240: end loop;
241: return;