Solved

IFS 8 Application Login Error

  • 12 May 2020
  • 3 replies
  • 692 views

Userlevel 2
Badge +5

Hi Guys,

 

I have installed the IFS8 Application but while trying to login , getting below error:

 

Ifs.Fnd.FndSystemException: Explorer: A fatal error occurred. Application will terminate. Sorry for any inconvenience. ---> Ifs.Fnd.FndSystemException: Unexpected error while calling server method ClientRuntimeHelp/InititalizeClientSession ---> Ifs.Fnd.FndServerFaultException: Table or view does not exist. (ORA-00942: table or view does not exist
ORA-06512: at line 30
ORA-06512: at line 44
ORA-00942: table or view does not exist
ORA-06512: at line 48)
   at Ifs.Fnd.AccessProvider.FndConnection.HandleHttpSuccessResult(HttpWebResponse result, FndManualDecisionCollection decisions, String operation, FndBodyType responseBodyType, Object responseBody)
   at Ifs.Fnd.AccessProvider.FndConnection.InvokeInternal(Object requestBody, Object responseBody, String intface, String operation, FndRequestContext requestContext, FndManualDecisionCollection decisions, Boolean forcedSync)
   --- End of inner exception stack trace ---
   at Ifs.Fnd.AccessProvider.FndConnection.InvokeInternal(Object requestBody, Object responseBody, String intface, String operation, FndRequestContext requestContext, FndManualDecisionCollection decisions, Boolean forcedSync)
   at Ifs.Fnd.AccessProvider.FndConnection.InvokeInternal(String intface, String operation, Object requestBody, Object responseBody, FndRequestContext requestContext, Boolean forcedSync)
   at Ifs.Fnd.AccessProvider.Activity.FndActivityContext.Invoke(String intface, String operation, Object request, Object response)
   at Ifs.Fnd.AccessProvider.Activity.FndActivityCommand.ExecuteNonQuery(Object body)
   at Ifs.Fnd.ApplicationRuntime.Core.ClientSettingsModel.Ifs.Fnd.ApplicationRuntime.Core.IClientRuntimeHelp.InititalizeClientSession(ClientSettings clientSettings, String osUser)
   at Ifs.Fnd.ApplicationRuntime.Core.FndApplication.InitializeSettingsFromServer()
   at Ifs.Fnd.ApplicationRuntime.Core.FndApplication.StartupApplication()
   --- End of inner exception stack trace ---

 

 

 

Could you provide any solution with this or anyone face similar issue earlier.

 

Regards

Suraj

icon

Best answer by Tharindu 15 May 2020, 18:28

View original

3 replies

Make sure that FND_ENDUSER permission set is granted and also all the objects are granted to IFSSYS. For example: 
BEGIN
   Installation_SYS.Grant_Privileged_Grantee('IFSSYS', TRUE);
END;
/

Try to log-in via application owner also and see the behavior.

Userlevel 2
Badge +5

Issue solve with your input. Thanks!

Badge +3

Make sure that FND_ENDUSER permission set is granted and also all the objects are granted to IFSSYS. For example: 
BEGIN
   Installation_SYS.Grant_Privileged_Grantee('IFSSYS', TRUE);
END;
/

Try to log-in via application owner also and see the behavior.

 yes it is working after executed. Thanks

Reply