Hello, I have in a report two datasets, the first one is the main SIPDS where I have 3 parameters:
SELECT Propuesta.FechaRecibo, Usuario.Nombre AS Vendedor,
ResponsablePropuesta.FechaPlanEntrega, Usuario_1.Nombre AS RespProp,
Estado.Descripcion, Prospecto.Nombre AS Prospecto,
Propuesta.IdPropuesta, Propuesta.FechaCierre
FROM Propuesta FULL OUTER JOIN
Usuario ON Propuesta.IdUsuario = Usuario.IdUsuario
FULL OUTER JOIN
ResponsablePropuesta ON Propuesta.IdPropuesta =
ResponsablePropuesta.Idpropuesta FULL OUTER JOIN
Estado ON Propuesta.IdEstado = Estado.IdEstado FULL
OUTER JOIN
Usuario AS Usuario_1 ON
ResponsablePropuesta.RespPropuesta = Usuario_1.IdUsuario FULL OUTER JOIN
Prospecto ON Propuesta.IdProspecto =
Prospecto.IdProspecto
WHERE (Estado.IdEstado = 1) AND (Propuesta.FechaRecibo BETWEEN
@FechaInicio AND @FechaFinal) AND (Usuario_1.IdUsuario = @Responsable)
ORDER BY RespProp, ResponsablePropuesta.FechaPlanEntrega
And the second one is called Responsable:
SELECT IdUsuario, Nombre
FROM Usuario
ORDER BY Nombre
Which i'm using it in a dropdownlist where customer can select the responsible (@Responsable).
The question is: Does exist a way that I cannot type/select one of the parameters and bring data results in Reporting Service?
SELECT Propuesta.FechaRecibo, Usuario.Nombre AS Vendedor,
ResponsablePropuesta.FechaPlanEntrega, Usuario_1.Nombre AS RespProp,
Estado.Descripcion, Prospecto.Nombre AS Prospecto,
Propuesta.IdPropuesta, Propuesta.FechaCierre
FROM Propuesta FULL OUTER JOIN
Usuario ON Propuesta.IdUsuario = Usuario.IdUsuario
FULL OUTER JOIN
ResponsablePropuesta ON Propuesta.IdPropuesta =
ResponsablePropuesta.Idpropuesta FULL OUTER JOIN
Estado ON Propuesta.IdEstado = Estado.IdEstado FULL
OUTER JOIN
Usuario AS Usuario_1 ON
ResponsablePropuesta.RespPropuesta = Usuario_1.IdUsuario FULL OUTER JOIN
Prospecto ON Propuesta.IdProspecto =
Prospecto.IdProspecto
WHERE (Estado.IdEstado = 1) AND (Propuesta.FechaRecibo BETWEEN
@FechaInicio AND @FechaFinal) AND (Usuario_1.IdUsuario = @Responsable)
ORDER BY RespProp, ResponsablePropuesta.FechaPlanEntrega
And the second one is called Responsable:
SELECT IdUsuario, Nombre
FROM Usuario
ORDER BY Nombre
Which i'm using it in a dropdownlist where customer can select the responsible (@Responsable).
The question is: Does exist a way that I cannot type/select one of the parameters and bring data results in Reporting Service?