I am trying to execute oracle stored procedure with input parameters as startdate and enddate. When i tried to add dataset with Oracle stored procedure.
create or replace PROCEDURE Getsummary_data(i_start_date IN DATE
,i_end_date IN DATE
,o_summary_data OUT SYS_REFCURSOR)
is
BEGIN
IF i_start_date IS NOT NULL
AND i_end_date IS NOT NULL
.....
When I created Dataset with the above stored procedure,it is not showing result data in report data pane for dataset.
Please let me know what could be reason why I am not able to see result data in Report Data. When I tried execute dataset with parameters(startdate and enddate),I am able to see resultset. Is it like stored procedure should accept null input parameters