Server-Side Scripting Data Policies and Scheduled Jobs Flashcards

(19 cards)

1
Q

Enable you to enforce data consistency by setting mandatory and read-only states for fields.

A

Data policies

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Can apply rules to all data entered into the system, including data brought in through import sets or web services and data entered through the mobile UI.

A

Data Policies

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

By default, data policies are applied to all __________ operations including those used in Scripted REST APIs, and the REST Table API.

A

GlideRecord

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How to Navigate to Data Policies?

A

System Policy>Rules>Data Policies.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Are automated pieces of work that can be performed at a specific time or on a recurring schedule.

A

Scheduled Jobs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the ways to create a scheduled job?

A

System definition > Scheduled job
Flow Designer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Job is ready to run at the next scheduled interval.

A

Ready

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Job is in the process of carrying out a task.

A

Running

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Job has been added to the scheduler queue and is waiting to run.

A

Queued

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Error occurred while running the job.

A

Error

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

the name of the scheduled job (Make sure to have a descriptive name so that other developer could understand what does it do)

A

Name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

used to disable and enable schedule job, unchecking this field cause schedule job not to run in the instance.

A

Active

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

defined in which application scope should this scheduled job run

A

Application

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

defines a condition in order to run the schedule. Checking this field will show another field named condition which you can write your own custom script by returning true or false.

A

Conditional

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

The time that will be used by the schedule job Ex: Use System Time Zone, GMT, Hongkong and so on.

A

Timezone

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

this contains the condition script that will be check by the system to run your schedule job. If the condition returns false it will not execute the schedule job otherwise it will run

17
Q

This contains the action that the schedule job will execute. Example of this:
-Update/Create/Delete record from the database
-Run a script include
-call a workflow

A

Run this script

18
Q

Specifiy on how often you run this scheduled job
Choices are:
-Daily
-Weekly
-Monthly
-Yearly
-Periodically
-Once
-On Demand
-Business Calendar: Entry start
-Business Calendar: Entry end

19
Q

How to navigate to Flow Designer?

A

All>Process Automation >flow Designer.