Uncategorized
1z0-071 Oracle Database SQL – BOOLEAN OR LOGICAL OPERATORS
BOOLEAN or LOGICAL OPERATORS – CONCEPTS Up to this point we saw single column conditions. Let us learn some theory before proceeding any further. Let us assume that we have a fiction table called sample underscore Tbl with these data here. If I do select star from sample underscore table where call one equals to b, then we will get these rows that are highlighted in pink in the result. Because these rows match the condition call one equals to B, you see the values be here and so these…
ServiceNow CAD – GlideSystem Part 2
Demo: GlideSystem Hello and welcome back. In this video, we’ll actually jump into service now and start writing some code that leverages the Glidesystem API. We’ll start by quickly going over the GS print method. Again, we should be familiar with this method. It takes a string and simply prints it to the screen. It’s very similar to a console log you would see in the browser. So for this, we’ll actually create a variable hello text and assign it a string value of Hello World where we will then…
ServiceNow CAD – GlideSystem
GlideSystem Introduction Hello, and welcome to section Five, where we’ll be covering the Glidesystem API. We’ll start this section with an introduction to Glidesystem, followed by the Show me the code slide. Then we’ll go over the Glidesystem API diagram. Next, we’ll cover a list of common Glidesystem methods, followed by dissecting some of the most important methods out. Then we’ll cover the concept of events in ServiceNow and do an event demo as well. Then we’ll jump into ServiceNow, where we’ll actually write some code using the Glidesystem API….
ServiceNow CAD – GlideRecord
GlideRecord – Demo 2 Hello and welcome back. In this video, we’ll be continuing our demo. So let’s start with the order by method. The order by method accepts one argument, which is the field that we would like to order the list by. So we’ll go ahead and create a new glide record object and we’ll order by the short description. And on line three, we’ll go ahead and add the query method. And then we’ll simply print the number of the incident, followed by the incident’s short description….
ServiceNow CAD – GlideForm & GlideUser Part 2
GlideUser Introduction Hello and welcome back. In this video, we’ll take a look at the Glide user API. So the ServiceNow docs state the Glide User API provides access to information about the current user and current user roles. Using the Glide user API avoids the need to use the slower Glide record queries to get user information. So as the developer, we’d use the Glide user API on the client side to retrieve user information. We can reference Glide user by g underscore user. And it’s a relatively small…
ServiceNow CAD – GlideForm & GlideUser
GlideForm Introduction Hello, and welcome to section six, glideform and glide. User. We’re finally halfway through the course, and this will be a great section because we’ll discuss not one, but two client side APIs glide form and Glide user. So this section’s outline is as follows. I’ll provide an introduction to Glideform form, and we’ll do a show me the code section. We’ll talk about the client side environment, and we’ll discuss the Glide form API diagram. Then we’ll take a look at some common glide form methods and…
ServiceNow CAD – GlideAjax Part 2
GlideAjax – Demo 1 Hello and welcome back. In this video, we’ll take a look at three Glide Ajax examples within ServiceNow. So we’ll start nice and simple by using Glide Ajax on an incident form. So we’ll say when an incident form loads, we would like Glide Ajax to reach out to the server, grab a string value from a script include in this case hello, world and send it back to us when we receive it on the client side, we’ll update the short description of the current…
ServiceNow CAD – GlideAjax
GlideAjax Introduction Hello and welcome to section seven, where we’ll be talking about the Glide Ajax API. All right, we have a lot to cover in this section, so we’ll start off with a Glide Ajax introduction. Then we’ll cover what Ajax is in the industry, and we’ll talk about synchronous versus asynchronous. And then we’ll talk about the stages of Glide Ajax, followed by an example showing the Glide Ajax process. After we have the foundation set, then we’ll actually jump into the show me the code slide, where…
ServiceNow CAD – Exploring Other APIs Part 2
Other APIs and Undocumented APIs Hello and welcome back. In this video, we’ll take a look at some additional documented APIs within ServiceNow, as well as some undocumented APIs. And we’ll cover how we can find out what these undocumented APIs do. And we’ll also cover how many of the OutoftheBox scripts leverage script includes. All right, so let’s get started. So in addition to the APIs that we’ve already covered in this course, there’s also a number of other APIs that you can find useful. Keep in mind that…
ServiceNow CAD – Exploring Other APIs
GlideDateTime Hello and welcome to Section Eight, where we’ll explore other APIs within ServiceNow. We’ll start this section by first looking at the Glide Date Time API. We’ll go over some of the popular methods and then take a look at a demo. Then we’ll transition into the glide element. API. We’re already pretty familiar with some of these methods due to glide record, but we’ll take a deeper look at these. Next is the XML document two API which might be used for things like web services. Then we’ll…