Skip to main content
Question

IFS Cloud- Quick Report session timeout

  • April 24, 2026
  • 1 reply
  • 11 views

Forum|alt.badge.img+2

Hi, is it possible to configure the session timeout in IFS Cloud specifically for running quick reports?

Currently, I have an issue where the report execution is interrupted after 3 minutes, so it doesn’t finish and returns no data.

Is there a way to extend the session duration to, say, 5 minutes, but only for ad-hoc reports?

1 reply

martin.surasky
Hero (Customer)
Forum|alt.badge.img+10

hi ​@k.burdzy 

I think what we are talking here are EXECUTION timeouts (and not SESSION timeouts). User Session Timeout is probably not your issue here because sessions are usually measured in much longer intervals (often 15–30+ minutes, sometimes hours).

Your Quick Report is probably hitting one of these:

  • Application / web request timeout (The HTTP request running the report is timing out)
  • Database-side timeout or long-running query limit (The SQL behind the Quick Report may be getting interrupted due to Query Execution Limits in Oracle)

As far as I know, there is not a Quick Reports only timeout parameter. Timeouts are generally configured at infrastructure or service level, not per feature.

 

What I would do instead 

  • Option A: Tune the report so it finishes under 3 minutes (Check execution plan, Remove correlated subqueries, Filter earlier, etc...)
  • Option B: Convert it to a background-style report (Schedule it, run asynchronously and deliver output when finished). This avoids HTTP timeout entirely.

The options to handle execution timeouts depend heavily in your architecture. Are you deploying On-Premise or is it a Remote Install (self-hosted on your own datacenter)? If you control the stack, you may be able to tweak things that otherwise you can’t control (Kubernetes/Load Balancers/Oracle/etc.)