SlideShare una empresa de Scribd logo
1 de 34
S I T U A T I O N A L E X A M P L E S A N D P R O P E R
S Y N T A X F O R V A R I O U S C A S E S
B R Y A N L . M A C K
Cognos Macros
Why Do We Need Macros?
In Cognos, we dynamically filter data based on prompt
values input by the user.
When using Custom SQL for a report’s source, Cognos
provides filters for us to filter data.
But what exactly is it filtering?
Why Do We Need Macros?
Refer to the following 2 SQL scripts in SQL Developer:
 Query 1:
 Query 2:
The only difference in Query2 is the academic_period filter in the nested query; Query2
correctly filters our result set, as our desired output count is 2524.
Why Do We Need Macros?
Our first SQL Script is embedded to Cognos as a
Query, minus the academic period filter:
Then a filter is added to the query via Cognos
Why Do We Need Macros?
If we use term 201320, and export our result set to
Excel, we can see that we have 12148 results (the top 2
rows in Excel are header rows)
As we mentioned earlier, this is not our desired output.
Why Do We Need Macros?
Here is the SQL Cognos has generated:
The academic_period filter is being placed incorrectly within the query.
Why Do We Need Macros?
Let’s revisit slide 3’s results:
Query 1:
Query 2:
Shouldn’t we be limiting this to 2524 results? Cognos is not applying the
filter to the nested query
What is a Cognos Macro?
A Cognos macro allows you to place user-selected
prompt values wherever you’d like within custom SQL.
The macro allows you to manipulate the prompt values
where necessary, and use them for more precise
filtering and processing.
In our example, we want the filter to be placed in the
nested query rather than the outmost query.
Proof of Concept
We can filter the prompt values wherever we desire, in this case, within
the nested query:
We can see we now return 2524 rows
The macro worked and our results are correctly filtered. You can see the
macro in the SQL – but how does it work?
Macro Syntax
#prompt(ParameterName,Datatype,Defaultvalue,PreText,Sou
rce,PostText)#
ParameterName: Mandatory. This is what you named your prompt value’s parameter.
Datatype: Optional. The default value is ‘string’. Prompt values are validated. In the case of strings, the
provided value is enclosed in single quotation marks and embedded single quotation marks are doubled.
Defaultvalue: Optional. Value if the user makes no selection from an optional prompt
Pretext: Optional. Text to use before displaying the option the user inputs with the prompt.
Example: This is the open-parentheses when using #promptmany for an IN statement (we’ll get
to that in a bit)
Source: Optional. The value(s) selected in the prompt
Posttext: Optional. Text to use after displaying the option the user inputs with the prompt.
Example: This is the close-parentheses when using #promptmany for an IN statement
Ways I’ll Demonstrate Macros
Using Oracle join syntax, I will demonstrate all of the
following macro scenarios.
 Inner Join (Mandatory Prompts, Optional Prompts)
 Outer Join (Mandatory Prompts, Optional Prompts)
 Conditional Inner/Outer
 If optional prompt used – use inner join
 If optional prompt ignored – use outer join
 Date/Date Range (Mandatory Prompts, Optional Prompts)
 For use within a function
 Equal Operator (=) vs IN statement
 LIKE clause
 HAVING clause
