Hello everyone
I can call a function with its full name as I can do in SQL ([ServerName].[DatabaseName].[Scheme].[Table])?
for instance
file: CommonFunctions.js
function1();
function2();
etc.
In a different script can I call the function as CommonFunctions.function1()?
Can this be done?
Thanks
Marco