Hello All,
I have created one query and it is giving me the correct result. The query is below:
{SELECT sum(amount)
FROM gl_entry g,chart_acc c ,bustruct b
WHERE g.chart_acc_id=c.chart_acc_id
AND g.action_dt between '01-Jan-2009' AND '31-AUG-2009'
AND c.COA_CODE='4000'
AND g.entity_id=b.bustruct_id
AND b.name='Liquidity'
}
Now, I am trying to replace the dates with date parameters which the user can eter them while running the report.
Is it possible and how?
Thank you
I have created one query and it is giving me the correct result. The query is below:
{SELECT sum(amount)
FROM gl_entry g,chart_acc c ,bustruct b
WHERE g.chart_acc_id=c.chart_acc_id
AND g.action_dt between '01-Jan-2009' AND '31-AUG-2009'
AND c.COA_CODE='4000'
AND g.entity_id=b.bustruct_id
AND b.name='Liquidity'
}
Now, I am trying to replace the dates with date parameters which the user can eter them while running the report.
Is it possible and how?
Thank you