jakecolman
IS-IT--Management
I have a command object with the following query:
select FP_FUNDINGID as FundingId,
max(FP_DATE) as FundingDate
from FG_POSITION
where FP_DATE <= TO_DATE('{?As Of Date}', 'DD-MON-YY')
group by FP_FUNDINGID
having max(FP_DATE) <= TO_DATE('{?As Of Date}', 'DD-MON-YY')
As you can see, it requires an 'As Of Date' parameter. I need to modify this so that the command object does not this parameter and that Crystal does all the work in a selection formula. Is this possible?
Thanks!
...Jake
select FP_FUNDINGID as FundingId,
max(FP_DATE) as FundingDate
from FG_POSITION
where FP_DATE <= TO_DATE('{?As Of Date}', 'DD-MON-YY')
group by FP_FUNDINGID
having max(FP_DATE) <= TO_DATE('{?As Of Date}', 'DD-MON-YY')
As you can see, it requires an 'As Of Date' parameter. I need to modify this so that the command object does not this parameter and that Crystal does all the work in a selection formula. Is this possible?
Thanks!
...Jake