Hi Everyone
I recently made a customized dashboard with a datatable that is filled through a SQL stored procedure, the issue is that I would like to know if there is any way to link the column to the “open with” event or process that usually appears with the ID fields in the common dashboards.
A sql stored procedure that is run client side?
You can set the field like property
But honestly the whole thing is against best practices
4 Likes
we use stored procedures in very very special cases, only when they are queries that cannot be performed from a BAQ
I’m gonna try using the property that you mentioned
I said that a lot of times and I was always wrong. I would agree with @josecgomez - SQL stored procedures are not a good idea. I would go as far as creating a couple of indexes in the DB to speed up the query, but I wouldn’t use procedures.
2 Likes