Description of the game
The goal of the game to break as many contracts as possible! Note: one of these contracts is a HONEYPOT! BE CAREFUL!!
Claim your Ropsten test ether here!
The contracts you need to break and their addresses:
Description of the game
The goal of the game to break as many contracts as possible! Note: one of these contracts is a HONEYPOT! BE CAREFUL!!
Claim your Ropsten test ether here!
The contracts you need to break and their addresses:
| /** | |
| * @description Converts between JSON Objects and GlideRecords | |
| * @namespace | |
| * @type {Class} | |
| */ | |
| var JSONtoGlide = Class.create(); | |
| JSONtoGlide.prototype = { | |
| /** | |
| * @description Converts an object into a new GlideRecord | |
| * @param {Object} json A json object |
In this snippet you will create a custom process using a custom page and populating data using GoJS native library
Go to Service Portal > Widget > Click New
submitIn this snippet you will create a custom form widget with a custom page and populated using custom spModel.
For more information, take a look on the link https://community.servicenow.com/community?id=community_article&sys_id=955c66a1dbd0dbc01dcaf3231f9619e4
Go to Service Portal > Widget > Click New
submitIn this snippet you will create a custom SpiderWeb report on a custom page using the native library. Plus, there is a dropdown that automatically updates the spider depending on the data you select.
Go to Service Portal > Widget > Click New
submit| // Calculate scores | |
| updateScoring("ITISO-032","3","3","3","4","3","1"); | |
| // Functions | |
| function translateRiskCriteria(fieldName, fieldValue) { | |
| var query = "type="+fieldName +"^display_value=" + fieldValue; | |
| var gr = new GlideRecord('sn_risk_criteria'); | |
| var result = ""; | |
| gr.addEncodedQuery(query); |
| // Usage: translateRiskCriteria('likelihood',3); | |
| function translateRiskCriteria(fieldName, fieldValue) { | |
| var query = "type="+fieldName +"^display_value=" + fieldValue; | |
| var gr = new GlideRecord('sn_risk_criteria'); | |
| var result = ""; | |
| gr.addEncodedQuery(query); | |
| gr.query(); | |
| if (gr.next()) { |