Saturday 25 October 2014

Cognos Real time Questions And Answers

What is a Fact Table?

A fact table is also a Table in the database contains Facts (Measures such as quantity sold,
revenue, account balance)  and foreign keys. ( These keys will be used to connect to various 
dimension tables such as Product, Time, Customer, Staff  to get information like product name,
 staff name, customer name etc..)

Take a look at the following Image.. The yellow shaded columns are fact columns and the
remaining columns are key columns , which will be used to connect to dimension tables..

What are Dimensional Tables..?

Dimension Tables are also tables and contains descriptive information used to describe the
rows in the fact table. look at the following fact table row....
There is no product Name, no staff name, no Customer name. With out  having these names, 
how do you describe the qty_sold as 1 and unit_sales_price as 200..?  We can't..!

By  looking prod_id (3), customer_id (5) in the product dimension and Customer dimension, 
we will get product name as "Santoor" and customer name  as "Jhon". So, by using dimensional
 tables we can describe fact rows with information such as product name, customer name etc..

Cognos Report Studio: Prompt Expressions between Relational and Dimensional Packages..

Prompt expressions use the following syntax, where p represents the parameter name.
You can also use these expressions to create parameterized data items.
Relational: Detail Filter
Dimensional: slicer expression or filter expressions
[data item] = ?p?
for single-select prompts
[level or hierarchy]->?p?
For single-select member prompts and master detail relationships
[data item] in ?p?
for multi-select prompts
set([level or hierarchy]->?p?)
For multi-select member prompts

Difference between group by clause and order by clause

In a single sentence we can differentiate group by clause and order by clause as follows..

group by: This clause is used to group the records of a table based on their common properties and then we apply group functions such as sum(), max(), min(), count() on the groups.
order by: This clause is used to sort ( either ascending or descending ) the records based on a field or column of the table

EXPLANATION ( group by )
Group by clause is used to group the rows based on their common properties. For example, we can group the records of employee table by department, by manager, by job etc.,
See the following table….
If we apply grouping on departments column, the records will be grouped based on departments as follows..
If we apply grouping on Manager column, the records will be arranged as follows..
Advantages of grouping:
We can apply group functions such as sum(), max(), min(), count()  on  groups  to find total salary being drawn by each and every group, we can find maximum salary for each group, we can find number of employees have been in each and every group, etc..
For example let us try to find total salary being drawn by each  and every departments..

Select  department, sum(Sal)  from EMPLOYEE group by department;

When we execute the above query, the execution will be done in the following steps
1)      1)The records will be grouped based on departments
2)      2)Totals will be calculated for each and every group
3)      3)One record will be returned from  each group as a result
See the following transitions…
Do's and Dont's:
1) All the columns that have been written after "select" clause must appear in group by clause
Ex:  select  department, job, sum(sal)  from employee group by department;
the above query is wrong, because the column "job" was not included after group by clause. the correct is...
       select  department, job, sum(sal)  from employee group by department,job;
2) whatever the column we use in group function, that need not to appear in group by clause. In the above   query the column "sal"  has been used in sum( ) function. Here, the column "sal" is not necessary to be appeared in the group by clause.

EXPLANATION ( order by )
order by clause can only be used to sort the records based on values of a column and we cant apply any group functions. There are two types of sortings, 1) Ascending  2) Descending

Ascending: This is the default order of order by clause. This method arranges elements in A to Z(0-9) order

select * from employee order by ename;

Descending : This method arranges elements in Z to A (9 to 0) order.

select * from employee order by ename desc;

Fact less Fact Table?

Fact less Fact table does not contain any facts. Generally Fact less fact tables are used to record the events such as students attendance, attendance of participants for an Event like a Meeting. Actually this is not a Fact table but due its position we should call it as Fact table without facts.. Look at the following image..

See the attendance Table in the Image, There is no measure or fact but Attendance Table sits like a Fact table and also have the connections to dimension tables and hence we can say that it is Fact Table and since it does not contain any measures so that we can call it as fact less fact table.


Now Let us understand the use of the Attendance Fact less Fact table....



If a student attended a class then we enter a Record in Attendance table else no row will  be stored. Only aggregation here is possible only count


Making the Size of Select & Search Prompt Dynamic

By default, The width of Select & Search prompt is fixed and therefore wide text will cut off.....
Note: The following Technique is only Applicable for Cognos 8.4  Fix Pack 2 and Higher..


