Tuesday 9 September 2014

Way to Solve the Transaction Tracking Error(TTS)


     We have some solutions for solving this type of error..




Solutions:

1.Check all code for form or class from where this error comes and count the ttsbegin and ttscommit there must be same like if u write 2 ttsbegin u must have to write 2 ttscommit.
2.One more step for solving this error,run this job it solves that error automatically.

static void ResetTTS(Args _args)
{
    while (appl.ttsLevel() > 0)
    {
        info(strfmt("Level %1 aborted",appl.ttsLevel()));
        ttsAbort;
    }
}



No comments:

Post a Comment