DBA Data[Home] [Help]

APPS.FND_OID_PLUG dependencies on FND_MESSAGE

Line 1723: fnd_message.set_name ('FND', 'FND_SSO_USER_NOT_FOUND');

1719: if (fnd_log.LEVEL_EXCEPTION>= fnd_log.G_CURRENT_RUNTIME_LEVEL)
1720: then
1721: fnd_log.string(fnd_log.LEVEL_EXCEPTION, l_module_source, 'DN not found , invalid GUID ');
1722: end if;
1723: fnd_message.set_name ('FND', 'FND_SSO_USER_NOT_FOUND');
1724: raise NO_DATA_FOUND ;
1725: end if;
1726:
1727: realm_dn := get_realm_from_user_dn(ldap,user_dn);

Line 1737: fnd_message.set_name ('FND', 'FND-9903'); -- cannot find realm for user

1733: if (fnd_log.LEVEL_EXCEPTION>= fnd_log.G_CURRENT_RUNTIME_LEVEL)
1734: then
1735: fnd_log.string(fnd_log.LEVEL_EXCEPTION, l_module_source, 'Cannot locate Realm for DN:'||user_dn);
1736: end if;
1737: fnd_message.set_name ('FND', 'FND-9903'); -- cannot find realm for user
1738: raise NO_DATA_FOUND ;
1739: end if;
1740:
1741:

Line 1753: fnd_message.set_name ('FND', 'FND-9903'); -- cannot find realm idx

1749: if (fnd_log.LEVEL_EXCEPTION>= fnd_log.G_CURRENT_RUNTIME_LEVEL)
1750: then
1751: fnd_log.string(fnd_log.LEVEL_EXCEPTION, l_module_source, 'Realm not loaded: Realm:'||realm_dn);
1752: end if;
1753: fnd_message.set_name ('FND', 'FND-9903'); -- cannot find realm idx
1754: raise NO_DATA_FOUND ;
1755: end if;
1756:
1757: --nickNameAttr:=FND_LDAP_UTIL.getLDAPAttribute(ldap,'cn=Common,cn=Products,cn=OracleContext,'||realm_dn,'orclCommonNicknameAttribute');

Line 1770: fnd_message.set_name ('FND', 'FND-9903'); -- cannot find nickname attribute specification

1766: then
1767: fnd_log.string(fnd_log.LEVEL_EXCEPTION, l_module_source, 'Cannot read Realm nickname attribute, Realm:'||realm_dn);
1768: end if;
1769:
1770: fnd_message.set_name ('FND', 'FND-9903'); -- cannot find nickname attribute specification
1771: raise NO_DATA_FOUND ;
1772: end if;
1773:
1774: user_name := FND_LDAP_UTIL.getLDAPAttribute(ldap,user_dn,nickNameAttr);

Line 1785: fnd_message.set_name ('FND', 'FND_SSO_USER_NOT_FOUND'); --user has no nickname

1781: if (fnd_log.LEVEL_EXCEPTION>= fnd_log.G_CURRENT_RUNTIME_LEVEL)
1782: then
1783: fnd_log.string(fnd_log.LEVEL_EXCEPTION, l_module_source, 'Record does not have '||nickNameAttr||' attribute DN:'||user_dn);
1784: end if;
1785: fnd_message.set_name ('FND', 'FND_SSO_USER_NOT_FOUND'); --user has no nickname
1786: raise NO_DATA_FOUND ;
1787: end if;
1788: fnd_ldap_util.c_unbind(ldap,dummy);
1789: l_session_flag := false;