STEPS:



1) Locate for a File properties.js   in the location ...c8\webcontent\prompting (on the machine where you installed cognos 8 gateway)
2) Take a back of  it ( This backup is useful to restore the file properties.js if any thing goes wrong)3) Open the file with any Text editor and search for the line..    "SYSTEMPROPERTY_CSEARCH_AUTO_RESIZE_RESULT_LIST=FALSE"4)  Replace FALSE with TRUE
5) Save the file

6) Launch the cognos and check the prompt you can see as follows.

Relational VS Dimensional objects


COGNOS Report Studio FAQ’s


Q. What is Condition Explorer in Report Studio?

Ø  Condition Explorer allows you to manage the variables that are being used in the report.

Q. What is a Page set in Cognos Report Studio?

Ø  The set of pages to render according to a grouping structure.

Q. What are classes in Cognos Report Studio?

Ø  Classes provide a default style to be applied to the objects.

Q. How you do “Conditional Highlighting” on a report in Report Studio?

Ø  The steps to add conditional highlighting to a report are listed below:
a)     Select the list column body for which you want to set conditional highlighting.
b)    From the Style toolbar, click Conditional Styles.
c)     In the New Conditional Style list, select Advanced Conditional Style.
d)    Type a name for the style. Click on New Advanced Condition.
e)     In the Expression Definition pane, specify terms for the expression.
f)     Select a style from the Style list. Edit to define a custom style.
g)    Click Ok and run the report.

  QHow do you convert a list to cross-tab in Cognos Report Studio?
Ø  To convert a list to a cross-tab, follow the listed steps:
            1. Click the columns that you want to appear as columns or nested columns in the cross-tab.
            2. From the structure menu, click “Pivot List to Crosstab”.

Q. How can you hide an object in Report Studio?

Ø  Set its “Box Type” property to “None”.

Q. How do you hide the rows that have null values?

Ø  You can hide the rows having null values by applying conditional formatting as when you find null values in rows make the box type none in the properties.

Q. How can you hide a column in Report Studio?

Ø  For Crosstab reports –
a)     Group on the column and create aggregation to have the column total in the bottom row.
b)    Click the Unlock button on Report studio toolbar.
c)     Now select the “text item” and delete it.
d)    Select the empty crosstab node after deleting the text. Change its padding to 0 pixels and font to 0.001 pt size.

Q. How can you Specify what appears when no data is available in a report?
Ø  The steps  are as listed below:
a)     Select the data container in the report.
b)    From the properties pane, set the “No Data Contents” property to Yes.
c)     No data contents tab is displayed, which can be used to drop “Text item” or “Layout Calculation” to be displayed in case of no data in report.


How can I create a dynamic column name in Cognos?


1.Create a calculated column which contains the information that the header is to contain, such as "Report for year 1999" (concatenated text and date to string sub string extraction).
2.Highlight the report, and then right-click.
3.Select Properties, and then click the Headers/Footers tab.
4.Clear the Column Title Header check box. This will remove the headers from your columns.
5.Reinsert the rest of the column headers; insert text will work. For the dynamic column, from the Insert menu, click Data and select the calculated column you created and insert it into the report.

How to improve Report performance in ReportNet?

By aggregation. Try to use less filters in the report. Use star schema grouping, check the joins. Also drill through functionality increases performance as well. Always try to use appropriate functionality which can save time in this way you can improve performance of a report.

What is object security in framework manager?


Object security restrict access to specific objects in a project, for example if you have a user or group of users who you don’t want access to a particular Namespace then you can remove access to that Namespace for that user or group of users.  Objects which can have security applied include namespaces, query subjects, query items, filters and folders. You can either Allow (make visible) or Deny (not visible) access to these objects.

What is catalog and types of catalogs in cagonos?


A catalog is a file containing the information (Database tables) that Impromptu users need to create reports.

• personal  • distributed • shared • secured

What is the difference between a cascading report and drillthru report?why do we go for drill thru report?

Cascading prompt means to extract the data from one prompt to using values from another prompt.

Drill through report means to extract the data by selecting a column in a report, means to get the detailed information by clicking that column data.

How to join multiple db in catalog?

Mutiple database could not be connected in a single catalog. So that we use hotfile for this purpose.

How can i schedule reports in cognos?

By using Cognos Schedular, one can schedule the running reports in Impromptu to execute and save it in desired format.

