Not applicable

Hi @ABC6 ,

Hi @ABC6 ,

Refer example below

Script Include:

var MyScriptInclude = Class.create();
MyScriptInclude.prototype = {
    initialize: function() {
    },

	myFunction: function(){
		
		gs.info('Script Include called');
		
	},
	
    type: 'MyScriptInclude'
};

How to call from BR:

new MyScriptInclude().myFunction();