DBA Data[Home] [Help]

APPS.BNE_VIEWERS_PKG dependencies on APP_EXCEPTION

Line 148: app_exception.raise_exception;

144: fetch c into recinfo;
145: if (c%notfound) then
146: close c;
147: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
148: app_exception.raise_exception;
149: end if;
150: close c;
151: if ( ((recinfo.PARAM_LIST_APP_ID = X_PARAM_LIST_APP_ID)
152: OR ((recinfo.PARAM_LIST_APP_ID is null) AND (X_PARAM_LIST_APP_ID is null)))

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 177: app_exception.raise_exception;

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