DBA Data[Home] [Help]

APPS.FND_SEC_BULK dependencies on FND_MESSAGE

Line 221: fnd_message.set_name('FND', 'FND-INVALID APPLICATION');

217: from fnd_application
218: where application_short_name = x_resp_application;
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:

Line 222: fnd_message.set_token('APPL', x_resp_application);

218: where application_short_name = x_resp_application;
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

Line 233: fnd_message.set_name('FND', 'FND-INVALID RESPONSIBILITY');

229: where application_id = appid
230: and responsibility_key = x_responsibility;
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:

Line 234: fnd_message.set_token('RESP', x_responsibility);

230: and responsibility_key = x_responsibility;
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 --

Line 247: fnd_message.set_name('FND', 'FND-INVALID SECURITY');

243: from fnd_security_groups
244: where security_group_key = x_security_group;
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;

Line 248: fnd_message.set_token('SEC', x_security_group);

244: where security_group_key = x_security_group;
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:

Line 343: fnd_message.set_name('FND', 'FND-INVALID APPLICATION');

339: from fnd_application
340: where application_id = x_resp_application_id;
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:

Line 344: fnd_message.set_token('APPL', to_char(x_resp_application_id));

340: where application_id = x_resp_application_id;
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

Line 355: fnd_message.set_name('FND', 'FND-INVALID RESPONSIBILITY');

351: where application_id = appid
352: and responsibility_id = x_responsibility_id;
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:

Line 356: fnd_message.set_token('RESP', to_char(x_responsibility_id));

352: and responsibility_id = x_responsibility_id;
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

Line 367: fnd_message.set_name('FND', 'FND-INVALID SECURITY');

363: from fnd_security_groups
364: where security_group_key = x_security_group;
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;

Line 368: fnd_message.set_token('SEC', x_security_group);

364: where security_group_key = x_security_group;
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: