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

#21
Event Studio / Re: Event Studio Report withou...
Last post by MFGF - 07 Nov 2024 01:56:24 PM
Quote from: khanna100 on 07 Nov 2024 10:01:29 AMAfter you retire, is somebody else taking over?

I will still be around on the forum - posting on here is not part of my day job, nor something I do in any official capacity. I'm just here to try to help others by sharing knowledge, and I hope to continue that :-)

Cheers!

MF.
#22
Event Studio / Re: Event Studio Report withou...
Last post by khanna100 - 07 Nov 2024 10:01:29 AM
After you retire, is somebody else taking over?
#23
Do we have some upcoming Cognos Analytics User Groups?

If you do, please share them here or maybe you want to start one up in your region and gauge the interest? 
#24
Reporting / Re: Getting PDS-PPE-0104 Erro...
Last post by Lokesh Reddy - 04 Nov 2024 02:04:22 PM
Hi Mark,

Our reports are being created from FM model package.

Can you please let us know how can we set decimal precision on FM package and report.

Thanks,
Lokeswara
#25
Reporting / How to set Decimal Precision o...
Last post by Lokesh Reddy - 04 Nov 2024 02:02:37 PM
Hi Everyone,

We are getting "PDS-PPE-0104 A record was rejected. An arithmetic overflow occurred. -1,379,278,883 DMB-ECB-0070 PPDS Error." for one of our cognos report.

We found that setting the decimal precision to a lower number might resolve this issue.

Can anyone please let us know how to set this decimal precision to lower number. whether it can done on cognos report, package ?

Thanks,
Lokeswara
#26
Reporting / Re: Summarize first, then Cate...
Last post by MatusM - 04 Nov 2024 09:35:40 AM
Thank you, works well!
#27
Reporting / Re: Summarize first, then Cate...
Last post by MFGF - 04 Nov 2024 06:59:59 AM
Quote from: MatusM on 04 Nov 2024 03:45:41 AMHi,

my data looks like:

AccountItemBalance
AlphaItem A1500
AlphaItem A2800
AlphaItem A31200
BetaItem B1900
BetaItem B21500
GamaItem G1100
GamaItem G2200
GamaItem G3200
GamaItem G4200

In Cognos (12.0.3) report crosstab, I need to categorize Accounts into:
- Top Accounts with total Balance > 1000 per Account
vs
- Long Tail with lower Balance.

I'm doing this by calculated field:

Category
if ([Balance] >= 1000)
then ('Top Account')
else ('Long Tail')


But I'm not able to instruct Cognos to summarize Items first, just then categorize the Accounts.
So the result is:

AccountItemBalanceCategory
AlphaItem A1500Long Tail
AlphaItem A2800Long Tail
AlphaItem A31200Top Account
BetaItem B1900Long Tail
BetaItem B21500Top Account
GamaItem G1100Long Tail
GamaItem G2200Long Tail
GamaItem G3200Long Tail
GamaItem G4200Long Tail


But outcome I need is this:

AccountItemBalanceCategory
AlphaItem A1500Top Account
AlphaItem A2800Top Account
AlphaItem A31200Top Account
BetaItem B1900Top Account
BetaItem B21500Top Account
GamaItem G1100Long Tail
GamaItem G2200Long Tail
GamaItem G3200Long Tail
GamaItem G4200Long Tail

How do I achieve it, please?
Thank you!

Hi,

You can specify in the expression that you want to use the summary balance for each account, rather than the individual balance for each item. So your expression would be:

if (total([Balance] for [Account]) >= 1000)
then ('Top Account')
else ('Long Tail')

Cheers!

MF.
#28
Reporting / Summarize first, then Categori...
Last post by MatusM - 04 Nov 2024 03:45:41 AM
Hi,

my data looks like:

AccountItemBalance
AlphaItem A1500
AlphaItem A2800
AlphaItem A31200
BetaItem B1900
BetaItem B21500
GamaItem G1100
GamaItem G2200
GamaItem G3200
GamaItem G4200

In Cognos (12.0.3) report crosstab, I need to categorize Accounts into:
- Top Accounts with total Balance > 1000 per Account
vs
- Long Tail with lower Balance.

I'm doing this by calculated field:

Category
if ([Balance] >= 1000)
then ('Top Account')
else ('Long Tail')


But I'm not able to instruct Cognos to summarize Items first, just then categorize the Accounts.
So the result is:

AccountItemBalanceCategory
AlphaItem A1500Long Tail
AlphaItem A2800Long Tail
AlphaItem A31200Top Account
BetaItem B1900Long Tail
BetaItem B21500Top Account
GamaItem G1100Long Tail
GamaItem G2200Long Tail
GamaItem G3200Long Tail
GamaItem G4200Long Tail


But outcome I need is this:

AccountItemBalanceCategory
AlphaItem A1500Top Account
AlphaItem A2800Top Account
AlphaItem A31200Top Account
BetaItem B1900Top Account
BetaItem B21500Top Account
GamaItem G1100Long Tail
GamaItem G2200Long Tail
GamaItem G3200Long Tail
GamaItem G4200Long Tail

How do I achieve it, please?
Thank you!
#29
Data Modules / Re: Audit User Session
Last post by wlargou - 03 Nov 2024 06:06:18 AM
Hi,

Thank you for the feedback, yes we are using the COGIPF_ACTIONS table but it doesn't provide details on what data have been retrieved (which query have been run), as for Cognos Extended Audit it's more of an inventory tool tried to find some relevant documentation only found this one :
https://developer.ibm.com/tutorials/ibm-cognos-11-audit-extension/

If you have any other information please share.

Thank you
#30
Data Modules / Re: Navigation Path in Dataset
Last post by wlargou - 03 Nov 2024 05:36:39 AM
Thank you for the reply, what I mean is we want take advantage of the dataset caching performance, so once we create our data module we generally create a dataset from it. But it doesn't apply the cache to the navigation paths we define.