DBA Data[Home] [Help]

APPS.ZX_DET_FACTOR_TEMPL_PKG dependencies on APP_EXCEPTION

Line 105: APP_EXCEPTION.RAISE_EXCEPTION;

101: close c;
102:
103: EXCEPTION
104: WHEN OTHERS THEN
105: APP_EXCEPTION.RAISE_EXCEPTION;
106:
107: end INSERT_ROW;
108:
109: procedure LOCK_ROW (

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:
159: if ( (recinfo.DET_FACTOR_TEMPL_CODE = X_DET_FACTOR_TEMPL_CODE)

Line 180: app_exception.raise_exception;

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

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;

Line 199: APP_EXCEPTION.RAISE_EXCEPTION;

195: return;
196:
197: EXCEPTION
198: WHEN OTHERS THEN
199: APP_EXCEPTION.RAISE_EXCEPTION;
200:
201: end LOCK_ROW;
202:
203: procedure UPDATE_ROW (

Line 260: APP_EXCEPTION.RAISE_EXCEPTION;

256: end if;
257:
258: EXCEPTION
259: WHEN OTHERS THEN
260: APP_EXCEPTION.RAISE_EXCEPTION;
261:
262: end UPDATE_ROW;
263:
264: procedure DELETE_ROW (

Line 284: APP_EXCEPTION.RAISE_EXCEPTION;

280: end if;
281:
282: EXCEPTION
283: WHEN OTHERS THEN
284: APP_EXCEPTION.RAISE_EXCEPTION;
285:
286: end DELETE_ROW;
287:
288: procedure ADD_LANGUAGE

Line 350: APP_EXCEPTION.RAISE_EXCEPTION;

346: and T.LANGUAGE = L.LANGUAGE_CODE);
347:
348: EXCEPTION
349: WHEN OTHERS THEN
350: APP_EXCEPTION.RAISE_EXCEPTION;
351:
352: end ADD_LANGUAGE;
353:
354: procedure bulk_insert_det_factor_templ (

Line 436: APP_EXCEPTION.RAISE_EXCEPTION;

432: end if;
433:
434: EXCEPTION
435: WHEN OTHERS THEN
436: APP_EXCEPTION.RAISE_EXCEPTION;
437:
438: end bulk_insert_det_factor_templ;
439:
440: end ZX_DET_FACTOR_TEMPL_PKG;