Hi
I use the setInterval function on the document.ready event inside the Custom Template of one of my views. The server call stack is
Execution of 'C:\ProgramData\Seal Report Repository\Reports\Monitor_Concentrado_2.srex' on 19/07/2017 01:32 p. m.
01:31:52 p. m. Executing Init Script
01:31:52 p. m. 1
01:31:52 p. m. 2
01:31:52 p. m. 3
01:31:52 p. m. Refreshing Enum values...
01:31:52 p. m. SELECT Desglose.COORDINACION FROM (select coordinacion, estatus from table(main.pck_getData.fn_Type(4)) order by sum(decode(estatus, 'FALTANTES', 0, porc)) over(partition by coordinacion) desc) desglose where desglose.estatus = 'RETURNED'
01:31:56 p. m. Starting execution of 'Monitor_Concentrado_2' (User:'' Groups:'Default Group')...
01:31:56 p. m. Executing report tasks...
01:31:56 p. m. Starting task 'Task'
01:31:56 p. m. Starting task with connection 'ORAPRO'
01:31:56 p. m. Executing Script...
01:31:57 p. m. Ending task 'Task'
01:31:57 p. m. Starting to build models...
01:31:57 p. m. Model 'mTotales': Building result set from database...
01:31:57 p. m. Model 'mCoordinacion': Building result set from database...
01:31:57 p. m. Processing the model 'Pre Load Script'
01:31:57 p. m. Processing the model 'Pre Load Script'
01:31:57 p. m. Model 'mTotales': Executing main query...
01:32:00 p. m. Model 'mTotales': Building pages...
01:32:00 p. m. Model 'mTotales': Building tables...
01:32:00 p. m. Model 'mTotales': Building totals...
01:32:05 p. m. Model 'mCoordinacion': Executing main query...
01:32:07 p. m. Cancelling report...
01:32:09 p. m. Error in model 'mCoordinacion': Unexpected error when executing the following SQL statement:
SELECT
Desglose.COORDINACION AS C0,
Desglose.ESTATUS AS C1,
Sum(Desglose.PORC) AS C2
FROM (select *
from table(main.pck_getData.fn_Type(4))
) Desglose
WHERE Desglose.TIPO IN (4)
GROUP BY Desglose.COORDINACION,Desglose.ESTATUS
ORDER BY Desglose.ESTATUS ASC,Desglose.COORDINACION ASC
Error detail:
ERROR [HYT00] [Oracle][ODBC][Ora]ORA-01013: el usuario ha solicitado la cancelación de la operación actual
Searching about this error "Cause: The user interrupted an Oracle operation by entering CTRL-C, Control-C or another canceling operation.". I get the same error on mCoordinacion sometimes when I execute the report. I'm sure no one is pressing CTRL-C but I don't know if has something to do with mCoordinacion being the one view with the setIterval function.
Any sugestions?
Edited by user Wednesday, July 19, 2017 8:10:54 PM(UTC)
| Reason: Not specified