Hi Experts,
i want to change description filed in user query selection criteria form..
i have 3 fileds :
docdate - this filed i want to chage 'Document First'
docdate - This filed i want to change 'Document Last'
name -
my problem: screenshot
[Click Here|http://img638.imageshack.us/img638/3466/userqueris.jpg]
The system always asks with the description of the field you refer to with the parameter variable in the select statement.
I sometimes defined a UDT only for getting the appropriate title in the parameter entering window. The table has no data; I used it only for its field names.
(The parameter request can be placed inside a comment and the entered value is used setting an SQL variable like this:
declare @d datetime /*select t.createdate from ordr t where t.createdate=[%0]*/ set @d=[%0]
This SQL variable can be used later in the real query.)
(But then you loose the possibility to choose from the u2018List of existing valuesu2019
Add a comment