in reply to What vars did it define?

Quick 'n' dirty solution: Put your Big Levers in a hash, then do keys on the hash to see what has been defined:
$BigLever{NETOVERGROSS_ORDS} = .98
...etc, in your module, then
foreach my $key (keys %BigLever) { print "$key defined with $BigLever{$key}\n"; }

(or whatever) in your code.