Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Report parameters
Message
De
19/11/2008 11:54:52
 
 
À
Tous
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Services de reporting
Titre:
Report parameters
Versions des environnements
SQL Server:
SQL Server 2005
Application:
Web
Divers
Thread ID:
01362851
Message ID:
01362851
Vues:
52
Hello, I have in a report two datasets, the first one is the main one called SIPDS:

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.

As you can see I have 3 parameters and have to add a new one. The question is: Does exist a way that I cannot type/select one of the parameters and bring data results in Reporting Service?
Répondre
Fil
Voir

Click here to load this message in the networking platform