Hi,
I have a main perl script that uses a bunch of generic modules. One module Generic_Funcs.pm is called by a bunch of different applications. I want to have inside a function within that module a call to a function within a totally separate module (i.e. PLCFuncs.pm a function called calcTot or PPDFuncs.pm called the same thing). How can I generically handle a function call to another module without saying it specifically such as PLCFuncs::calcTot()? Thanks.
Rob