Hi
I have a requirement in which I have to give a search Form in which the End User will have options to input his own filter criteria, and based on his filter criteria I need to build the WHERE clause and populate the grid with the values fetched from database. Post which he should have an option to select few records and submit the form. The selected records should be updated.
Approach I followed: I created a Business Object with type as Query and the query string is:
EXEC('select a.PSNumber, a.Name from Resources_Data a '+@WhereClause)
In the form I wrote a client script which builds the WHERE clause and pass it to the BO's query parameter, and the Grid gets populated based on the Fetched data. (Followed the approach suggested in http://metastorm.processmapping.com.au/post?Dynamic-SQL-for-grid-5410845&highlight=dynamic)
Now the Challenge is to Select few records from the fetched Data.
I am unable to make the Grid as editable as it is bound to BO of type Query. I can't change the BO type to Table as it has complex and dynamic where condition.
Please help me out in resolving this issue. I am unable to proceed further in this.
Thanks & Regards
Swetha.