2) Create a query business rule on "sys_app_module" table and show "Open - Unassigned" left navigation module (under Incident application menu) for "Incident Management" group users and hide for other users. 3) Create an async business rule on Probl

charitha ts
Tera Contributor

Hi folks

 

can any one help to learn coding 

 

Thamatam

6 REPLIES 6

What kind of answer are you expecting?  For us to teach you javascript in a single reply?  @aksras probably gave you the best answer imaginable by linking you to @Chuck Tomasi 's series on learning Javascript on the ServiceNow platform.

Are you wanting us to write the answer to the question in the title for you?
If so, there's not enough context, and the question is structured too poorly.

 

Jaseem ck
Kilo Expert

Hi Charitha,

I think you can find it here Hide Application Module based on Group membership.

 

(function executeRule(current, previous /*null when async*/) {

	if(gs.getUser().isMemberOf('Incident Management')){
		current.addQuery('title','!=','Open - Unassigned');
	}

})(current, previous);