Tips and Tricks: Displaying Web Intelligence Date Prompts using Built-in Functions
Posted on April 1st, 2009 by admin
Displaying a prompt value on a Business Objects Web Intelligence report is pretty straightforward. Web Intelligence provides the UserResponse function to do this.
string UserResponse(object data_provider; string prompt_text; Index)
But notice that the data type returned by UserResponse() is always a string. What if you are trying to display a date? For example:
UserResponse(”My Date Prompt”)
The answer will [...]
