DBA Data[Home] [Help]

APPS.FND_SEC_BULK dependencies on APP_EXCEPTION

Line 223: app_exception.raise_exception;

219: exception
220: when no_data_found then
221: fnd_message.set_name('FND', 'FND-INVALID APPLICATION');
222: fnd_message.set_token('APPL', x_resp_application);
223: app_exception.raise_exception;
224: end;
225:
226: begin
227: select responsibility_id into respid

Line 235: app_exception.raise_exception;

231: exception
232: when no_data_found then
233: fnd_message.set_name('FND', 'FND-INVALID RESPONSIBILITY');
234: fnd_message.set_token('RESP', x_responsibility);
235: app_exception.raise_exception;
236: end;
237:
238: -- Security group should copied from the original --
239:

Line 249: app_exception.raise_exception;

245: exception
246: when no_data_found then
247: fnd_message.set_name('FND', 'FND-INVALID SECURITY');
248: fnd_message.set_token('SEC', x_security_group);
249: app_exception.raise_exception;
250: end;
251: end if;
252:
253: cnt := 0;

Line 345: app_exception.raise_exception;

341: exception
342: when no_data_found then
343: fnd_message.set_name('FND', 'FND-INVALID APPLICATION');
344: fnd_message.set_token('APPL', to_char(x_resp_application_id));
345: app_exception.raise_exception;
346: end;
347:
348: begin
349: select responsibility_id into respid

Line 357: app_exception.raise_exception;

353: exception
354: when no_data_found then
355: fnd_message.set_name('FND', 'FND-INVALID RESPONSIBILITY');
356: fnd_message.set_token('RESP', to_char(x_responsibility_id));
357: app_exception.raise_exception;
358: end;
359:
360: if (x_security_group is not null) then
361: begin

Line 369: app_exception.raise_exception;

365: exception
366: when no_data_found then
367: fnd_message.set_name('FND', 'FND-INVALID SECURITY');
368: fnd_message.set_token('SEC', x_security_group);
369: app_exception.raise_exception;
370: end;
371: end if;
372:
373: cnt := 0;