Hi, Access front end and SQL backend. I want to have a stored procedure with an input variable so users can be prompted for what they want thus saving me time from having to generate on the fly standard reports. I have no problem building it but when I do, I am the only one for whom it works. How do I make it available to everyone? Thanks in advance.
Stored procedure with input variable
Collapse
X
-
Comment
-
Comment
-
I did what you suggested and no luck. My server is off site and the folks that run the cloud tried things and the latest I heard is that they can run the stored procedure directly off SQL Mgt Studio so they think my issue has something to do with the Access form. Do you have any ideas as that makes no sense to me. Thanks much!Comment
-
Code:Dim stDocName As String stDocName = "spAffiliationsPrompt" DoCmd.OpenStoredProcedure stDocName, acViewNormal, acReadOnly Exit_Command6_Click: Exit Sub
Comment
Comment