Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cognos Vs Business Obejcts

Status
Not open for further replies.

MrCognos14

Technical User
May 6, 2013
1
US
I need to do the following custom filter in a report for Cognos. But in Business objects looks like this:

@Select(LE Entity Corptax\LE Corptax Code) IN @Prompt('Enter entity corptax or entity label','A','LOV LE Entity Objects\Corptax Code',multi,free) OR @Select(LE Entity\LE Entity Label) IN @Prompt('Enter entity corptax or entity label','A','LOV LE Entity Objects\Corptax Code',multi,free)

OR

LE Corptax Code IN @Prompt('Enter entity corptax or entity label','A','LOV LE Entity Objects\Corptax Code',multi,free) OR LE Entity Label IN @Prompt('Enter entity corptax or entity label','A','LOV LE Entity Objects\Corptax Code',multi,free)


@Select is a simply a reference to a table name.
@prompt ('prompt text (1)', 'type (2)', 'list of values(3)', 'mono/multi(4)', 'free/constrained(5)')
@Prompt BO: Please click this link to find out more
Thanks anyone who could help regarding this issue !
 
Cognos? Are you talking about Report Studio?

If this is just a single report implementation, then you would do the following:

Define a value prompt within report studio and make sure this is a multiselect one. Associate a query that builds the list of values to be selected and assign a parameter like 'Corptaxcode' to te prompt.

With data queries you can now add a filter that references the parameter 'Corptaxcode' like:

[LE Corptax Code] in ?Corptaxcode? or [LE Entity Label] in ?Corptaxcode?

Ties Blom

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top