Hi,
I am new to BO 6.5. I have one doubt that is it possible to display any value as default in prompts.
Whenever i click the refresh data icon the default values automatically will appear in prompt. Is it possible in BO 6.5 Deski.
Help me out in this issue.
Thanks in advance
Since you are new to the product a search on BOB with keywords ‘default value in prompts’ would have helped before opening this post.
Out of the box a prompt cannot be defaulted to any value.
Hi,
What default value you want?
If you run teh report with a default value then it will appear next time.
As said by haider, it may not be possible, but you can try out this work around.
Hi Omkar,
My default value is ALL. I came to know that prompt will display value what we given in last time while run the report.
But i need ALL should display in prompt whenever i open and run the report. I dont want to display the old value what i given piror.
Help me out in this.
If you want a static default value to always appear on clicking refresh then a small VB code snippet can be written in the document_beforerefresh() event.
Like this
Private Sub Document_BeforeRefresh(Cancel As Boolean)
ThisDocument.Variables.Add("Enter Value").Value = "ALL"
End Sub