Logging process aborted by admins

Post Reply
Aerouge
Posts: 19
Joined: Wed Jan 08, 2014 1:09 pm
OLAP Product: TM1
Version: PA 2.0
Excel Version: Excel 365

Logging process aborted by admins

Post by Aerouge »

Hy guys,

quick question here.

Is it possible to log when a process / chore etc. is aborted by an Administrator?

If so, could you tell me how to configure this?

Currently we have the problem that a process stops without error or any other "in logfile visible reason".

We wrapped the process into :

Code: Select all

ProcessReturnCode=ExecuteProcess('MyProcess');
    IF(ProcessReturnCode <> ProcessExitNormal() );
      vReturncode='ERROR ; Returncode: ' | NumberToString(ProcessReturnCode);
    ELSE;
      vsReturncode='SUCCESS';
    ENDIF;
and sometimes it runs through and produces the ReturnCodes but sometimes the whole thing stops without any logging :?:
Post Reply