Advanced Search
Search Results
28 total results found
36 Connect & Visual Task Boards
I. Connect Messaging Platform Definition (from ServiceNow Docs): "ServiceNow Connect is a real-time messaging platform that connects you to your coworkers bypassing email and static documents." Purpose: Real-time Communication: Provides instant messaging...
ServiceNow ITSM: Incident, Problem, and Continual Improvement Management
Introduction to ITSM ITSM (IT Service Management) solutions help modernize service delivery and management. ServiceNow's cloud-based ITSM platform offers automation, reporting, and a centralized tool for managing IT services. Examples of services include lap...
Scripts - Background
// Define table properties var tableName = "u_my_custom_table"; // Use "u_" prefix for custom tables var tableLabel = "My Custom Table"; // Check if the table already exists var tableCheck = new GlideRecord('sys_db_object'); tableCheck.addQuery('name', tableN...
With Module and application menu
// Define table and application menu details var tableName = "u_my_custom_table"; // Custom table name var tableLabel = "My Custom Table"; // Module should have the same label var appMenuName = "Custom App"; var appOrder = 200; // Order in the menu list var mo...
School Management
// === School Management System Tables in ServiceNow with Admin Role Assignments === var appMenuName = "School Management"; var appOrder = 100; var moduleOrder = 50; var adminRole = "admin"; // Role to be assigned // === STEP 1: CREATE APPLICATION MENU === va...
Real estate
// Lookup Table for Venture Groups Table venture_groups { id integer [primary key] name varchar [unique] // "Residential", "Commercial", etc. } // Main Venture Table Table ventures { id integer [primary key] venture_name varchar address t...
Realestate code
// === Real Estate Management System Tables in ServiceNow with Admin Role Assignments === var appMenuName = "Real Estate Management"; var appOrder = 100; var moduleOrder = 50; var adminRole = "admin"; // Role to be assigned // === STEP 1: CREATE APPLICATION ...
Problems and solution
Two Sum Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. Input: nums = [2,7,11,15], target = 9 Output: [0,1] class Solution { public int[] twoSum(int[] nums, int target) { Map...