I have the following scenario in an application: An OData service which calls a Calculation View, which calls a Procedure. So:
OData -> Calculation View -> Procedure.
However I need to find a way to debug the Procedure execution when a request is sent to the OData service. I can debug the procedure locally and it is running with the expected results; However, when this procedure is called through the OData request, its not returning the expected results, that's why I need to debug the procedure when it is called from the OData request. I pass some parameters to the procedure via the OData service and I am pretty sure that those parameters are passed correctly to the procedure. Anyone experienced something like this?