Creating sbuVIs would certainly be a valid way to save diagram space and it seems that's all you're using the sequence structure for. But, if you really don't want to do that, much better than a sequence structure would be a state machine. There are a couple shipping examples that show how you do this but basically, it's a case structure inside a while loop. You have a mechanism such as a queue or enum define the next state to execute. In the case of the enum, inside each case, the next state is wired to a shift register input (right side of diagram). The shift register output (left side) is wired to the case statement's selector input. Things like error connections are also wired to a shift register so that you can pass the value from one state to the next. A state machine has all of the advantages of a sequence structure and not of the drawbacks (and there are many).