I have a relatively complex workflow which involves multiple control containers running in sequence, multiple streams, some python tools reading & creating files in the background, and finally a bunch of Excel files being output.
This workflow will be scheduled to run daily on Server.
I'd like to create an app that will allow a user to do one of two things on-demand:
1) View a read-only version of one of the output files from the above scheduled workflow
~ or ~
2) Create a new Excel file with some summary info from several of the output files from the above scheduled workflow
Q: Would it make more sense to turn my current scheduled workflow into an app (even though i don't want those python scripts, etc. running each time a user runs the app), or to create a new workflow for the app that starts by reading in all of the output files from the current workflow?
If the latter, could there potentially be a problem if someone tries to use the app while the original scheduled workflow is actively writing to the output files?
TIA for any advice!