DBA Data[Home] [Help]

APPS.BNE_MENUS_PKG dependencies on APP_EXCEPTION

Line 155: app_exception.raise_exception;

151: fetch c into recinfo;
152: if (c%notfound) then
153: close c;
154: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
155: app_exception.raise_exception;
156: end if;
157: close c;
158: if ( ((recinfo.PARENT_APP_ID = X_PARENT_APP_ID)
159: OR ((recinfo.PARENT_APP_ID is null) AND (X_PARENT_APP_ID is null)))

Line 181: app_exception.raise_exception;

177: ) then
178: null;
179: else
180: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
181: app_exception.raise_exception;
182: end if;
183:
184: for tlinfo in c1 loop
185: if (tlinfo.BASELANG = 'Y') then

Line 191: app_exception.raise_exception;

187: ) then
188: null;
189: else
190: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
191: app_exception.raise_exception;
192: end if;
193: end if;
194: end loop;
195: return;