cognos

Save Cognos report as .xlsx on local drive

亡梦爱人 提交于 2021-02-11 14:17:06
问题 I'm trying to figure out if it is possible to save a Cognos report as a .xlsx file to a local drive, and how to do it. We are using CA 11.1.6, on-premise. Who can help me out? Thanks in advance, Edwin 回答1: You do it via the run as menu option. If you are editing a report, there's a button for run as. If the report is saved, it exists as a menu item on the context menu. https://www.ibm.com/support/knowledgecenter/SSEP7J_11.1.0/com.ibm.swg.ba.cognos.ug_cr_rptstd.doc/c_cr_rptstd_intrd_producing

Optimizing huge value list in Teradata without volatile tables

拜拜、爱过 提交于 2021-01-28 04:11:30
问题 Have a value list like` `where a.c1 in ( list ) ` Then shoving the list in the volatile table is the best way out. However this is being done via cognos & IBM isn't smart enough to know what Teradata's volatile table is. I wish It was so I could use exclusion logic Exists to go through the volatile table contents. So without volatile table , I have a value list where a.c1 in ( list ) which has like 5K values. Keeping that list in the report is proving expensive. I wondered if it was possible

How to connect internal private DB2 to Cognos Dynamic Dashboard Embedded on IBM Cloud

你。 提交于 2020-08-20 10:46:39
问题 Im working on cognos dashboard embedded using the reference from - Cognos Dashboard embedded. but instead of csv i'm working on JDBC data sources. i'm trying to connect to JDBC data source as - "module": { "xsd": "https://ibm.com/daas/module/1.0/module.xsd", "source": { "id": "StringID", "jdbc": { "jdbcUrl": "jdbcUrl: `jdbc:db2://DATABASE-HOST:50000/YOURDB`", "driverClassName": "com.ibm.db2.jcc.DB2Driver", "schema": "DEFAULTSCHEMA" }, "user": "user_name", "password": "password" }, "table": {

How to connect internal private DB2 to Cognos Dynamic Dashboard Embedded on IBM Cloud

↘锁芯ラ 提交于 2020-08-20 10:40:08
问题 Im working on cognos dashboard embedded using the reference from - Cognos Dashboard embedded. but instead of csv i'm working on JDBC data sources. i'm trying to connect to JDBC data source as - "module": { "xsd": "https://ibm.com/daas/module/1.0/module.xsd", "source": { "id": "StringID", "jdbc": { "jdbcUrl": "jdbcUrl: `jdbc:db2://DATABASE-HOST:50000/YOURDB`", "driverClassName": "com.ibm.db2.jcc.DB2Driver", "schema": "DEFAULTSCHEMA" }, "user": "user_name", "password": "password" }, "table": {

Migrate report from COGNOS to SQL Server

混江龙づ霸主 提交于 2020-08-06 03:45:40
问题 I have the following query generated in a Cognos report. My problem is I need it to work, with the same logic / filter in SQL Server. Can the filter below (COGNOS syntax) be generated to work in the same way, like a WHERE in SQL Server? select * from dbo.ia_code group by client__iacode.ia_code, client__iacode.ia_short_descr ------ here my problem filter (rank() over ( at client__iacode.ia_code order by XCOUNT(client.client_code at client__iacode.ia_code,client.client_id for client__iacode.ia

Convert IBM Cognos SQL which contains a filter to Microsoft SQL Server Query

喜夏-厌秋 提交于 2020-08-05 09:51:11
问题 I'm trying to convert IBM Cognos SQL which contains a filter to Microsoft SQL Server Query. I tried to apply the filter in the Microsoft SQL Server Query, but it didn't work. Here the IBM Cognos Query: IBM Cognos SQL select rank() over ( at client__iacode.ia_code order by XCOUNT(client_document.client_document_id for client__iacode.ia_code ) desc nulls last) as Rank_IA, client__iacode.ia_code as IA_Code, client__iacode.ia_short_descr as IA_Short_Descr, XCOUNT(client_document.client_document

Cognos v11 SDK Parameter Passing

[亡魂溺海] 提交于 2020-05-17 06:45:26
问题 I have a webpage where the users can pick (n) records to print. Is there a way to send an array of Id's to Cognos? Or is it better to save them off in a table or xml file and have cognos use that as a datasource? 回答1: So you just create multiple simpleParmValueItems parameterValue[] parameters = new parameterValue[1]; parameters[0] = new parameterValue(); parameters[0].name = "variableName"; parmValueItem[] pvi = new parmValueItem[2]; simpleParmValueItem item = new simpleParmValueItem(); item

Cognos v11 SDK Parameter Passing

百般思念 提交于 2020-05-17 06:45:06
问题 I have a webpage where the users can pick (n) records to print. Is there a way to send an array of Id's to Cognos? Or is it better to save them off in a table or xml file and have cognos use that as a datasource? 回答1: So you just create multiple simpleParmValueItems parameterValue[] parameters = new parameterValue[1]; parameters[0] = new parameterValue(); parameters[0].name = "variableName"; parmValueItem[] pvi = new parmValueItem[2]; simpleParmValueItem item = new simpleParmValueItem(); item

Send Cognos Burst Reporting to multiple emails

佐手、 提交于 2020-03-24 12:04:30
问题 I have a few reports that need to be sent form hourly certain intervals during the day. I know how to schedule burst jobs and they send out fine, but i am being tasked with sending that same exact thing to "CC" that persons mananagerl1 and managerl2 Lets say part of the email table looks like Name | mgr1 | mgr2 | email | mgr1eml | mgr2email normally i burst to email and group by name how would i burst to all three emails without having to create 3 different reports? 回答1: It's been a while,

Cognos Report Studio (case statement) - Syntax error

﹥>﹥吖頭↗ 提交于 2020-01-25 00:52:53
问题 I have a case statement in Cognos report studio in which if the date is 1st of the current month of previous year then it should fetch data for last whole month (1 to the last date) data of the previous year. I think it is a syntax error. Below is the code that I'm sharing.Thanks in advance! Please let me know in case of concerns. case when [Corporate Calendar_BL].[Receive Date Details].[Receive Date - RD] = _first_of_month(_add_years(current_date,-1)) then [Corporate Calendar_BL].[Receive