DBA Data[Home] [Help]

APPS.JTF_STORE_GRP dependencies on APP_EXCEPTION

Line 193: app_exception.raise_exception;

189: fetch c into recinfo;
190: if (c%notfound) then
191: close c;
192: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
193: app_exception.raise_exception;
194: end if;
195: close c;
196: if ( ((recinfo.SECURITY_GROUP_ID = X_SECURITY_GROUP_ID)
197: OR ((recinfo.SECURITY_GROUP_ID is null) AND (X_SECURITY_GROUP_ID is null)))

Line 235: app_exception.raise_exception;

231: ) then
232: null;
233: else
234: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
235: app_exception.raise_exception;
236: end if;
237:
238: for tlinfo in c1 loop
239: if (tlinfo.BASELANG = 'Y') then

Line 248: app_exception.raise_exception;

244: ) then
245: null;
246: else
247: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
248: app_exception.raise_exception;
249: end if;
250: end if;
251: end loop;
252: return;