DBA Data[Home] [Help]

APPS.BNE_PARAM_LISTS_PKG dependencies on APP_EXCEPTION

Line 150: app_exception.raise_exception;

146: fetch c into recinfo;
147: if (c%notfound) then
148: close c;
149: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
150: app_exception.raise_exception;
151: end if;
152: close c;
153: if ( (recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
154: AND (recinfo.PERSISTENT_FLAG = X_PERSISTENT_FLAG)

Line 167: app_exception.raise_exception;

163: ) then
164: null;
165: else
166: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
167: app_exception.raise_exception;
168: end if;
169:
170: for tlinfo in c1 loop
171: if (tlinfo.BASELANG = 'Y') then

Line 183: app_exception.raise_exception;

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