I agree that having to use "Starter" as a prefix is cumbersome.
However, as discussed in this
Starter service thread, we can work around this if we declare our Process_Globals variables in another module with a intentionally short name. (I use a "common" code module that I renamed to "c".)
Once it's declared there, I can code the following in
Starter > Service_Create:
c.SQL1.Initialize(c.SQLDBPath, c.SQLDBName, True)
The prefixing problem itself is nicely solved in other languages by the WITH or USES keywords, as wished for in
this post.