ADP chart rowsource parameters. How to?

  • Thread starter Thread starter Ronald
  • Start date Start date
R

Ronald

Hi,

My ADP application contains various reports.
They all have stored procedures as recordsource and this is working fine.
Parameters are set by means of the Input Parameters property.

For one report I reecntly embed a column chart.
The row source of the chart is based on another sproc which contains three
parameters.
(@startdate, @quarter, @customer_ID)

When I hard code the values in the Row source property of the chart it is
rendering fine.
Like: Exec spTrend_chart '2008/01/01', 1, 9000

However, I can't get it to work using the parameter values which are on the
report (in textboxes)

How can I point the parameters to these values.

Please help.

Thanks, Ronald
 
Ronald said:
Hi,

My ADP application contains various reports.
They all have stored procedures as recordsource and this is working fine.
Parameters are set by means of the Input Parameters property.

For one report I reecntly embed a column chart.
The row source of the chart is based on another sproc which contains three
parameters.
(@startdate, @quarter, @customer_ID)

When I hard code the values in the Row source property of the chart it is
rendering fine.
Like: Exec spTrend_chart '2008/01/01', 1, 9000

However, I can't get it to work using the parameter values which are on
the
report (in textboxes)

How can I point the parameters to these values.

Please help.

Thanks, Ronald
 
Back
Top