Hello All I need your help,
I am very new to Actuate BIRT reports. I have a requirement to call sybase(12.5.0.3) stored procedures in BIRT reports. Report may have more than stored procs. and at run time depends on the user's selection the report should take appropriate stored proc and show the results.
I have established the jdbc database connection. I am NOT able to create a new stored proc dataset. I have gone through help contents provided.
Does anyone know exact steps what to do in order to complete the set up? Stored proc has five parameters and all of them will be supplied through user input and should select different datasets.
Code:
exec ActivitySummary
@ActivityId='WEB',
@Accout1='NANO',
@REGIONFLAG='US',
@Date='02/21/2008',
@INTERNATIONAL= 'Y'
I put following while creating stored proc. data set and I get nothing in output column (not even column names) or in preview results.
Code:
{Call ActivitySummary('WEB', 'NANO', 'US', '02/21/2008', 'Y')}
I am able to use "SQL Select Query" but that is not my requirement. I need to create data set using "SQL Stored Procedure Query".
Any help will be appreciated.
Thanks,
Sanket