DBA Data[Home] [Help]

APPS.FA_RX_ATTRSETS_PKG dependencies on APP_EXCEPTION

Line 184: app_exception.raise_exception;

180: fetch c into recinfo;
181: if (c%notfound) then
182: close c;
183: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
184: app_exception.raise_exception;
185: end if;
186: close c;
187:
188: -- Bug 1320919: Modified checks for defaulted items if they are not

Line 223: app_exception.raise_exception;

219: ) then
220: null;
221: else
222: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
223: app_exception.raise_exception;
224: end if;
225:
226: for tlinfo in c1 loop
227: if (tlinfo.BASELANG = 'Y') then

Line 236: app_exception.raise_exception;

232: ) then
233: null;
234: else
235: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
236: app_exception.raise_exception;
237: end if;
238: end if;
239: end loop;
240: return;