Skip to main content
Solved

IFS 8 Application Login Error

  • May 12, 2020
  • 3 replies
  • 780 views

Forum|alt.badge.img+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

Best answer by Tharindu

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.

3 replies

Tharindu
Hero (Employee)
  • Hero (Employee)
  • 68 replies
  • Answer
  • May 15, 2020

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.


Forum|alt.badge.img+5
  • Author
  • Sidekick (Partner)
  • 5 replies
  • May 18, 2020

Issue solve with your input. Thanks!


Forum|alt.badge.img+5
  • Sidekick (Partner)
  • 5 replies
  • October 23, 2023

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