DBA Data[Home] [Help]

APPS.BSC_SYS_BENCHMARKS_PKG dependencies on APP_EXCEPTION

Line 146: app_exception.raise_exception;

142: fetch c into recinfo;
143: if (c%notfound) then
144: close c;
145: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
146: app_exception.raise_exception;
147: end if;
148: close c;
149: if ( (recinfo.COLOR = X_COLOR)
150: AND (recinfo.DATA_TYPE = X_DATA_TYPE)

Line 160: app_exception.raise_exception;

156: ) then
157: null;
158: else
159: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
160: app_exception.raise_exception;
161: end if;
162:
163: for tlinfo in c1 loop
164: if (tlinfo.BASELANG = 'Y') then

Line 170: app_exception.raise_exception;

166: ) then
167: null;
168: else
169: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
170: app_exception.raise_exception;
171: end if;
172: end if;
173: end loop;
174: return;