DBA Data[Home] [Help]

APPS.JTF_AUTH_SECURITY_PKG dependencies on FND_MESSAGE

Line 59: -- fnd_message.set_name('JTF', '..');

55: WHEN OTHERS THEN
56: x_return_status := fnd_api.g_ret_sts_unexp_error;
57:
58: -- do we need to throw an exception?
59: -- fnd_message.set_name('JTF', '..');
60: -- app_exception.raise_exception;
61:
62: END check_permission;
63:

Line 84: fnd_message.set_name('JTF', 'JTF-1061');

80: from jtf_auth_principals_b
81: where principal_name=U_ROLE_NAME and is_user_flag=0;
82:
83: if cnt=0 then
84: fnd_message.set_name('JTF', 'JTF-1061');
85: app_exception.raise_exception;
86: end if;
87:
88: select count(*) into cnt

Line 93: fnd_message.set_name('JTF', 'JTF-1062');

89: from JTF_AUTH_PERMISSIONS_B
90: where PERMISSION_NAME=PERM_NAME;
91:
92: if cnt=0 then
93: fnd_message.set_name('JTF', 'JTF-1062');
94: app_exception.raise_exception;
95: end if;
96:
97: