DBA Data[Home] [Help]

APPS.AMS_CUSTOM_SETUPS_PKG dependencies on APP_EXCEPTION

Line 145: app_exception.raise_exception;

141: fetch c into recinfo;
142: if (c%notfound) then
143: close c;
144: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
145: app_exception.raise_exception;
146: end if;
147: close c;
148: if ( ((recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
149: OR ((recinfo.OBJECT_VERSION_NUMBER is null) AND (X_OBJECT_VERSION_NUMBER is null)))

Line 163: app_exception.raise_exception;

159: ) then
160: null;
161: else
162: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
163: app_exception.raise_exception;
164: end if;
165:
166: for tlinfo in c1 loop
167: if (tlinfo.BASELANG = 'Y') then

Line 175: app_exception.raise_exception;

171: ) then
172: null;
173: else
174: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
175: app_exception.raise_exception;
176: end if;
177: end if;
178: end loop;
179: return;