Well,
its simple and not so simple

How would you implement functionallity wich is used over and over again without wanting to reimplemetn it?
You factor it out into its own class and instanciate it and call its methods when needed.
That was the simple analogy, in a sequence diagram thats not that easy.
Anyway, if you have to big and to complex SQ diagrams, you need to invent a "black magic box" wich tries to abstract away those parts you like to reuse.
Likely it will be indeed a class/object resulting from that which you can implement later.
Another way is to define layers and create interface classes for those layers.
So you could e.g. model the users interaction with the GUI layer leaving out the complicate stuff happening behind the "GUI Interface class".
Then you make a "control class" which interacts with the DB, your business objects and other actors to achive their goal. In that case the most left side entity is not an Actor in the diagram but that control class.
Now you need to flesh out the middle: "GUI Interface" <-> "middle part" <-> "control class".
Probbaly it is easyer to start with the last step above

Hope that helps,
angel'o'sphere