Dear All,
There is a process, datasource is database, the TM1 process would be executed every day, but when an exception occurs at the database jobs, the data record in the database table would be 0, and this time, the process is not allowed to execute.
how can i do this?
tks
TM1 Process
-
- Posts: 51
- Joined: Thu May 05, 2011 2:05 am
- OLAP Product: TM1
- Version: 9.5
- Excel Version: 2007 and 2003
- Location: Asia
-
- MVP
- Posts: 3241
- Joined: Mon Dec 29, 2008 6:26 pm
- OLAP Product: TM1, Jedox
- Version: PAL 2.1.5
- Excel Version: Microsoft 365
- Location: Brussels, Belgium
- Contact:
Re: TM1 Process
You could use 2 processes: your current process, but before that process you execute a different process that loops through the same database query.
If content is found, proceed to the next process and execute it, if not abort. This might increase your time to execute the process since you will run the query twice (possibly).
If content is found, proceed to the next process and execute it, if not abort. This might increase your time to execute the process since you will run the query twice (possibly).
Best regards,
Wim Gielis
IBM Champion 2024-2025
Excel Most Valuable Professional, 2011-2014
https://www.wimgielis.com ==> 121 TM1 articles and a lot of custom code
Newest blog article: Deleting elements quickly
Wim Gielis
IBM Champion 2024-2025
Excel Most Valuable Professional, 2011-2014
https://www.wimgielis.com ==> 121 TM1 articles and a lot of custom code
Newest blog article: Deleting elements quickly
-
- MVP
- Posts: 600
- Joined: Wed Aug 17, 2011 1:19 pm
- OLAP Product: TM1
- Version: 9.5.2 10.1 10.2
- Excel Version: 2003 2007
- Location: York, UK
Re: TM1 Process
Or - if your security policies allow - you could use a first process to push the data into a file in the data directory, then use that as a source for a second process if and only if records were returned.