DBA Data[Home] [Help]

APPS.FEM_DIM_ATTRIBUTES_PKG dependencies on APP_EXCEPTION

Line 179: app_exception.raise_exception;

175: fetch c into recinfo;
176: if (c%notfound) then
177: close c;
178: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
179: app_exception.raise_exception;
180: end if;
181: close c;
182: if ( (recinfo.ATTRIBUTE_VARCHAR_LABEL = X_ATTRIBUTE_VARCHAR_LABEL)
183: AND (recinfo.DIMENSION_ID = X_DIMENSION_ID)

Line 205: app_exception.raise_exception;

201: ) then
202: null;
203: else
204: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
205: app_exception.raise_exception;
206: end if;
207:
208: for tlinfo in c1 loop
209: if (tlinfo.BASELANG = 'Y') then

Line 217: app_exception.raise_exception;

213: ) then
214: null;
215: else
216: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
217: app_exception.raise_exception;
218: end if;
219: end if;
220: end loop;
221: return;