By using Cognos MACRO script language the reports can be executed and distributed to recipients by using mail applications.

Compiled Cognos MACROs can be scheduled using Cognos Schedular.

What is Cognos Visualizer and Cognos Scripting?

Cognos Visualizer:Cognos Visualizer provides powerful visual analysis to communicate complexbusiness dataquickly and intuitively. By going beyond simple pie or bar graphs, you can view and combinedata in a way that lets you immediately see areas of concern, trends, and other indicators.Cognos scripting:You can use the Cognos Script editor, or any other OLE compliant editor to create, modify,compile, and run macros.A macro is a set of commands that automates the running of an application. You can automatemost Cognos Business Intelligence applications by using the Cognos Script language (a BASIC-like language) the Cognos Script Editor, and OLE automation

What is the difference between group and associare?

When you group data, Impromptu sorts the data item you are grouping and removes duplicatevalues. You can organize your report by grouping on one or more data items.By associating a grouped data item to another data item, you can eliminate duplicateinformation from your report.You can associate one or more data items with a grouped data item. An associated data itemshould have a one-to-one relationship with the grouped data item. For example, Order No. is agrouped data item. For each order number, there is an Order Date. Order No. and Order Datehave a one-to-one relationship.

What is drill down and slicing and dicing whats the difference between them?

Drilling lets you quickly move from one level of detail to another to explore different aspects of your business. Drilling down moves you down in the hierarchy; drilling up moves you up in the hierarchy.

Slicing and Dicing:
While you can drill to look at information at any level, you can slice and dice to select the exact information you want in your report.

How to generate cubes in cognos?

Power Play Transformer contain dimension,measure,model and cube. we can generate cube different way.
1. Just right click on cube name and build
2. we can write script in unix. using that we can generate cube.

What is snapshot?

A Snapshot is the copy of data, when we create a snapshot it copies the exact data that's related to the at perticular report, we use snapshot when ever we want to compare reports(ex we want to compare this months report with previous months)

What is meant by Junk Dimension?

The junk dimension is simply a structure that provides a convenient place to store the junk attributes

What is IQD?What is contained in IQD? How you create IQD In ReportNet FrameWork?

1. Create a new namespace.<give it a name, say, IQDReportNet>

2. Create a new query subject inside IQDReportNet.

3.In the query subject definition window, pull in all the data you need.

4. after creating, click on the new query subject, from the properties pane, select "IQD" from the drop down menu of externalizeMethod.

DONE.

to Publish. u need to create a package.

1. create a new package. a WIZARD will open.

2. Name the new Package; select the IQDReportNet object from the project.

3. add security, select language, select the funtion list(DB), select the location from the WIZARD

4. Publish the package.

When You Import data into catalog You have complex columns names. How do you change the Name of those columns?

Open Impromptu Administrator -> Catalog -> Folders option Select the
column you want to
Click the Edit button, From Left Pane Select Particular Column which
you wants to Rename Drag that into Right Pane then
Select that Column and Click on Rename Button then Change the
name.

What is loop in frameworkmanager ?


Loop: loop is a closed path (relation) that exists among 3 (or) more tables. For example, if we have '3' tables T1, T2, T3 then, a loop exists among these tables only when we create joins in the following fashion:

Loop:          T1 ---> T2 ---> T3 ---> T1

To resolve the above problem, we have to create a shortcut (or) Alias to the Table T1.

No Loop:      T1 ---> T2 ---> T3 ---> Alias (or) Shortcut of T1

What is the security module used in cognos?

Cognos uses KERBORES security model. It was the model which was found in 1980.

How can i test reports in cagonos?

In cognos report net by the validate report option a report can be tested. If there will be any error, it will specify the the error, unless it will give message  -'report specification is How to create users and permissions in cognos?

Users and Permissions can be given in Access manager - Administration.

Individual users can be created using their names or their Ids (if any) in Access manager and then be given permissions.

This tool is loaded when you install Cognos 7.x in your machine.

In content manager--we have one component called cognos process manager, using process manager we can integrate with third party tools like LDAP or NTLM. we cannot create users in reportnet directly. in real time we can use LDAP.
What is the difference between macros and prompt?
Macro is set of instructions to run report.Prompt is just like a dialog box which will ask user to select/enter the information what he needs.

A MACRO IS RUN TIME PARAMETER WHICH CAN BE PLACED IN ANY PART OF SQL SELECT STATEMENT,WHERE AS PROMPT IS USED TO GIVE CONDITIONS.
What is Cognos Visualizer and Cognos Scripting?

