DBA Data[Home] [Help]

APPS.FEM_COL_POPULATION_TMPLT_PKG dependencies on APP_EXCEPTION

Line 189: app_exception.raise_exception;

185: fetch c into recinfo;
186: if (c%notfound) then
187: close c;
188: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
189: app_exception.raise_exception;
190: end if;
191: close c;
192: if ( (recinfo.DATA_POPULATION_METHOD_CODE = X_DATA_POPULATION_METHOD_CODE)
193: AND ((recinfo.SOURCE_COLUMN_NAME = X_SOURCE_COLUMN_NAME)

Line 219: app_exception.raise_exception;

215: ) then
216: null;
217: else
218: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
219: app_exception.raise_exception;
220: end if;
221:
222: for tlinfo in c1 loop
223: if (tlinfo.BASELANG = 'Y') then

Line 230: app_exception.raise_exception;

226: ) then
227: null;
228: else
229: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
230: app_exception.raise_exception;
231: end if;
232: end if;
233: end loop;
234: return;