Hi,
we are currently building our sla report and are using the timetosla app. We have one SLa where we calculate if a ticket is transitioned from the status open to any other status in the first 7 days after the ticket is created. To get the total number of tickets which are relvant for last months report we use the issue measure from timetosla but for it to work we need to include the tickets which are currently still in status open and older than 7 days
We created the following script:
Sum(
Cache(Filter(
Descendants([Issue].CurrentMember, [Issue].[Issue]),
DateDiffDays([Issue].CurrentMember.GetProperty(“Created at”), Now()) > 7
)),
[Measures].[PROB_Ticket Processed Issues] +
([Status].[Open], [Issue Type].[Problem])
)
PROB_Ticket Processed is the name of the SLA.
The problem is that this measure runs into a timeout probably because it checks to many tickets… Are there any options to reduce the time to calculate the tickets?
Thx
Simon