Hi,
I am using latest Kinetic release and inquiring what is the best alternative to run SQL script in order to Execute a Stored Procedure on on the database.
Ramy Essam
Hi,
I am using latest Kinetic release and inquiring what is the best alternative to run SQL script in order to Execute a Stored Procedure on on the database.
Ramy Essam
The best answer is almost always going to be don’t do it.
That being said, sometimes people have a good or at least plausible reason for their requests, so please explain exactly why you want to do this.
The best alternative is to create and call a function.
You should be able to do what the stored procedure is doing in a function.
We are in the process of upgrading from Epicor 10.x to latest Kinetic release for a client where there are customizations with extensive C# code is developed to interact with an external web application.
Please note that we do not apply any changes to Epicor database schema we just need to manipulate tables in another outside database schema.
Ramy
Please advise what type of function.
We are in the process of upgrading from Epicor 10.x to latest Kinetic release for a client where there are customizations with extensive C# code is developed to interact with an external web application.
Please note that we do not apply any changes to Epicor database schema we just need to manipulate tables in another outside database schema.
Ramy
You could use Epicor Functions in one of following ways.
OR
If that external web application has an API then you can make requests directly from Kinetic App
Epicor Functions.
You should be able to do everything that the extensive C# code is doing there.
Thanks