DBA Data[Home] [Help]

APPS.FND_USER_RESP_GROUPS_API dependencies on APP_EXCEPTION

Line 29: app_exception.raise_exception;

25: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
26: fnd_message.set_token('ROUTINE', routine);
27: fnd_message.set_token('ERRNO', errcode);
28: fnd_message.set_token('REASON', errmsg);
29: app_exception.raise_exception;
30: end Generic_Error;
31:
32: --
33: -- Returns 'Y' if security groups are enabled for this app, 'N' otherwise.

Line 423: app_exception.raise_exception;

419: fetch c into recinfo;
420: if (c%notfound) then
421: close c;
422: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
423: app_exception.raise_exception;
424: end if;
425: close c;
426: if ( ((recinfo.start_date = x_start_date)
427: OR ((recinfo.start_date is null) AND (x_start_date is null)))

Line 434: app_exception.raise_exception;

430: ) then
431: null;
432: else
433: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
434: app_exception.raise_exception;
435: end if;
436:
437: end Lock_Assignment;
438:

Line 513: app_exception.raise_exception;

509: fnd_message.set_token('USERNAME', username);
510: fnd_message.set_token('ROLENAME', rolename);
511: fnd_message.set_token('ROUTINE',
512: 'FND_USER_RESP_GROUPS_API.Insert_Assignment');
513: app_exception.raise_exception;
514: end if;
515:
516:
517: /* We can't just assume that the orig system is FND_USR. It could */

Line 702: app_exception.raise_exception;

698: fnd_message.set_token('USERNAME', username);
699: fnd_message.set_token('ROLENAME', rolename);
700: fnd_message.set_token('ROUTINE',
701: 'FND_USER_RESP_GROUPS_API.Update_Assignment');
702: app_exception.raise_exception;
703: end if;
704:
705: /* We can't just assume that the orig system is FND_USR. It could */
706: /* be PER because the row in wf_users/wf_roles is one or the other */