DBA Data[Home] [Help]

APPS.FEM_COLUMN_REQUIREMNT_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.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
183: AND (recinfo.ACTIVITY_DIM_COMPONENT_FLAG = X_ACTIVITY_DIM_COMPONENT_FLAG)

Line 211: app_exception.raise_exception;

207: ) then
208: null;
209: else
210: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
211: app_exception.raise_exception;
212: end if;
213:
214: for tlinfo in c1 loop
215: if (tlinfo.BASELANG = 'Y') then

Line 222: app_exception.raise_exception;

218: ) then
219: null;
220: else
221: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
222: app_exception.raise_exception;
223: end if;
224: end if;
225: end loop;
226: return;