I am working in one banking app and i have a requirement to update the inflight DMN tables without deployment. do we have any API or any way to achieve it? I went through all the topics here and could not find any work around. i have found that someone is saying that there is some API in latest version of Camunda.
Please let me know how can i update inflight DMN table without deployment.
in theory you can read the DMN table with a SQL statement from the database, update it with the DMN Model API (DMN Model API | docs.camunda.org) and update the database record.
But I would not do it that way and update the DMN table with a regular deployment. This approach keeps the history consistent.
Thank you for the quick response! i know this is not a good practice but i need to develop a POC for my Management. do you have any example of this like any git repo?