DBA Data[Home] [Help]

APPS.BIS_LEVELS_CUSTOMIZATIONS_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.LEVEL_ID = X_LEVEL_ID)
152: AND ((recinfo.ENABLED = X_ENABLED)

Line 172: app_exception.raise_exception;

168: ) then
169: null;
170: else
171: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
172: app_exception.raise_exception;
173: end if;
174:
175: for tlinfo in c1 loop
176: if (tlinfo.BASELANG = 'Y') then

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: end if;
188: end loop;
189: return;