Skip to main content

Basic Understanding of ServiceNow for Beginners


Before you start working on ServiceNow tool, you should be knowing the few thing which motivates you to learn ServiceNow. Here, is the key points of ServiceNow which is the most important to know. Let's start with it.

What is ServiceNow  ?

ServiceNow is a cloud based Platform which provides software as service(SaaS) for technical management support.

It's basically a ticketing tool used to manage IT Operations based on the ITIL framework maintaining best practices.

It enables enterprise organizations to improve operational efficiency by automating routine business process and provide best services to customers.

Why do we use ServiceNow ?

ServiceNow fuels strategic business growth across an organization. 

It offers automated, user-friendly solutions for areas such as Operations, Customer Service Management, Human Resources and Business Applications.

Manage IT Service & Assets Management. 

Platform to End User to submit request to particular activity or issues.

Built to manage everything as a service, it helps the modern enterprise operate faster and be more scalable. 

Products similar to ServiceNow -

Hp

BMC

Zendesk

ConnectWise

Why should we learn ServiceNow in today's time?

HotSkill

Easy to learn 

Demanding job in Market

What are all different Modules or Products of ServiceNow ?

ITSM (IT Service Management)

ITBM (IT Business Management)

ITOM (IT Operations Management)

HR (Human resources)

ITAM (IT Assets Management)

GRC (Governance Risk & Compliance)

Basic Module of ServiceNow - ITSM (IT Service Management)

Information Technology Service Management (ITSM) is a tool for optimally developing, delivering & managing IT Services.

ITSM is used to handle incidents, service requests, problems & changes.

IT is a collections of policies & processes for management & support of IT Services - throughout their entire lifecycle - ITSM helps to improve an enterprise efficiency and increase employee productivity. 

ITSM is a framework for using a process approach towards management. It focuses on customer needs and IT Services for customers rather than on IT Systems, And It stresses continual movement.

ServiceNow Product documentation : https://docs.servicenow.com/ 

you can go through the ServiceNow Product documentation and It explains each and every topic about ServiceNow. It is very useful who begins to work upon ServiceNow tool.


You can create your own Profile on ServiceNow Developer Personal Instance and you can try doing configuration on your personal PD.

Link :https://developer.servicenow.com/

You can refer the above link & create your profile and let's start doing your first configuration!


Refer the video on YouTube Link : Basic Understanding of ServiceNow


Comments

  1. Very Good Article.. Thanks a lot for aploading,

    ReplyDelete
  2. Replies
    1. ServiceNow has development & Support Jobs both. your preferences to choose what you want. ServiceNow development jobs requires you to know javaScript, jellyScripting & angular js, html & CSS.

      Delete

Post a Comment

Popular posts from this blog

Difference b/w After & Async Business Rule in ServiceNow

Let's try to understand difference b/w  After & Async Business Rule & some examples on Real time scenario of After Business Rule & Async Business Rule : 1.> After BR executes synchronously (It will wait for a result, once result is ready & get displayed then user will get control to do anything, user has to wait) but Async BR executes asynchronously (user will get control immediately, it will not halt the user and result will get displayed when its ready or get response from system, it will be executing in the background as per system scheduler). 2.>After BR is used to update information on related objects that need to be displayed immediately such as GlideRecord queries etc. whereas Async BR is used to update the information on related objects that do not need to be displayed immediately such as calculating metrics & SLA etc. 3.>We can use current & previous objects but We can’t use previous object in Async rule & current ob...

How to use getreference() with callback function in client Script | #ServiceNow

What is the use of getReference() ? getReference() gets the record used in another reference field. For example you have the requested_for (reference to the sys_user table) and with getReference, you will retrieve the User record and save this as a gliderecord into a variable. Why we use callback function with getReference?  callback function allow you to use asynchronous processing with your getReference call. Example: FetchCompany&phoneNo function onChange(control, oldValue, newValue, isLoading) {    if (isLoading || newValue == '') {       return;    }  var requester_user = g_form.getReference('requested_for', callback); function callback(requester_user) { g_form.setValue('email_id',requester_user.email); g_form.setValue('manager', requester_user.manager); } }

ServiceNow Interview Questions - real time

Let's see some ServiceNow Scenario based Interview Questions & Answers here, 1.> How to fetch latest 10 incident records ? var grIncident = new GlideRecord('incident');  gr.orderByDesc('sys_created_on');  gr.setLimit(10);  gr.query();  while (gr.next()) {  gs.print('check the :'+ grIncident.number);   } 2.>How can you populate caller_id in short Description on Problem form? Write Onchange client script on Problem table on change of caller Id field  var caller =g_form.getValue(‘caller_id’);  g_form.setValue(‘short_description’, caller); 3.>How to send notification to the user who is member of assigned group? You can write the below code in Advanced condition of Notification gs.getUser().isMemberOf(current.assignment_group); 4.> How can you populate the only users whose department is “Finance” in caller field on Incident form. Use Simple Reference Qualifier & select “department is “Finance”. You can write the code ...