Pls say any one...
how will u create a report using oracle stored procedure?
could u pls send me the step.....

Answers were Sorted based on User's Feedback



Pls say any one... how will u create a report using oracle stored procedure? could u pls send me t..

Answer / deepak

hi chandu,
this is a sample one

create or replace procedure proc_name(proc_cur in out
sys_refcursor)
as
begin
open proc_cur for select * from tab;
end;

Is This Answer Correct ?    4 Yes 0 No

Pls say any one... how will u create a report using oracle stored procedure? could u pls send me t..

Answer / reshma

Deepak,
ur answer has helped me a lot.Thanx a tonne. Guys, pls
follow his steps for Creating report using SP:

1-Select Data---New Data Provider--Stored Procedure
2-Select or define the db connection
3-Choose the stored procedure
4-Specify stored procedure as the data source
5-Define parameters


Use REF CURSOR with IN/OUT parameter.
Ref cursor is a cursor variable that points to any cursor,
mainly used for returning the CURSOR OUTPUT.
Eg:

CREATE OR REPLACE PROCEDURE BO_proc(proc_cur IN OUT
sys_refcursor)
AS
BEGIN
OPEN proc_cur FOR SELECT * FROM EMP;
END;
/

Is This Answer Correct ?    4 Yes 0 No

Pls say any one... how will u create a report using oracle stored procedure? could u pls send me t..

Answer / deepak

u need to create a stored procedure using in/out parameter
of a ref cursor.the parameter of the proc should be in only.
then create a connection to the database using middleware.
suppose u have created a proc on oracle 9i, then make the
connection using oracle client.mention the user
name/password and the data base name in the connection.
then in the report section use the stored procedure as data
provider and select the proc using which you want data ang
generate the report.

deepak

Is This Answer Correct ?    3 Yes 0 No

Pls say any one... how will u create a report using oracle stored procedure? could u pls send me t..

Answer / chandru

Hi Deepak,
Thanks for giving this information.

if it possible give me a sample stored procedure coding ...

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Business Objects Interview Questions

What are the steps to be taken to schedule the report?

0 Answers  


How to particiapte the columns availabe in the Derived tables in the Reporting window? How it's done?

1 Answers   WinAlliance,


TILL WHAT LEVEL OF SECURITY BO SUPPORTS?

4 Answers  


what is document design in boxi,have u participate in that

0 Answers   Accenture, TCS,


wha is the difference b/w merge dimension and combining two different data providers?

1 Answers  






HOw do u migrate from old version to the new version?

1 Answers   AOL,


What happens in BO when a user logs in to Infoview and a rich client like webi?

2 Answers   TCS,


1.what is the functionality of "Event Server" in BOXIR2? 2.what happen if RAS server is down in BOXIR2

3 Answers   CTS,


please differentiate star schema and snow fleak schema with dimension table, how end user is depending on them in creating reports.

1 Answers   Exilant, Wipro,


What is the definition of derived table ?

2 Answers   JPMorgan Chase,


1. what is the purpose of creation of universe than other data sources ? 2. which is the best method in performance tuning techniques ?

3 Answers  


What is Designer?

2 Answers  


Categories