If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

Recent posts

#1
Dashboards / Re: Dashboard Permissions
Last post by bus_pass_man - 11 Jun 2025 02:04:49 PM
What's the name of that mathematician (French?) who wrote something along the lines of 'I've found the solution to   (some problem which if I had paid more attention I might have better remembered this)'?
#2
Reporting / Re: Anyone know if I can overc...
Last post by FerdH4 - 11 Jun 2025 12:07:48 PM
Thanks dougp for the input.

I'll give it a try.

In this case, the data is in Cognos database is SQL (the source originates from an IBM DB2 database).
#3
Reporting / Re: Anyone know if I can overc...
Last post by dougp - 11 Jun 2025 10:36:29 AM
What RDBMS?  If it's MS SQL Server -- https://learn.microsoft.com/en-us/sql/t-sql/statements/collations?view=sql-server-ver17

So you join looks like

Query1.ColumnA = Query2.ColumnB
Convert one side to the collation of the other side.

Query1.ColumnA COLLATE SQL_Latin1_General_CP1_CS_AS = Query2.ColumnB
Keep in mind that I exerted zero effort to make sure this is correct. You can do your own research to determine which column must be converted to which collation.  And I don't know if that can be done directly in a Cognos join.  You may need to find another way to make these data sources compatible.
#4
Dashboards / Dashboard Permissions
Last post by jeremywv - 11 Jun 2025 09:46:59 AM
Disregard...found my problem.
#5
Reporting / Anyone know if I can overcome ...
Last post by FerdH4 - 11 Jun 2025 09:20:19 AM
Good Morning Cognos Experts,

I'm using Cognos 11.2.3 to Join two queries together using the only data item that the queries have in common. 

However, though these character data items are known to contain the exact same values, they are in fact from two different tables.

The queries run successfully alone.  But when I attempt to run the JOIN query which is using only "=" comparison of one data item from each query result set, I get this error message:

"Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "SQL_Latin1_General_CP1_CS_AS" in the equal to operation.

I do not have access to Framework Manager to change the source database.  So, I'm looking for ideas of how I might be able to either manipulate the data items prior to the JOIN OR use an expression to populate their values into separate new data items (within their respective queries) which I could then JOIN instead.

Thank You.
#6
Framework Manager / Re: Recover Framework Model
Last post by MFGF - 09 Jun 2025 08:41:22 AM
Quote from: jburchill on 29 May 2025 08:09:39 AMDo you need to register to IBM just to read support docs?  I registered but still don't have access to read support docs.

Hi,

You will need to register for an IBM ID using your email address. Once you have that, you should be able to view support documentation. Have you tried the direct link to the support article:

https://www.ibm.com/support/pages/how-recover-parts-corrupted-or-lost-framework-manager-model

Cheers!

MF.
#7
Reporting / Re: Need to group similar item...
Last post by MFGF - 09 Jun 2025 08:31:50 AM
Quote from: carioca10 on 03 Jun 2025 05:32:50 PMNeed to group similar items in a column of a second column in a single line  in a report.

As follows:

Input

Field A   Field B
-----------   -----------
A1             B1
A1            B2
A2            B3
A3            B4
A3      B5

It would become:

Output   
Field A      Field B
------------      -----------
A1         B1, B2
A2         B3
A3         B4, B5

Cognos Version 12.0.4

Hi,

I'm assuming this is a list report? You could drop a repeater into the second column of the list, and set up a master/detail link between the query of the list and the query of the repeater (based on Column A). Add Column B into the repeater (plus comma/space etc as needed).

Cheers!

MF.
#8
Reporting / Need to group similar items in...
Last post by carioca10 - 03 Jun 2025 05:32:50 PM
Need to group similar items in a column of a second column in a single line  in a report.

As follows:

Input

Field A   Field B
-----------   -----------
A1             B1
A1            B2
A2            B3
A3            B4
A3      B5

It would become:

Output   
Field A      Field B
------------      -----------
A1         B1, B2
A2         B3
A3         B4, B5

Cognos Version 12.0.4
#9
Reporting / Re: Programming question
Last post by sjohnson - 29 May 2025 02:08:38 PM
This is almost certainly not the most efficient or elegant solution, however, I believe it works.

Add a data item expression to your query called 'Flag' with the following expression definition (adjusting for column names)
total((if([ICD Code] = 'Z94.0')
then(1)
else(0))
for [Patient Account Number])

The add a detail filter
[Flag] = 0
The Flag column computes the total number of records with an ICD Code value of 'Z94.0' for each [Patient Account Number] and the filter excludes anything over 0.

This should get you moving forward until someone more experienced chimes in.
#10
Framework Manager / Re: Recover Framework Model
Last post by jburchill - 29 May 2025 08:09:39 AM
Do you need to register to IBM just to read support docs?  I registered but still don't have access to read support docs.