DBA Data[Home] [Help]

APPS.CAC_SR_PERIODS_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.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
163: AND ((recinfo.START_DATE_ACTIVE = X_START_DATE_ACTIVE)

Line 187: app_exception.raise_exception;

183: ) then
184: null;
185: else
186: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
187: app_exception.raise_exception;
188: end if;
189:
190: for tlinfo in c1 loop
191: 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;