Process in chore fail to find source data file
-
- Posts: 34
- Joined: Mon Oct 18, 2010 7:38 am
- OLAP Product: TM1
- Version: 10.2.2
- Excel Version: 2010
Process in chore fail to find source data file
Just want to check if anyone knows what happens when one process in chore can not find it's source data file. Does chore continue to run other processes or does it fail?
-
- Site Admin
- Posts: 6667
- Joined: Sun May 11, 2008 2:30 am
- OLAP Product: TM1
- Version: PA2.0.9.18 Classic NO PAW!
- Excel Version: 2013 and Office 365
- Location: Sydney, Australia
- Contact:
Re: Process in chore fail to find source data file
The process fails; the chore does not. It's for this reason that I use a "Continue Execution" flag in a control cube for all of my chores. The first process sets the flag to N at the start of the Prolog. If it succeeds, it sets the flag to Y at the end of the epilog. Each subsequent process checks the flag. If it's N, the process quits. Otherwise, it sets the flag to N and again only sets it to Y at the end of the epilog. That ensures that if a process crashes out, the subsequent ones won't be executed.vladkon wrote:Just want to check if anyone knows what happens when one process in chore can not find it's source data file. Does chore continue to run other processes or does it fail?
"To them, equipment failure is terrifying. To me, it’s 'Tuesday.' "
-----------
Before posting, please check the documentation, the FAQ, the Search function and FOR THE LOVE OF GLUB the Request Guidelines.
-----------
Before posting, please check the documentation, the FAQ, the Search function and FOR THE LOVE OF GLUB the Request Guidelines.
-
- Posts: 34
- Joined: Mon Oct 18, 2010 7:38 am
- OLAP Product: TM1
- Version: 10.2.2
- Excel Version: 2010
Re: Process in chore fail to find source data file
Thanks a lot for such a complete answer.