DBA Data[Home] [Help]

APPS.CR_RSRC_MST_PKG dependencies on APP_EXCEPTION

Line 159: app_exception.raise_exception;

155: fetch c into recinfo;
156: if (c%notfound) then
157: close c;
158: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
159: app_exception.raise_exception;
160: end if;
161: close c;
162: if ( ((recinfo.RESOURCE_CLASS = X_RESOURCE_CLASS)
163: OR ((recinfo.RESOURCE_CLASS is null) AND (X_RESOURCE_CLASS is null)))

Line 189: app_exception.raise_exception;

185: ) then
186: null;
187: else
188: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
189: app_exception.raise_exception;
190: end if;
191:
192: for tlinfo in c1 loop
193: if (tlinfo.BASELANG = 'Y') then

Line 199: app_exception.raise_exception;

195: ) then
196: null;
197: else
198: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
199: app_exception.raise_exception;
200: end if;
201: end if;
202: end loop;
203: return;