Reportnet

  Home  Data Warehouse  Reportnet


“Reportnet Frequently Asked Questions in various Reportnet Interviews asked by the interviewer. So learn Reportnet with the help of this Reportnet Interview questions and answers guide and feel free to comment as your suggestions, questions and answers on any Reportnet Interview Question or answer by the comment feature available on the page.”



34 Reportnet Questions And Answers

21⟩ Explain the difference between filter and conditin?

The difference between Filter and Condition:Condition returns true or false Ex: if Country = 'India' then ...Filter will return two types of results1.Detail information which is equal to where clause in SQL statement2.Summary information which is equal to Group by and Having clause in SQL statement

 147 views

24⟩ Explain What are necessary tasks to install reportnet software?

You need to do the following for a standard installation process:

(1) Verify your system requirements like RAM Minimum: 512 MB, a Web server installed and started

(2) Review the ReportNet default settings like default ReportNet ports and URI settings.

(3) Create the database for the content store which means you must create the database that is used for the content store using either Oracle, Microsoft SQL Server, or DB2 UDB. ReportNet uses this database to store, organize, and retrieve

information.

(4) Install ReportNet: Use the installation wizard to select the components you want to install and the location on your

computer where you want to install them.

(5) Set up the database client for the content store (Oracle and DB2): If you use Oracle or DB2 as the database server for the content store, additional steps are required after you install ReportNet before you can configure ReportNet.

you need to go to the 6th step only when installing on UNIX. For Windows above 5 steps are good.

(6) Update Your Java Environment: Before you can use the cryptographic operations, such as data encryption and key

management, implemented by ReportNet, you must check that the required JAR (Java Archive) files are present in your Java Runtime Environment (JRE).

 133 views

25⟩ Explain What are the advantages and disadvantages of reporting directly against the database? Do you always need to copy the data before reporting on it?(example, real-time & on-demand reporting is a requirement)?

There isnt any need to copy the data before reporting on as long as the data is clean. But if the data is not clean it should be cleansed and so go for ETL process.

Adv of reporting directly against the database(OLTP): No need to sepertaley maintain a Database for it.(Space consumption is recduced).

Disadv of reporting directly against the database(OLTP): It slows down the process bcoz OLTP system is designed for the online application but a DataWarehouse application which requires to do analysis and hence takes the same data but takes a long time.

 152 views

26⟩ How to test report in reportnet?

If we wanna test the report in report net, first we can intially check by validating it in the report page.

After that we can test the out put of the report Using a sql anlyser and sql query.so here we will be comparing the sql analyzer output with the output of the report viewer.

 129 views

27⟩ Explain What is the main advantage of impromptu over cognos reportnet?

One of the advantage's of Reportnet, is

1. It is web-based reporting wherein, reports can be easily accessed from anywhere through a browser.

by using ipromptu we can use multidimensional analysis to see the data in diff formates.i.e we have drillup,drilldown features in cognos impromtu,but it is not possible in reportnet.

 137 views

28⟩ What is difference between model & package?

Model is a representation of the metadata structures(imported from the soure datawarehouse).A model contains organized metadata objects(organizing depends on business needs).After the completion of a model(obviously in a framework manager environment) it has to submitted to ReportNet server.There enterts the object called Package.A Package compresses(or includes) the developed meta data definitions and publishes (forwards) it to ReportNet server.Then the reportnet server moves it into a content store(repositiry) and now this repository acts as a source for report developers for generating various types of reports(list reports, cross tab reports etc etc.)

 154 views

30⟩ How to define a cube??

Its a multidimensional view of dimension and measures. It is used to analyze the data in various aspects, which is called slicing and dicing

 139 views

31⟩ What is the use of tabular model, tabular SQL, tabular reference in real time application?

Tabular model: It is the basic list query. It contain the data items, filters and child tabular objects.

Tabular SQL: We can write and edit our own SQL

Tabular ref: It is a shortcut to another tabular object somewhere in another query within the same report specification.

Tabular set: Tabular set object returns a single result set using union, intersect or minus operators

 172 views

34⟩ Suppose we want to display zero when null values coming to report how can we do that?

You can follow this procedure :::

Lets assume revenue is the field in which we have to display null values as 0.

First create a calculated item and

Then write the expression of the cal item using If Then Else construct as

If (Revenue is null) Then ('0') Else(Revenue)

I think u can easily understand this.

Now u can see that the null values r displayed as '0' in the calculated item.

Select the data item in which you want to replace null with 0 .Go to Properties pane, Click Data Format, in this put 0 in Missing value Characters.

 134 views