DBA Data[Home] [Help]

APPS.AMV_I_PERSPECTIVES_PKG dependencies on APP_EXCEPTION

Line 164: app_exception.raise_exception;

160: fetch c into recinfo;
161: if (c%notfound) then
162: close c;
163: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
164: app_exception.raise_exception;
165: end if;
166: close c;
167: if ( recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER) then
168: null;

Line 171: app_exception.raise_exception;

167: if ( recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER) then
168: null;
169: else
170: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
171: app_exception.raise_exception;
172: end if;
173: for tlinfo in c1 loop
174: if (tlinfo.BASELANG = 'Y') then
175: if ( (tlinfo.PERSPECTIVE_NAME = X_PERSPECTIVE_NAME)

Line 182: app_exception.raise_exception;

178: ) then
179: null;
180: else
181: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
182: app_exception.raise_exception;
183: end if;
184: end if;
185: end loop;
186: return;