DBA Data[Home] [Help]

APPS.IEC_O_VALIDATION_RECOMM_PKG dependencies on APP_EXCEPTION

Line 107: app_exception.raise_exception;

103: fetch c into recinfo;
104: if (c%notfound) then
105: close c;
106: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
107: app_exception.raise_exception;
108: end if;
109: close c;
110: if recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER then
111: null;

Line 114: app_exception.raise_exception;

110: if recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER then
111: null;
112: else
113: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
114: app_exception.raise_exception;
115: end if;
116:
117: for tlinfo in c1 loop
118: if (tlinfo.BASELANG = 'Y') then

Line 125: app_exception.raise_exception;

121: ) then
122: null;
123: else
124: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
125: app_exception.raise_exception;
126: end if;
127: end if;
128: end loop;
129: return;