Question

Problem with quick report - application server task

  • 26 January 2023
  • 1 reply
  • 253 views

Userlevel 3
Badge +8
hi, i have a problem with a scheduled quick report (task server application). When I run the report manually - everything is ok (it takes almost 30 minutes). When it executes as an application server task, it ends with an error. error:STUCK thread while executing native sender: 'null' Caused by: ifs.fnd.integration.senders.ConnectSender$TemporaryFailureException: STUCK thread while executing native sender: 'null'Another report that takes a few seconds works fine in the application server tasks and sends an email with the result of the report.Any idea how to deal with this big report?
 

 

 


1 reply

Userlevel 7
Badge +31

Hi @DominikaM,

This error seems to occur because the application server task exceeds the time limit for stuck threads in Weblogic, which is 600 seconds by default. 

Please try adding following property to ifs.properties file which can be found inside the “\\<IFS_HOME>\instance\<InstancID>\conf\” directory of your application server:

ifs.bizapiTimeout.ExcelQuickReport.RenderExcelDocument=1800

The value 1800 above is 30 minutes in seconds, since you have mentioned the task takes almst 30 minutes, but you can change the value as appropriate. 

Once this is done, you need to restart the IFS Middleware Server for the change to take effect.

Please try this in a non-production environment first and make sure there aren’t any issues before rolling out to production.

Hope this helps!

 

 

 

Reply