It's all about my choice of reusing the same form for all steps/tasks (I'm actually a programmer and I feel that a copy/paste approach has many issues, the lack of maintainability being the most important one) and, although I've hit a few roadblocks & limitations when using a single form throughout business processes, I still prefer it.
Take the hypothetical (and simplified) scenario of a program application received by a college. The applicant will need a lot of information available in order to apply (programs, levels, offers by campus&semester, etc.) and, thus, a series of lookups. Once submitted, the form might go to a number of offices (admissions, academic, records, credit transfer, etc.). It's 90% the initial form plus a bit of extra info (and lookups), needed at every stage (maybe the program curriculum for academic, maybe the program coordinators list for admissions, etc.). Overall, the form might make 7 stops before approval.
I organize the office specific data into sections which are easy to manage with "Field Rules" and JS code using a stepname dynamic variable to handle the 10% differences (basically my single form contains everything). I realize it's not the perfect approach but I definitely believe it being the lesser evil (I don't even want to think about what mess a business process with 7 initially-identical forms could become in time, after a series of changes; or how a form change will have to be applied 7 times, one time for each copy - did I also mention that I am lazy ?)
Anyway, for all these reasons and more, I prefer the single form approach and it seems that the biggest nuisance is the (mostly start event) lookups, firing pointlessly at every stop (first problem being the time wasted on loading the form, the other might also be undesired updates of submitted data).
An easy way to fix it (by disabling selected lookups on the fly depending on the current step) would be as shown in my JS code above - if it would work.
I apologize if my story was too long but I tried to provide good explanations about my choice and the reasons behind it.
Thanks for taking the time to understand and help with my issue.