Hi Christ,
I'm not aware of such datasets that are publicly available. Did you manage to find one? If yes, I would be interested to know where you got it.
If you didn't find yet, I think you'll need to generate an artificial one (either manually, or by finding a way to automate the generation). Maybe you can design a mission management process with Bonita that allows you to generate this kind of information. For example, the process starts with the activity "enter employee name", "enter expected expenses", "enter mission information", etc. Later on in the process, you could have the activity "mission completed?" with an exclusive gateway: if "yes", then you have the activity "enter mission duration", "enter mission expenses" and so on. You could then run this process multiple times to generate the artificial dataset with the information you entered in each run. Now the trick is that you have to be able to retrieve the information you enter when you run the process and to save it somewhere, for example in a CSV file. This is actually could be a nice example of "data collection" with a BPM solution like Bonita.
Once you have this dataset, you could do many things, for example:
1- You can imagine that there is a new run of the process for a new mission. Some activities have been executed so far, for example "enter employee name", "enter mission information". And now you want to be able to predict whether the mission will be completed or not based on the data you have collected so far from the executed activities. So in the BPM context, you want to predict which path in your process will be taken (at the exclusive gateway, is the process going to take the "yes" or the "no" branch?) You can train a neural network on your artificial data to predict such information (btw these are actually process mining related techniques).
2- In the same way, you can predict the mission duration and mission expenses (again in a BPM context, you are predicting activity related data, because remember that these are data that you enter when the activities "enter mission duration" and "enter mission expenses" are executed).
In terms of visualization, you can visualize the result of the prediction directly on your process, by for example highlighting (e.g. changing the color/width..) of the elements in your process that have been executed so far and the path that is predicted by your technique. You can do so by using our open source bpmn-visualization library. If you decide to use it and you need any help, you can contact us via the channels that appear on our website.
Hope this helps you & Good luck in your project! It's a nice project so don't hesitate to share it with us.