Cognos scripting is like a language, with this we will create macros, Macro is a set of instructions to run a report.

Cognos Visualizer is a tool for creating charts(bar, pie, histogram......) & maps using datasources(datafiles like mdc,iqd,csv,excel etc).
What is query subject?

A query subject is the basic building block in Framework Manager. A query subject is a set of query items that have an inherent relationship.

valid'.


What is the security module used in cognos?

The security module used in cognos is cognos access manager.
What is report burn and where it occurs?

Report can be divided into different parts and sending these different parts of report to different users. It occurs in cognos connection.
What is difference between drill through and drill down?
DRILL THROUGH ALLOWS U TO NAVIGATE FROM SUMMARY TO DETAILED INFORMATION.
DRILL DOWN ALSO SIMILAR KIND OF THING,
FOR EXAMPLE WILL DO DRILL DOWN ON YEAR IF We DRILL DOWN ON THIS THE NEXT LEVEL WILL COME MEANS YEAR CONTAINS QUATERS, IT CONTAINS MONTHS,MONTHS CONTAINS WEEKS, WEEK CONTAINS DAYS.SO,WE CAN VIEW ALL THE LEVELS THROUGH DRILL DOWNFor example I developed some reports on employee package now I have to develop same reports to another package. How can I change reports to another package? 

Open that report and save as that reportSelect public folder and then select package in which package u want to save then save it.
What are the Ways to Import Data into Catalog?

Create a catalog with .cat file...

Report studio has two SQL tabs one native SQL and another one cognos SQL which one is get more preference? which one we need to consider?

Cognos sql
When we save a report in report studio with what extn it save?

It saves as .XML

It will save as .CRR
When we save the report it save our specifications like u can choose(in report studio RUN MENU by clinking down icon) HTML,XML,CSV,OR PDF Format if u save the report HTML u can also run report different format as u like or different language also Depends on the format on which the report is being run. 

By default its .html format. The report can be made to run in any formats like HTML, PDF, XLS, CSV ( Comma separated format) and XML and based on that, report can be saved in either .html, .pdf, .xls, .csv or .xml
When you r viewing the report in the package is shown with extension .crrHow can I convert a list report/Cross tab Report in Cognos EP series into a bar chart or pie chart etc.? 

This can be done in Impromptu administrator
How many numbers of cubes can we create on a single model? How can we navigate between those cubes? 


Using a single Model, we can create as many number of cubes u want. By using the dimension views...etc. Regarding the navigation, when we save cubes, these act as separator multidimensional databases. There wont be any relations. Navigate means opening the cubes separately.
What is the difference between drill down and drill through? 

Drill down means it will navigate from detail information to summary level information within report. Drill through means it will navigate from summary to detail from report to report. 
What is the difference between group and association?
In cognos 'group' is used to suppress the duplicate values. And 'associate' is used to suppress the values if it is one-one relationship.
Group - It Eliminates the Duplicate values from the report break the columns. Its having a one to many relationship.
Association-It Eliminates the Duplicate values from the report and its having one-one relationship.
Both Group & Association eliminate duplicates in a column.But we cannot use Association alone.It should have one to one relationship with grouped column.
Using Association is a performance enhancement technique.
GROUP IS USED TO ELIMINATE THE DUPLICATES IN DATA.WHERE A ASSOCIATION IS USED TO HIRE OR SUPPRESS THE VALUES IN 1 TO 1 RELATION.What is Cardinality?
Cardinality is nothing but relation between tables like 
One to One, 
One to Many and 
Many to Many.
Cardinality is the nature of the relationship. 1-1,1-many relation shipsCardinality is the nature of the relation between two query itemsHow to test reports in cognos?

Go to power play transformer, on toolbar select RUN menu. In RUN menu there is one option that is TEST BUILD you can test ur report there.
You may also test the outcome of a report by writing and executing SQL Queries and comparing the outcome with the report outcome.

BY USING SYSTEM TESTING, UNIT TESTING, PERFORMANCE TESTING
How u create security to reports?
Basically there are two types of securities for any object Levels of Securities: 
1. Database level Security
2. Row level security 
Even we can provide LDAP security too.
By setting up the Governors in frame work manager also we can give the security to the data accessing through the report.
How to find out YEAR CALCULATION? THAT MEANS YOU SHOW THIS YEAR REVENUE AND LAST YEAR REVENUE. WHEN YOU FILTER THIS YEAR VALUE THE RESULT SHOULD DISPLAY THIS YEAR RESULT AND LAST YEAR RESULT?
By using expressions, I mean by using conditional constructs and thru graphs we can view the revenue and calculated data as well.

