I create a report passing parameter. That works fine. Problem is that users may not even pass parameter every time when they run this report, likemthey want to see all results. So Itry codeing where clause like:
cust_id = NVL(?cust_param,cust_id)
NVL is an oracle function that says if parameter is null evaluate above as
cust_id=cust_id. That definitely does not work as CR does not like Oracle special functions there. How do I accomplish this.
Basically, how t program so that parameters becoem optional
while running a report.
Thanks
cust_id = NVL(?cust_param,cust_id)
NVL is an oracle function that says if parameter is null evaluate above as
cust_id=cust_id. That definitely does not work as CR does not like Oracle special functions there. How do I accomplish this.
Basically, how t program so that parameters becoem optional
while running a report.
Thanks