DBA Data[Home] [Help]

APPS.AMS_LIST_SRC_TYPES_NEW_PKG dependencies on APP_EXCEPTION

Line 186: app_exception.raise_exception;

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

Line 224: app_exception.raise_exception;

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

Line 236: app_exception.raise_exception;

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