Hola ke tal miren tengo una pregunta tengo un sp con parametros en sql server 2000 y este genera una tabla temporal y bueno para hacer el reporte tengo ke escribir los parametros ke yo considero por default para ke me genere la tabla temporal y asi me haga el reporte y hasta y todo bien puedo ver ke si hace el reporte bien
Pero como este reporte se va a exportar despues como resultado final de la buskeda pues trato de actulizar los datos del sp para ke asi pueda exportarlo pero eh aki el problema truena la parte de actualizar los parametros del reporte y no se porke es komo si nunca lo tomara en cuenta
Y bueno eh aki el codigo ke uso para reportes similares donde se tenga ke acutalizar el reporte pasandole parametros al reporte.
Código:
Reporte.SetParameterValue("@iAnio", iAnio)
Reporte.SetParameterValue("@sAnio", sAnio)
Reporte.SetParameterValue("@iDep", iDep)
Reporte.SetParameterValue("@sDep", sDep)
Reporte.SetParameterValue("@iSubDep", iSubDep)
Reporte.SetParameterValue("@sSubDep", sSubDep)
si lo intento asi me vota el siguiente error
"Nombre de campo no válido."
y si cambio el codigo por este otro
Código:
Reporte.SetParameterValue(0, iAnio)
Reporte.SetParameterValue(1, sAnio)
Reporte.SetParameterValue(2, iDep)
Reporte.SetParameterValue(3, sDep)
Reporte.SetParameterValue(4, iSubDep)
Reporte.SetParameterValue(5, sSubDep)
si lo intento asi me vota el siguiente error
"Error en archivo C:\WINDOWS\TEMP\temp_82cb3097-49f6-496f-bbd7-be6457955983.rpt:
Número no válido de parámetro."
Y pues no me deja agregar los nuevos valores para el reporte
Repito la exportacion si la hace y todo pero el problema es ke sino actulizo los parametros para su exportacion toma los valores por default ke se le creo el reporte