Welcome to the ServiceNow Community

New to the community? Get started here:

Official Blogs

Misc Blogs

Recent blog posts



Top Level and Dependent Conditions

mainframe0

There are two ways to make conditional statements using the filter functionality in ServiceNow.

  1. Dependent
  2. Top Level

So what is the difference between these buttons? Let's go into greater detail on these two options.



Self Service Password Reset with Active Directory

I needed to get a solution for self-service password reset for users authenticated by Active Direcrory. I enabled the following plugin:

http://wiki.servicenow.com/index.php?title=Self_Service_Password_Reset_p...

This plugin only works for locally authenticated users. Fortunately adding AD functionality can be accomplished with just a few steps.

1. Create a workflow which leverages the Reset AD User Password activity (Requires Orchestration).

2. On the workflow select Edit Inputs from the settings menu and create two string variables (or similar):



Send Attachments using REST

I had a friend ask me the other day if we could submit attachments through ServiceNow via a RESTful interface rather than through the documented SOAP endpoint. I had to ponder it for a minute before I realized that we could definitely connect to the AttachmentCreator web service via REST just as we do with the SOAP protocol...[READ MORE]



The Index of PaaS Activity

The Index of PaaS Activity (IPA) is our way of measuring the industry's progress toward app nirvana. We introduced it last November and have seen it ebb and flow over the past eight months.

It's not exactly a chicken in every pot but we think all organizations deserve a modern platform, a development environment designed for mere mortals, and apps users love. We think this PaaS phenomenon is creating a fundamental shift in how work gets done that will be every bit as influential as mobile, social, or big data.



Beyond IT Management to Logistics Transformation with C.H. Robinson

C.H. Robinson is one of the world's largest third-party logistics providers, with more than 10,500 employees and gross revenues of more than $11 billion. Worldwide offices in North America, South America, Europe, Asia and Australia serve more than 42,000 customers.

IT at C.H. Robinson initially implemented ServiceNow to consolidate a variety of IT tools that covered service request, incident, problem, change and knowledge management.


Recent forum topics



Looking for a Service Now Architect in Houston, TX

Hi
This is VICKKY from HMG America LLC, Hope you are doing well!!!
We are looking for a Service Now Architect for our Client in Houston, TX. Please find the job description below.
If interested please reply back with your latest word doc resumes to vickky@hmgamerica.com OR you can reach me on “732-645-1578”
Role: Service Now Architect
Location: Houston, TX
Job Type: 6 months contract
Job Description:



System Administrators with ServiceNow needed for our client in Houston, TX

Hi

This is VICKKY from HMG America LLC, Hope you are doing good!!!

We are looking for a System Administrators with ServiceNow for our Client in Houston, TX. Please find the job description below.
If interested please reply back with your latest word doc resumes to vickky@hmgamerica.com OR you can reach me on “732-645-1578”

Role: System Administrators with ServiceNow
Location: Houston, TX
Duration: One Year

Job Description:



Having trouble attaching and embedding videos in a knowledge article

Hi,

I'm recording training videos for a client with the intention of embedding them within a knowledge article for users to access and view on demand. I click the embed video option, choose attachment, and select my video. I then wait for the video to upload. Once it has completed uploading, I get a video "box" showing where it will be displayed in the article. If I click view article, the video never loads. It seems every different option I try, I cannot get the video to even show in the view article/published article view.

So far I've tried:



Highlight Fields

Hello,

Is there a way to show by Highlighting, all fields that were updated in a form?



Show/Hide Form Section

Does anyone know how to Hide/Show a form section based on a field. I attempted to follow the example below from the wiki, but it did not work for me. See attached.

function onChange(control, oldValue, newValue, isLoading) {
//this example was run on a form divided into sections (Change form)
// and hid a section when the "state" field was changed
var sections = g_form.getSections();
if (newValue == '2') {
sections[1].style.display = 'none';
} else {
sections[1].style.display = 'block';
}
}