How to configure the Cognos configurations to work in the Windows 2000 Server machine?

Go to Cognos Configuration and see the settings for cognos in the explorer page. There u can set for win2000 server
What is drill down and slicing and dicing what are the difference between them?

Drill down means it will explains the summary level information to lowest level information.

Slicing is nothing but cutting edge of the cube.
Dicing is nothing but viewing the cube in all possible directions.
Drill down is the way to get the more detailed data.
Slicing and dicing is to get the data according to where clause.What are the enhancements in cognos reportnet ?

Enhancements in Cognos reportnet is Cognos 1.0, 1.1, MR1.1, MR1.2 Cognos 1.0,1.1,MR1.1,MR1.2 AND cognos 8,8.1.1MR,8.1.2MR, now new version is 8.2Enhancement in cognos in the list report:-
1) Apply list column title styles
2) Apply list column body styles

3) Apply table styles
Explain the different stages in creating a report in cognos report net?

Open cognos connection in that select Report studio or query studio it will displays there u have packages(ex: gosales and goretailr (defult)) clik on that it display Report studio in that select Object pane select required query subject then click run it displays ur report on report viewer screen.
What is Report item?
Report item is nothing but a query item when it is drag and drop into the work area.
Example in Go sales and retailers package-> Product (is a query subject) and-> Product line is( a query item)->when PL is dropped into the work area then its a report item.
How to perform single sign on in Cognos by using URL?

In cognos configuration under authentication allow anonymous access should be false.In cgi-bin properties (under iis) the enable anonymous access should be false.
What is loop in framework manager?
Loop is closed path in reportnet it called as ambiguous relationship. That means a query subject contains multiple paths to retrieve the data. It is an exception to resolve to create a shortcut on that query subject otherwise it displays wrong results in reports and performance is degrades.
An undefined join between two tables is known as loop.To resolve loop delete the joins, if these joins are necessary then we have to create shortcuts nothing but alias tables. Place the joins in alias tables.
LOOP IS A CLOSED PATH IN FRAME WORK MANAGER DUE TO JOINS.
WE ILL RESOLVED IT BY CREATING ALLIAS AND CREATING SHORT CUTS.How you migrate reports to cognos 8 from previous versions?

Migration means report net reports to cognos8.rn Upgrade .bat/rs upgrade .sh is a standalone utility that upgrades a single report specification at a time out side of the cognos.
What are the filters in Framework Manager and Report Studio?

Filters in framework manager are 
1. Standalone filters
2. Embedded filters 
Report studio Filters are 
1. Detail filters
2. Summary filters

How u migrate the reports from impromptu to reportnet???

It's possible to to migrate impromptu reports to reportnet using the migration tool(own by reportnet 1.1)Using this syntax: migratetocrn
HERE crn----Cognos RoportNet
What is IQD? What is contained in IQD?
IQD stands for Impromptu query definition. It is report save extension with .iqd it is use for creating a cube in power play transformer
IQD is Impromptu Query Definition. It contains the SQL query to display the data from the database and SQL query is automatically created based on the columns selected from database.
IQD MEANS IMPROMPTU QUERY DEFFINITION,IT CONTAINS MULTIDIMENTIONAL DATA STRUCTURE WITH ARRAY FORMAT FOR CREATING CUBES.
THIS REPORTS CAN BE SAVED WITH .IQD FILES.
How we check the errors before running the report, Plz let me know the answer?
Before u run a report. U have an option called 'valididate report' in run menu..
Then u can find the errors what u made.Actually we are migrating one project to ACTUATE business intelligence solution to COGNOS REPORTNET? why the client want to migrate from ACTUATE to COGNOS REPORTNET? What are the special features in COGNOS REPORTNET?
CRN is web based tool. So it will very useful to view the reports very easily. So that they preferred CRNHow you create IQD In ReportNet Framework?
Open framework manager click on any query subject and go Open the properties dialogue box and u can observe the EXTERNALIZE METHOD u change the iqd.How to pass multiple values from pick list prompt to sub report filter?
#parameter1#. Give this in ur filter where u pass multiple valuesWhat is Stitch Query in Reportnet?
Framework Manager generates a separate query for each 'FACT' table and joins the result set. This is called Stitched query.
I think when there is no join between two tables and we are dragging in 2 cols from 2 diff tables which doesn’t have joins then cognos will automatically build 2 or more select clauses with full outer join stitching in the 2 select clauses this is called stitched queryWhat is Snapshot ?
A Snapshot is a Permanent Local Copy Of the Report.Snapshot is Static Data Source it is saved with .imr File it is suitable for Disconnected Network....What is cube size?

