Hopefully someone can help
I have a TI process that gets data from a SQL database
I had parameterised the SQL to be the following
select * from RefFrontlistTitles where globaldivision = '?p0?'
and on the PROLOG I have the following
p0=CellGetS('RFC - Control','Password','Value');
Within the Cube - 'RFC - Control' the intersection of Password and Value is 'ACAD'
When I try to Preview it now doesn't apply the where clause
This worked until I moved TM1 to a new Virtual Server and now none of the params are getting passed to the SQL
I have tested the CellGetS within a variable and it returns the correct value of 'ACAD'
Any help greatly appreciated
TM1 Process Parameters
-
- Site Admin
- Posts: 1458
- Joined: Wed May 28, 2008 9:09 am
Re: TM1 Process Parameters
Parameters are not populated before the preview is run. Suggest you use datasourcequery with asciioutput (or LogOutput, if using 10.2.2.3+) to find out what the query text passed to SQL actually is.
-
- MVP
- Posts: 3240
- 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 Parameters
Unless you use the function DataSourceQuery in the Prolog tab, this isn't going to work.David Usherwood wrote:Parameters are not populated before the preview is run. Suggest you use datasourcequery with asciioutput (or LogOutput, if using 10.2.2.3+) to find out what the query text passed to SQL actually is.
TM1 will not resolve the p0.
The AsciiOutput function will show p0 and not its value at run-time.
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
- gtonkin
- MVP
- Posts: 1265
- Joined: Thu May 06, 2010 3:03 pm
- OLAP Product: TM1
- Version: Latest and greatest
- Excel Version: Office 365 64-bit
- Location: JHB, South Africa
- Contact:
Re: TM1 Process Parameters
I normally write a select Top 10 query for the preview section to give me the columns/variables I need. In prolog I then build up a string with the SQL query to be executed. This way you can just concatenate query and variables using pipes. This way you can Asciioutput and check your query by pasting into SQL and executing what TI would. Don't forget to cast string parameters to numeric where required.