DBA Data[Home] [Help]

APPS.JTS_FLOW_STEPS_PKG dependencies on APP_EXCEPTION

Line 23: APP_EXCEPTION.RAISE_EXCEPTION;

19:
20: return (l_step_id);
21: EXCEPTION
22: WHEN OTHERS THEN
23: APP_EXCEPTION.RAISE_EXCEPTION;
24: END GET_NEXT_STEP_ID;
25:
26: -------------------------------------------------
27: -- This is for seeding the Flow Step Details.

Line 108: APP_EXCEPTION.RAISE_EXCEPTION;

104: and T.LANGUAGE = L.LANGUAGE_CODE);
105:
106: EXCEPTION
107: WHEN OTHERS THEN
108: APP_EXCEPTION.RAISE_EXCEPTION;
109:
110: END INSERT_ROW;
111:
112: -------------------------------------------------

Line 126: APP_EXCEPTION.RAISE_EXCEPTION;

122: WHERE step_id = p_step_id;
123:
124: EXCEPTION
125: WHEN OTHERS THEN
126: APP_EXCEPTION.RAISE_EXCEPTION;
127:
128: END DELETE_ROW;
129:
130: -------------------------------------------------

Line 185: APP_EXCEPTION.RAISE_EXCEPTION;

181: raise no_data_found;
182: end if;
183: EXCEPTION
184: WHEN OTHERS THEN
185: APP_EXCEPTION.RAISE_EXCEPTION;
186: end UPDATE_ROW;
187:
188: -------------------------------------------------
189: -- This is for seeding the Flow Step Details.

Line 215: APP_EXCEPTION.RAISE_EXCEPTION;

211: and userenv('LANG') in (language, source_lang);
212:
213: EXCEPTION
214: WHEN OTHERS THEN
215: APP_EXCEPTION.RAISE_EXCEPTION;
216: END TRANSLATE_ROW;
217:
218: -------------------------------------------------
219: -- This is for seeding the Flow Step Details.

Line 289: APP_EXCEPTION.RAISE_EXCEPTION;

285: );
286: end if;
287: EXCEPTION
288: WHEN OTHERS THEN
289: APP_EXCEPTION.RAISE_EXCEPTION;
290: END LOAD_ROW;
291:
292:
293: -------------------------------------------------

Line 335: app_exception.raise_exception;

331: fetch c into recinfo;
332: if (c%notfound) then
333: close c;
334: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
335: app_exception.raise_exception;
336: end if;
337: close c;
338: if ( (recinfo.FLOW_ID = X_FLOW_ID)
339: AND (recinfo.MANDATORY_FLAG = X_MANDATORY_FLAG)

Line 350: app_exception.raise_exception;

346: ) then
347: null;
348: else
349: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
350: app_exception.raise_exception;
351: end if;
352:
353: for tlinfo in c1 loop
354: if (tlinfo.BASELANG = 'Y') then

Line 362: app_exception.raise_exception;

358: ) then
359: null;
360: else
361: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
362: app_exception.raise_exception;
363: end if;
364: end if;
365: end loop;
366: return;