DBA Data[Home] [Help]

APPS.BNE_GRAPHS_PKG dependencies on APP_EXCEPTION

Line 167: app_exception.raise_exception;

163: fetch c into recinfo;
164: if (c%notfound) then
165: close c;
166: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
167: app_exception.raise_exception;
168: end if;
169: close c;
170: if ( (recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
171: AND ((recinfo.GRAPH_DIMENSION_CODE = X_GRAPH_DIMENSION_CODE)

Line 185: app_exception.raise_exception;

181: ) then
182: null;
183: else
184: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
185: app_exception.raise_exception;
186: end if;
187:
188: for tlinfo in c1 loop
189: if (tlinfo.BASELANG = 'Y') then

Line 202: app_exception.raise_exception;

198: ) then
199: null;
200: else
201: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
202: app_exception.raise_exception;
203: end if;
204: end if;
205: end loop;
206: return;