I have developed SSIS package which exports data from SQL server to an excel file(.xlsm). There is only two tasks in the SSIS package - 1st task is to copy the template of the excel file and the 2nd one is the DFT to load from sql server database to that template excel file. After I deployed the changes to prod, it ran fine without any issue. Then I had to change the SSIS parameter(location where we extract the file). I updated the folder location in the configuration table but didn't change anything on the package. After I updated the export location, the package started to fail in Prod with "Unexpected Termination" Error message. However this package runs fine in lower environment with the same folder change as in prod. Also when I run the package manually in prod from Visual studio, it runs without any issue.
Any idea why I am getting Unexpected Termination error? Is it because I changed the parameter value in the configuration table but didn't change anything on the package itself? Is there any way to get the detail error message?
Thanks in advance