Page 1 of 1

RI_REPLACE & RIPARAM - I Need help

Posted: Wed Sep 28, 2005 5:10 pm
by John_Ward_(Guest)
I have never used RI_REPLACE and I have an occasion where I would like to use it.____I have a UserSQL and part of the SQL filters on a Date.____How can I prompt for the date so it is part of the SQL statement (the result set will be too big if not part of the initial Select).____This is the initial User Defined SQL:__SELECT *__FROM customers__WHERE dEffDate = <<^09/28/2005^>>____Can I use:____SELECT *__FROM customers__WHERE dEffDate = <<?"Enter Date">>____Can this be done? If so, how?____Thanks

=> RI_REPLACE & RIPARAM - I Need help

Posted: Thu Sep 29, 2005 11:50 am
by kfleming
You cannot automatically prompt for an RI_REPLACE value. You would need to write your own front end code the collect the value from the user and then programatically populate the RI_REPLACE value with the user input.____Kathleen__R&R Support

==> RE: RI_REPLACE & RIPARAM

Posted: Thu Sep 29, 2005 2:55 pm
by John_Ward_(Guest)
Thanks!