Hi,
I have created a report in CRXI & its running fine. BUT when I add a VIEW report takes long time to refresh the reports appro.10 mins otherwise reports take 45 secs. Can I change my view to a function & then call that function in my report? I'm not sure if it works. Any help?
----------------------------------------
create view crtask as
select id,accountid,
case when "sfdcOpportunity"."ISP_Complete_Account_Plan__c"='true' then 'Complete_Account_Plan : COMPLETED'
else 'Complete_Account_Plan '
end as Complete_Account_Plan,........(More 100 similar CASE lines).....
from sfdcopportunity
where closedate >= '08/01/2004' and closedate <= '07/31/2006'
I have created a report in CRXI & its running fine. BUT when I add a VIEW report takes long time to refresh the reports appro.10 mins otherwise reports take 45 secs. Can I change my view to a function & then call that function in my report? I'm not sure if it works. Any help?
----------------------------------------
create view crtask as
select id,accountid,
case when "sfdcOpportunity"."ISP_Complete_Account_Plan__c"='true' then 'Complete_Account_Plan : COMPLETED'
else 'Complete_Account_Plan '
end as Complete_Account_Plan,........(More 100 similar CASE lines).....
from sfdcopportunity
where closedate >= '08/01/2004' and closedate <= '07/31/2006'