2.0 GBIt depends on ur project requirements.
What is log in cognos?
While creating reports or creating models logs have all information till session closed.What is associated grouping? And how it works in cognos impromptu?
You can associate one or more data items with a grouped data item. An associated data item should have a one-to-one relationship with the grouped data item. For example, Order No. is a grouped data item. 
For each order number, there is an Order Date. Order No. and Order Date have a one-to-one relationship.
What are the limitations of cognos reportnet? 
In CRN we can't view multi dimensionally,
-we cant' see a report in excel
-we can't format a report in CRN 
Report net does not support drill through and also bursting of reports is no possible in report net. Also it does not support dimensional analysis
What is loop in framework manager ? 
Loop is an very dangerous exception in framework manager we can resolve the loop create alias table. loop Display wrong results in the reportnet. A Loop is a Closed Path Circuit....
Avoid loops: using shortcuts.We have ambiguous relationships types:Hierarchical relationships Recursive relationships Multi-valid relationships. To avoid these relationships using shortcuts.
What are the different ways of adding data in Transformer?

In transformer u import metadata from architect or catalog to create a cube. We just import metadata. we don’t add data to it
What are slowly changing dimensions? Why we are used SCD?
Slowly Changing Dimensions are those whose data are not fixed. 
SCD types:
SCD type 1: Whose data is not fixed. 
Historical data are not saved. Data keeps on changing.-> Current Data
SCD type 2: Whose data is fixed and also save historical data. 
SCD type 3: Like SCD type 2 only but save historical data in another table. In one table data will updated and in another table historical data will be there.

Depends what we are going to use a DWH or Database.

What r the names of the reports that u prepared?

List report, Cross tab report, pie charts etcs....
master detail, drill through, cascadingList, Cross tab, Chart, Map report are the basic report of Cognos.
What is the importance of Dimension in the cognos.?

Without Dimension and Fact cannot make a relation between tables it could not be use for joins and retrieve the data as a form of reports in cognos. Dimension is a major subject area through which we can analysis our business.
What is exact catalog size?

There is no limit for catalog size. It may be 3MB Or 4MB.
Give me some examples for Lifecycle reporting, I mean which lifecycle we will use for reporting?
There is no specific reporting lifecycle. We can generate the reports from data warehouse/data marts or we can generate the reports directly from OLTP systems.What I mean generating reports from OLTP systems is loading data into one system and generating the reports. But this is not recommended. This will depends on the business.
1) Generating reports from the OLAP interface system retrieving the data from the data warehouse to generating forms and reports.
2) They can use Business intelligence project life cycle.HOW MANY LEVELS CAN BE USED IN DRILL THROUGH REPORTS?

Two levels summary and detail.
Where u can save the Report net documentation in our local system?
Whenever we Install Cognos Server we get it documentation alone otherwise we can store it in Deployment Folder of CognosWhat is model and how to create model and how to test model?
Create a Model In framework Manager and then publish it, make sure that Model meets the requirements, don't overload the model with unwanted query items
Model is nothing but a project. And the project will be created by framework manager in which we can extract the metadata from the various operational sources... we will test the model by using the TOAD
Model contains meta data which is related to business reporting Information. We import this data from the data base. Using this metadata we are creating Packages, Publishing packages, This metadata contains query subjects and namespaces.........How to crate cubes in transformer ?

Cube can be created by using different data sources. Data sources: iqd, tex file Cube creation by using iqd data sources.
1) These iqd sources are coming from impromptu