Ways I Will NOT Demonstrate Macros
Many!
There are countless combinations of inner join, outer join,
mandatory/optional prompts, single/multi select,
characters/numbers/dates, etc. etc. etc.
I can’t possibly demonstrate every way to do this, so I will
try to build up your base knowledge so you can figure out
scenarios I have not demonstrated.
I will also not be using ANSI join syntax, I will be using
Oracle join syntax
Inner-Join Mandatory Macro
Compare characters (=)
<field> = #prompt('parm_multi_source')#
Compare characters (in)
<field> IN (#promptmany('parm_carrier')#)
Real example from a Cognos report:
Inner-Join Optional Macro
Compare Characters (=)
<field> =
(#prompt('parm_carrier','string',’<field>’)#)
Let’s say the field is “myfield” and the user selects the prompt value “I Hate
Cognos”. The generated SQL will be:
myfield = ‘I Hate Cognos’
If the user does not use the optional prompt, the macro will generate the following
SQL:
myfield = myfield
Note: You can convert to “IN” by changing the equal to the word IN, and change “prompt” to
“promptmany”
Inner-Join Optional Macro Examples
Outer-Join Mandatory Macro
Follow the same logic as Inner-Join Mandatory, just
add the plus sign for Oracle’s outer-join logic
and s.spriden_id(+) = (#prompt(‘myparam')#)
and s.spriden_id(+) IN (#promptmany(‘myparam’)#)
Outer-Join Mandatory Macro Example
Outer-Join Optional Macro
Compare Characters (=)
This will build out the entire AND statement for you
#prompt('parmYEAR','string','and 1=1','and pdrhioc_year(+) = ')#
Read this as: parmYear is my string parameter used in my prompt, when the user doesn’t use the prompt, insert
the text “and 1=1”, when the user uses the prompt insert “and pdrhioc_year(+) = “ followed by the value they
input.
Compare Characters (IN)
Option 1: build out the entire AND statement
#promptmany('parmYEAR','string','and 1=1','and pdrhioc_year(+) IN (','',')')#
The last 3 parameters are: (1) what to insert before the prompt value (2) The prompt value itself (3) what to insert
after the prompt value
Option 2: This requires the macro to be within an AND statement
and (a.account_entity_ind IN (#promptmany('ParameterEnt','string',sq('NotSelected'))#)
OR
('NotSelected') in (#promptmany('ParameterEnt','string',sq('NotSelected'))#)
)
The first part of the OR statement addresses the outer-join, the second part of the OR statement keeps the join in
tact when the optional prompt is not used.
Outer-Join Optional Macro Examples
Conditional Outer/Inner Join Macro
Requirements:
 Have an optional prompt
 If optional prompt selected, use inner join
 If optional prompted ignored, use outer join
and ad.account_uid = sar.person_uid
#prompt('ParameterStuAttr', 'string', '(+)', '/*', '', '*/'
)#
Conditional Outer/Inner Join Macro
 and ad.account_uid = sar.person_uid #prompt(
 'ParameterStuAttr', --parameter name
 'string', --DataType
 '(+)', --Default text (when prompt ignored)
 '/*', --text to precede the prompt text when used
 '', --inputs the value selected in the prompt
 '*/' --text to follow the value in prompt when used
 )#
When the prompt is used, the macro puts /* comments around the prompt value it is
inserting*/, so the code processes nothing and leaves the join (account_uid =
person_uid) as inner.
When the prompt is NOT used, the macro places (+) after the hard-coded join, thus
creating an outer join
Reminder: I am using Oracle outer-join syntax
Conditional Outer/Inner Join Macro Example
Date Prompts
Mandatory Inner:
Option 1: when using ISO 8601 date format
<field> = to_timestamp(#prompt(‘parm_date')#,'YYYY-
MM-DD"T"HH24:MI:SS.ff3')
Option 2: when using other date format standards
<field> = to_date(#prompt('parm_date')#,'yyyy-mm-dd')
Date Prompt Examples
Date Range
After exhaustive searching and testing, I have been
unable to find a way to extract the date range values
from a date range prompt with a macro, so you need to
create two individual date prompts (date_from and
date_to)….
Date Range Optional Prompt Example
(
(trunc(ad.entry_date) >=
trunc(to_date(#prompt('ParameterEntryFrom','string',sq('NotSelected'))#,'YYYY-MM-DD'))
OR
('NotSelected') = #prompt('ParameterEntryFrom','string',sq('NotSelected'))#
)
and
(trunc(ad.entry_date) <=
trunc(to_date(#prompt('ParameterEntryTo','string',sq('NotSelected'))#,'YYYY-MM-DD'))
OR
('NotSelected') = #prompt('ParameterEntryTo','string',sq('NotSelected'))#
)
)
This syntax uses an OR statement for each of the two parameters. The first
half of each OR block is for if the optional prompt is used, the second half is
for if the prompt is not used.
Note: I typed the code instead of screen shot here so I could color-code the parentheses and make the code
more readable for the example.
Date Range Mandatory Prompt Example
LIKE clause
To use a LIKE clause with optional, multi-select
prompt:
and eec.earn_code IN (select m.allowance from
mappings m where m.deductions like
('%'||#promptmany('parm_carrier','string','bd.carrier'
)#||'%'))
HAVING clause
Sometimes we need to filter on the aggregates, which
is used in SQL with the HAVING clause. Suppose we
have a prompt filtering on an aggregate amount that a
user types into a text prompt – how would we write
this in a macro? Add a caveat: this is an optional
prompt
having sum(ad.balance) >=
(#prompt('ParameterBalance','string','sum(ad.balance
)')#)
Having Clause Example
Function on top of Prompt Value
Sometimes we will get a prompt value and need to use
it to calculate the proper filter. In this case, we use the
prompt value (parm_s) as a parameter to a function
(odsmgr.f_get_pidm) to return a different value upon
which we will filter. We simply wrap the entire macro
within the function call:
And person_uid in
odsmgr.f_get_pidm(#promptmany('parm_s','string','p
erson_uid')#)
Case Statement/Function using Date Prompt Macro
Note: formatted in SQL developer for readability
Wrapping Up
I hope you find this somewhat helpful.
Even if you aren’t using the Oracle RDBMS, you can
use these syntax examples to create macros that work
for you.
If you have other concrete examples you’d like me to
add to this presentation, feel free to let me know and
I’ll consider adding them here.
Thank You!
Bryan L. Mack
fleetmack@gmail.com

Más contenido relacionado

La actualidad más candente

Multi-armed Bandits
Multi-armed BanditsMulti-armed Bandits
Multi-armed BanditsDongmin Lee
 
Time series forecasting with machine learning
Time series forecasting with machine learningTime series forecasting with machine learning
Time series forecasting with machine learningDr Wei Liu
 
Machine learning
Machine learningMachine learning
Machine learningRohit Kumar
 
Sigmoid function machine learning made simple
Sigmoid function  machine learning made simpleSigmoid function  machine learning made simple
Sigmoid function machine learning made simpleDevansh16
 
Lecture 3: Basic Concepts of Machine Learning - Induction & Evaluation
Lecture 3: Basic Concepts of Machine Learning - Induction & EvaluationLecture 3: Basic Concepts of Machine Learning - Induction & Evaluation
Lecture 3: Basic Concepts of Machine Learning - Induction & EvaluationMarina Santini
 
Active Learning in Collaborative Filtering Recommender Systems : a Survey
Active Learning in Collaborative Filtering Recommender Systems : a SurveyActive Learning in Collaborative Filtering Recommender Systems : a Survey
Active Learning in Collaborative Filtering Recommender Systems : a SurveyUniversity of Bergen
 
Mining high speed data streams: Hoeffding and VFDT
Mining high speed data streams: Hoeffding and VFDTMining high speed data streams: Hoeffding and VFDT
Mining high speed data streams: Hoeffding and VFDTDavide Gallitelli
 
Multi-Armed Bandit and Applications
Multi-Armed Bandit and ApplicationsMulti-Armed Bandit and Applications
Multi-Armed Bandit and ApplicationsSangwoo Mo
 
Anomaly detection (Unsupervised Learning) in Machine Learning
Anomaly detection (Unsupervised Learning) in Machine LearningAnomaly detection (Unsupervised Learning) in Machine Learning
Anomaly detection (Unsupervised Learning) in Machine LearningKuppusamy P
 
3 problem-solving-
3 problem-solving-3 problem-solving-
3 problem-solving-Mhd Sb
 
Hidden Markov Model & It's Application in Python
Hidden Markov Model & It's Application in PythonHidden Markov Model & It's Application in Python
Hidden Markov Model & It's Application in PythonAbhay Dodiya
 

La actualidad más candente (20)

Machine Learning by Rj
Machine Learning by RjMachine Learning by Rj
Machine Learning by Rj
 
GoogLeNet.pptx
GoogLeNet.pptxGoogLeNet.pptx
GoogLeNet.pptx
 
Chapter 5 of 1
Chapter 5 of 1Chapter 5 of 1
Chapter 5 of 1
 
Multi-armed Bandits
Multi-armed BanditsMulti-armed Bandits
Multi-armed Bandits
 
Time series forecasting with machine learning
Time series forecasting with machine learningTime series forecasting with machine learning
Time series forecasting with machine learning
 
Machine learning
Machine learningMachine learning
Machine learning
 
Web mining
Web miningWeb mining
Web mining
 
Confusion Matrix Explained
Confusion Matrix ExplainedConfusion Matrix Explained
Confusion Matrix Explained
 
Sigmoid function machine learning made simple
Sigmoid function  machine learning made simpleSigmoid function  machine learning made simple
Sigmoid function machine learning made simple
 
Lecture 3: Basic Concepts of Machine Learning - Induction & Evaluation
Lecture 3: Basic Concepts of Machine Learning - Induction & EvaluationLecture 3: Basic Concepts of Machine Learning - Induction & Evaluation
Lecture 3: Basic Concepts of Machine Learning - Induction & Evaluation
 
Active Learning in Collaborative Filtering Recommender Systems : a Survey
Active Learning in Collaborative Filtering Recommender Systems : a SurveyActive Learning in Collaborative Filtering Recommender Systems : a Survey
Active Learning in Collaborative Filtering Recommender Systems : a Survey
 
Anomaly Detection
Anomaly DetectionAnomaly Detection
Anomaly Detection
 
Web mining
Web miningWeb mining
Web mining
 
Fayyad model in data mining
Fayyad model in data miningFayyad model in data mining
Fayyad model in data mining
 
Mining high speed data streams: Hoeffding and VFDT
Mining high speed data streams: Hoeffding and VFDTMining high speed data streams: Hoeffding and VFDT
Mining high speed data streams: Hoeffding and VFDT
 
Multi-Armed Bandit and Applications
Multi-Armed Bandit and ApplicationsMulti-Armed Bandit and Applications
Multi-Armed Bandit and Applications
 
Anomaly detection (Unsupervised Learning) in Machine Learning
Anomaly detection (Unsupervised Learning) in Machine LearningAnomaly detection (Unsupervised Learning) in Machine Learning
Anomaly detection (Unsupervised Learning) in Machine Learning
 
3 problem-solving-
3 problem-solving-3 problem-solving-
3 problem-solving-
 
Hidden Markov Model & It's Application in Python
Hidden Markov Model & It's Application in PythonHidden Markov Model & It's Application in Python
Hidden Markov Model & It's Application in Python
 
Data mining
Data miningData mining
Data mining
 

Similar a Cognos Macros: Situational Examples & Syntax

Inline functions & macros
Inline functions & macrosInline functions & macros
Inline functions & macrosAnand Kumar
 
Assignment 13assg-13.cppAssignment 13assg-13.cpp   @auth.docx
Assignment 13assg-13.cppAssignment 13assg-13.cpp   @auth.docxAssignment 13assg-13.cppAssignment 13assg-13.cpp   @auth.docx
Assignment 13assg-13.cppAssignment 13assg-13.cpp   @auth.docxbraycarissa250
 
AIRLINE FARE PRICE PREDICTION
AIRLINE FARE PRICE PREDICTIONAIRLINE FARE PRICE PREDICTION
AIRLINE FARE PRICE PREDICTIONIRJET Journal
 
Intake 38 data access 3
Intake 38 data access 3Intake 38 data access 3
Intake 38 data access 3Mahmoud Ouf
 
IRJET- Implementation and Unittests of AWS, Google Storage (Cloud) and Am...
IRJET-  	  Implementation and Unittests of AWS, Google Storage (Cloud) and Am...IRJET-  	  Implementation and Unittests of AWS, Google Storage (Cloud) and Am...
IRJET- Implementation and Unittests of AWS, Google Storage (Cloud) and Am...IRJET Journal
 
VCE Unit 01 (1).pptx
VCE Unit 01 (1).pptxVCE Unit 01 (1).pptx
VCE Unit 01 (1).pptxskilljiolms
 
Java fundamentals
Java fundamentalsJava fundamentals
Java fundamentalsHCMUTE
 
C programming language tutorial
C programming language tutorial C programming language tutorial
C programming language tutorial javaTpoint s
 
SAS Macros part 1
SAS Macros part 1SAS Macros part 1
SAS Macros part 1venkatam
 
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...Indu32
 
import java.util.Scanner;Henry Cutler ID 1234 7202.docx
import java.util.Scanner;Henry Cutler ID 1234  7202.docximport java.util.Scanner;Henry Cutler ID 1234  7202.docx
import java.util.Scanner;Henry Cutler ID 1234 7202.docxwilcockiris
 
C language Unit 2 Slides, UPTU C language
C language Unit 2 Slides, UPTU C languageC language Unit 2 Slides, UPTU C language
C language Unit 2 Slides, UPTU C languageRakesh Roshan
 

Similar a Cognos Macros: Situational Examples & Syntax (20)

Cognos Macros
Cognos MacrosCognos Macros
Cognos Macros
 
Inline functions & macros
Inline functions & macrosInline functions & macros
Inline functions & macros
 
Unit 5 Part 1 Macros
Unit 5 Part 1 MacrosUnit 5 Part 1 Macros
Unit 5 Part 1 Macros
 
Assignment 13assg-13.cppAssignment 13assg-13.cpp   @auth.docx
Assignment 13assg-13.cppAssignment 13assg-13.cpp   @auth.docxAssignment 13assg-13.cppAssignment 13assg-13.cpp   @auth.docx
Assignment 13assg-13.cppAssignment 13assg-13.cpp   @auth.docx
 
AIRLINE FARE PRICE PREDICTION
AIRLINE FARE PRICE PREDICTIONAIRLINE FARE PRICE PREDICTION
AIRLINE FARE PRICE PREDICTION
 
Intake 38 data access 3
Intake 38 data access 3Intake 38 data access 3
Intake 38 data access 3
 
IRJET- Implementation and Unittests of AWS, Google Storage (Cloud) and Am...
IRJET-  	  Implementation and Unittests of AWS, Google Storage (Cloud) and Am...IRJET-  	  Implementation and Unittests of AWS, Google Storage (Cloud) and Am...
IRJET- Implementation and Unittests of AWS, Google Storage (Cloud) and Am...
 
VCE Unit 01 (1).pptx
VCE Unit 01 (1).pptxVCE Unit 01 (1).pptx
VCE Unit 01 (1).pptx
 
Java fundamentals
Java fundamentalsJava fundamentals
Java fundamentals
 
C++.pptx
C++.pptxC++.pptx
C++.pptx
 
Chapter 2
Chapter 2Chapter 2
Chapter 2
 
Intake 37 linq2
Intake 37 linq2Intake 37 linq2
Intake 37 linq2
 
C programming language tutorial
C programming language tutorial C programming language tutorial
C programming language tutorial
 
SAS Macros part 1
SAS Macros part 1SAS Macros part 1
SAS Macros part 1
 
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
 
handout6.pdf
handout6.pdfhandout6.pdf
handout6.pdf
 
02basics
02basics02basics
02basics
 
import java.util.Scanner;Henry Cutler ID 1234 7202.docx
import java.util.Scanner;Henry Cutler ID 1234  7202.docximport java.util.Scanner;Henry Cutler ID 1234  7202.docx
import java.util.Scanner;Henry Cutler ID 1234 7202.docx
 
Feature Engineering in NLP.pdf
Feature Engineering in NLP.pdfFeature Engineering in NLP.pdf
Feature Engineering in NLP.pdf
 
C language Unit 2 Slides, UPTU C language
C language Unit 2 Slides, UPTU C languageC language Unit 2 Slides, UPTU C language
C language Unit 2 Slides, UPTU C language
 

Más de Bryan L. Mack

Custom Star Creation for Ellucain's Enterprise Data Warehouse
Custom Star Creation for Ellucain's Enterprise Data WarehouseCustom Star Creation for Ellucain's Enterprise Data Warehouse
Custom Star Creation for Ellucain's Enterprise Data WarehouseBryan L. Mack
 
Extending the Admin UI: Proactively Preventing Poor BPRA Load/Refresh Perform...
Extending the Admin UI: Proactively Preventing Poor BPRA Load/Refresh Perform...Extending the Admin UI: Proactively Preventing Poor BPRA Load/Refresh Perform...
Extending the Admin UI: Proactively Preventing Poor BPRA Load/Refresh Perform...Bryan L. Mack
 
Oracle's Listagg Function - Uses and Duplicate Removal
Oracle's Listagg Function - Uses and Duplicate RemovalOracle's Listagg Function - Uses and Duplicate Removal
Oracle's Listagg Function - Uses and Duplicate RemovalBryan L. Mack
 
EDW PK Violation Troubleshooting Made Easy
EDW PK Violation Troubleshooting Made EasyEDW PK Violation Troubleshooting Made Easy
EDW PK Violation Troubleshooting Made EasyBryan L. Mack
 
SRP Implementation Success in a Complex Environment
SRP Implementation Success in a Complex EnvironmentSRP Implementation Success in a Complex Environment
SRP Implementation Success in a Complex EnvironmentBryan L. Mack
 
Oracle's ListAgg Function & Pertinent Use
Oracle's ListAgg Function & Pertinent UseOracle's ListAgg Function & Pertinent Use
Oracle's ListAgg Function & Pertinent UseBryan L. Mack
 
ODS Data Sleuth: Tracking Down Calculated Fields in Banner
ODS Data Sleuth: Tracking Down Calculated Fields in BannerODS Data Sleuth: Tracking Down Calculated Fields in Banner
ODS Data Sleuth: Tracking Down Calculated Fields in BannerBryan L. Mack
 

Más de Bryan L. Mack (7)

Custom Star Creation for Ellucain's Enterprise Data Warehouse
Custom Star Creation for Ellucain's Enterprise Data WarehouseCustom Star Creation for Ellucain's Enterprise Data Warehouse
Custom Star Creation for Ellucain's Enterprise Data Warehouse
 
Extending the Admin UI: Proactively Preventing Poor BPRA Load/Refresh Perform...
Extending the Admin UI: Proactively Preventing Poor BPRA Load/Refresh Perform...Extending the Admin UI: Proactively Preventing Poor BPRA Load/Refresh Perform...
Extending the Admin UI: Proactively Preventing Poor BPRA Load/Refresh Perform...
 
Oracle's Listagg Function - Uses and Duplicate Removal
Oracle's Listagg Function - Uses and Duplicate RemovalOracle's Listagg Function - Uses and Duplicate Removal
Oracle's Listagg Function - Uses and Duplicate Removal
 
EDW PK Violation Troubleshooting Made Easy
EDW PK Violation Troubleshooting Made EasyEDW PK Violation Troubleshooting Made Easy
EDW PK Violation Troubleshooting Made Easy
 
SRP Implementation Success in a Complex Environment
SRP Implementation Success in a Complex EnvironmentSRP Implementation Success in a Complex Environment
SRP Implementation Success in a Complex Environment
 
Oracle's ListAgg Function & Pertinent Use
Oracle's ListAgg Function & Pertinent UseOracle's ListAgg Function & Pertinent Use
Oracle's ListAgg Function & Pertinent Use
 
ODS Data Sleuth: Tracking Down Calculated Fields in Banner
ODS Data Sleuth: Tracking Down Calculated Fields in BannerODS Data Sleuth: Tracking Down Calculated Fields in Banner
ODS Data Sleuth: Tracking Down Calculated Fields in Banner
 

Último

Edukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxEdukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxolyaivanovalion
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionfulawalesam
 
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...amitlee9823
 
Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxfirstjob4
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...SUHANI PANDEY
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptxAnupama Kate
 
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfadriantubila
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxolyaivanovalion
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...amitlee9823
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxolyaivanovalion
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Valters Lauzums
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Researchmichael115558
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...amitlee9823
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxolyaivanovalion
 

Último (20)

Edukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxEdukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFx
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interaction
 
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
Sampling (random) method and Non random.ppt
Sampling (random) method and Non random.pptSampling (random) method and Non random.ppt
Sampling (random) method and Non random.ppt
 
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in  KishangarhDelhi 99530 vip 56974 Genuine Escort Service Call Girls in  Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
 
Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptx
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx
 
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptx
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptx
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptx
 

Cognos Macros: Situational Examples & Syntax

  • 1. S I T U A T I O N A L E X A M P L E S A N D P R O P E R S Y N T A X F O R V A R I O U S C A S E S B R Y A N L . M A C K Cognos Macros
  • 2. Why Do We Need Macros? In Cognos, we dynamically filter data based on prompt values input by the user. When using Custom SQL for a report’s source, Cognos provides filters for us to filter data. But what exactly is it filtering?
  • 3. Why Do We Need Macros? Refer to the following 2 SQL scripts in SQL Developer:  Query 1:  Query 2: The only difference in Query2 is the academic_period filter in the nested query; Query2 correctly filters our result set, as our desired output count is 2524.
  • 4. Why Do We Need Macros? Our first SQL Script is embedded to Cognos as a Query, minus the academic period filter: Then a filter is added to the query via Cognos
  • 5. Why Do We Need Macros? If we use term 201320, and export our result set to Excel, we can see that we have 12148 results (the top 2 rows in Excel are header rows) As we mentioned earlier, this is not our desired output.
  • 6. Why Do We Need Macros? Here is the SQL Cognos has generated: The academic_period filter is being placed incorrectly within the query.
  • 7. Why Do We Need Macros? Let’s revisit slide 3’s results: Query 1: Query 2: Shouldn’t we be limiting this to 2524 results? Cognos is not applying the filter to the nested query
  • 8. What is a Cognos Macro? A Cognos macro allows you to place user-selected prompt values wherever you’d like within custom SQL. The macro allows you to manipulate the prompt values where necessary, and use them for more precise filtering and processing. In our example, we want the filter to be placed in the nested query rather than the outmost query.
  • 9. Proof of Concept We can filter the prompt values wherever we desire, in this case, within the nested query: We can see we now return 2524 rows The macro worked and our results are correctly filtered. You can see the macro in the SQL – but how does it work?
  • 10. Macro Syntax #prompt(ParameterName,Datatype,Defaultvalue,PreText,Sou rce,PostText)# ParameterName: Mandatory. This is what you named your prompt value’s parameter. Datatype: Optional. The default value is ‘string’. Prompt values are validated. In the case of strings, the provided value is enclosed in single quotation marks and embedded single quotation marks are doubled. Defaultvalue: Optional. Value if the user makes no selection from an optional prompt Pretext: Optional. Text to use before displaying the option the user inputs with the prompt. Example: This is the open-parentheses when using #promptmany for an IN statement (we’ll get to that in a bit) Source: Optional. The value(s) selected in the prompt Posttext: Optional. Text to use after displaying the option the user inputs with the prompt. Example: This is the close-parentheses when using #promptmany for an IN statement
  • 11. Ways I’ll Demonstrate Macros Using Oracle join syntax, I will demonstrate all of the following macro scenarios.  Inner Join (Mandatory Prompts, Optional Prompts)  Outer Join (Mandatory Prompts, Optional Prompts)  Conditional Inner/Outer  If optional prompt used – use inner join  If optional prompt ignored – use outer join  Date/Date Range (Mandatory Prompts, Optional Prompts)  For use within a function  Equal Operator (=) vs IN statement  LIKE clause  HAVING clause
  • 12. Ways I Will NOT Demonstrate Macros Many! There are countless combinations of inner join, outer join, mandatory/optional prompts, single/multi select, characters/numbers/dates, etc. etc. etc. I can’t possibly demonstrate every way to do this, so I will try to build up your base knowledge so you can figure out scenarios I have not demonstrated. I will also not be using ANSI join syntax, I will be using Oracle join syntax
  • 13. Inner-Join Mandatory Macro Compare characters (=) <field> = #prompt('parm_multi_source')# Compare characters (in) <field> IN (#promptmany('parm_carrier')#) Real example from a Cognos report:
  • 14. Inner-Join Optional Macro Compare Characters (=) <field> = (#prompt('parm_carrier','string',’<field>’)#) Let’s say the field is “myfield” and the user selects the prompt value “I Hate Cognos”. The generated SQL will be: myfield = ‘I Hate Cognos’ If the user does not use the optional prompt, the macro will generate the following SQL: myfield = myfield Note: You can convert to “IN” by changing the equal to the word IN, and change “prompt” to “promptmany”
  • 16. Outer-Join Mandatory Macro Follow the same logic as Inner-Join Mandatory, just add the plus sign for Oracle’s outer-join logic and s.spriden_id(+) = (#prompt(‘myparam')#) and s.spriden_id(+) IN (#promptmany(‘myparam’)#)
  • 18. Outer-Join Optional Macro Compare Characters (=) This will build out the entire AND statement for you #prompt('parmYEAR','string','and 1=1','and pdrhioc_year(+) = ')# Read this as: parmYear is my string parameter used in my prompt, when the user doesn’t use the prompt, insert the text “and 1=1”, when the user uses the prompt insert “and pdrhioc_year(+) = “ followed by the value they input. Compare Characters (IN) Option 1: build out the entire AND statement #promptmany('parmYEAR','string','and 1=1','and pdrhioc_year(+) IN (','',')')# The last 3 parameters are: (1) what to insert before the prompt value (2) The prompt value itself (3) what to insert after the prompt value Option 2: This requires the macro to be within an AND statement and (a.account_entity_ind IN (#promptmany('ParameterEnt','string',sq('NotSelected'))#) OR ('NotSelected') in (#promptmany('ParameterEnt','string',sq('NotSelected'))#) ) The first part of the OR statement addresses the outer-join, the second part of the OR statement keeps the join in tact when the optional prompt is not used.
  • 20. Conditional Outer/Inner Join Macro Requirements:  Have an optional prompt  If optional prompt selected, use inner join  If optional prompted ignored, use outer join and ad.account_uid = sar.person_uid #prompt('ParameterStuAttr', 'string', '(+)', '/*', '', '*/' )#
  • 21. Conditional Outer/Inner Join Macro  and ad.account_uid = sar.person_uid #prompt(  'ParameterStuAttr', --parameter name  'string', --DataType  '(+)', --Default text (when prompt ignored)  '/*', --text to precede the prompt text when used  '', --inputs the value selected in the prompt  '*/' --text to follow the value in prompt when used  )# When the prompt is used, the macro puts /* comments around the prompt value it is inserting*/, so the code processes nothing and leaves the join (account_uid = person_uid) as inner. When the prompt is NOT used, the macro places (+) after the hard-coded join, thus creating an outer join Reminder: I am using Oracle outer-join syntax
  • 23. Date Prompts Mandatory Inner: Option 1: when using ISO 8601 date format <field> = to_timestamp(#prompt(‘parm_date')#,'YYYY- MM-DD"T"HH24:MI:SS.ff3') Option 2: when using other date format standards <field> = to_date(#prompt('parm_date')#,'yyyy-mm-dd')
  • 25. Date Range After exhaustive searching and testing, I have been unable to find a way to extract the date range values from a date range prompt with a macro, so you need to create two individual date prompts (date_from and date_to)….
  • 26. Date Range Optional Prompt Example ( (trunc(ad.entry_date) >= trunc(to_date(#prompt('ParameterEntryFrom','string',sq('NotSelected'))#,'YYYY-MM-DD')) OR ('NotSelected') = #prompt('ParameterEntryFrom','string',sq('NotSelected'))# ) and (trunc(ad.entry_date) <= trunc(to_date(#prompt('ParameterEntryTo','string',sq('NotSelected'))#,'YYYY-MM-DD')) OR ('NotSelected') = #prompt('ParameterEntryTo','string',sq('NotSelected'))# ) ) This syntax uses an OR statement for each of the two parameters. The first half of each OR block is for if the optional prompt is used, the second half is for if the prompt is not used. Note: I typed the code instead of screen shot here so I could color-code the parentheses and make the code more readable for the example.
  • 27. Date Range Mandatory Prompt Example
  • 28. LIKE clause To use a LIKE clause with optional, multi-select prompt: and eec.earn_code IN (select m.allowance from mappings m where m.deductions like ('%'||#promptmany('parm_carrier','string','bd.carrier' )#||'%'))
  • 29. HAVING clause Sometimes we need to filter on the aggregates, which is used in SQL with the HAVING clause. Suppose we have a prompt filtering on an aggregate amount that a user types into a text prompt – how would we write this in a macro? Add a caveat: this is an optional prompt having sum(ad.balance) >= (#prompt('ParameterBalance','string','sum(ad.balance )')#)
  • 31. Function on top of Prompt Value Sometimes we will get a prompt value and need to use it to calculate the proper filter. In this case, we use the prompt value (parm_s) as a parameter to a function (odsmgr.f_get_pidm) to return a different value upon which we will filter. We simply wrap the entire macro within the function call: And person_uid in odsmgr.f_get_pidm(#promptmany('parm_s','string','p erson_uid')#)
  • 32. Case Statement/Function using Date Prompt Macro Note: formatted in SQL developer for readability
  • 33. Wrapping Up I hope you find this somewhat helpful. Even if you aren’t using the Oracle RDBMS, you can use these syntax examples to create macros that work for you. If you have other concrete examples you’d like me to add to this presentation, feel free to let me know and I’ll consider adding them here.
  • 34. Thank You! Bryan L. Mack fleetmack@gmail.com