How to create a dynamic column name in Cognos?
These are the steps - 
i. Create a calculated column which contains the information that the header is to contain, such as "Report for year 1999" (concatenated text and date to string sub string extraction). 
ii. Highlight the report, and then right-click. 
iii. Select Properties, and then click the Headers/Footers tab. 
iv. Clear the Column Title Header check box. This will remove the headers from your columns. 
v. Reinsert the rest of the column headers; insert text will work. 
vi. For the dynamic column, from the Insert menu, click Data and select the calculated column you created and insert it into the report.
In cognos 8.0, First create a Calculated Data Item, select the list, associate it with the Query in Which Calculated Data Item is created, then click on Structure and then List Header and Footers. Check List Header and make the Box Type of the Column header as None. 
Unlock and then drag the Calculated Data Item into the required header which will look like a Column Header in the report.
For making a column name dynamic the only thing that you have to do is insert a layout calculations from the toolbox tab in report studio.
I came across this answer because I wanted each column in across tabulation to have a text description different from the variable (column's) name. Cognos's gloriously useless documentation says nothing on how to do this and adding text isn't an allowed action in page design mode (the error message you get goes beyond unhelpful). To have the column titles, row footers, etc., you want: 
1) Switch to page structure view in report studio
2) Expand the crosstab by clicking the plus signs untilcrosstab row levels, crosstab level(variable_name), etc. are visible.
3) From the insertable objects, drag a 'Block' at the level you’d like to add the text. This takes some experimenting.
4) after the block's been added, add into the block a Text Item from the insertable objects.
5) a window will open and you can type in whatever text you want.It's no wonder Jim Goodnight has such harshness towards Cognos.
What r the migration tools available in the market with respect to cognos such as impromptu reports are migrated to cognos reportnet?
A) Reportnet1.1 migration tool is available to migrate the impromptu report to reportnet.

Q) Can reportnet supports cubes?
A) No 


Q) What are versions of cognos from starting release to latest in the market?
A) Cognos EP7 series,Cognos reportnet1.1 Mr1,MR2,MR3,MR4,cognos8.0,8.1, 8.2,8.3 

Q) What is IQD?What is contained in IQD? How you create IQD In ReportNet FrameWork?
A) IQD is impromptu Query Definition. It's a transformer report. To use an IQd in reportnet framework manager, there is a process called externalization using which you can import the IQD.
IQD Is impromptu query definition, the name it self indicating dat, it contains the SQL statement. To create the iqd in Frame work manager, create a new query subject with required query items .
Set the Externalise method property of that Query subject to 'iqd'.While the publishing the package select the 'Generate the files for Externalized query subjects'. And publish it to the local machine, which can be used as data source for Transfromer model.Q) How u provide security to reports??how u provide security to packages ?
A) Through Access Manager.

How to select multiple values from Type-in prompt? 
Example - I want to enter into type-in prompt in 'Product name--- Liza' display report data in 'product name is Leza' only OR I want to enter into type-in prompt in 'All', that time display report data in all are report data. 
Q) How is possible this Scenario using in type-in prompt.?
Here we can enter one value, here it can't shows lovs. In catalog colomns we can select the value for which we can insert the pick list.
Can you be more specific abut this. What i understand from the question, you have a prompt page with a text box prompt and the user types the value. When the user types the product name '
Ex: laptop' and clicks 'finish' the report page has to display all the records relevent to laptop. When the user types 'All' in the text box prompt and clicks 'Finish' the report has to display all the products.
BY USING STRING VARIABLE WE CAN SELECT(OR)ENTER MULTIPLE VALUES By using the following condition as the filter for the textbox prompt we can get the data for the specified product as well as All products when we type ALL in textbox prompt

Product name = ?P_ProductName? or 'ALL' in (?P_ProductName?)
What is Defect/Bug/Error Life Cycle?
Defect--During requirement phase if we find its called as defect.A defect in requirement.
Bug-----During testing phase if we find its called a BUG.
Error Life Cycle-
1)Open
2)assigned(assigned to dev)
3)Dev-passed(after fixing)
4)Under testing(when testing team receives the fix) 
5) Closed (if working fine) else reopen 
Defect is the issue caught while Testing, When the as said is accepted by the developers then the as said is called as a Bug; Error always occurs in the coding during Unit Testing by the development team. 
(issues regarding the coding are said Error's)
A Mistake in coding is called an ERROR. This mistake detected by test engineer during testing called defect(or) issue. This defect (or)issue accepted by defect tracking team as code related defect called BUG.
When we found a defect /Bug we will set the status New and set the severity and then assign to the junior senior people based on the severity they will set the priority and then they will assign to corresponding developer based on the severity dev fix it. And again tester again re-tested he will fix correctly close the bug, otherwise then again re assign to the corresponding dev.