SUITEFLOW Flashcards
What are 4 use cases in which a custom workflow action is necessary?
– Editing a related record
– Calling a web service
– Using complex computational logic using JavaScript and the
SuiteScript API
– Update a sublist other than the item sublist
How might we use workflows to control the user interface?
We can use the Lock Record action to lock the record.
This action triggers before load.
The record will only be locked if the Lock Record action is called
True or False?
We can use the workflow Unlock Record action to unlock records
False.
There is no Unlock Record action. Only Lock Record.
If a transition is set to transition to another state on after submit, when will that state’s actions trigger?
That state’s actions will trigger on After Submit
When you want to transition to another state using a button click, what should you set the “Transition On” field to?
Nothing, it should not be set when you want to transition using a button click.
What happens with actions that trigger on entry when you refresh the record?
Actions that trigger on entry will only trigger once when the workflow enters that state.
Refreshing the record will not execute the entry actions again.
Where can workflow state values be accessed?
Only on the state where it is defined.
How long do workflow state values persist?
They persist throughout the whole workflow’s lifecycle
Which states can access workflow fields?
Workflow fields can only be accessed by the states in the same workflow where the field was created
Showing messages can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: D.
It can be done in both
Validating fields can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: D.
It can be done in both
Setting up default values can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: D.
It can be done in both
Changing display characteristics (E.g. hiding fields) can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: D.
It can be done in both
Setting a field as mandatory or optional can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: D.
It can be done in both
Sending email messages can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: D.
It can be done in both
Creating records can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: D.
It can be done in both
Redirecting users can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: D.
It can be done in both
Approval routing can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: D.
It can be done in both
Manipulating sublists can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: D.
It can be done in both
Basic field defaulting can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: B.
It SHOULD be done using SuiteFlow
Complex approvals can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: B.
It SHOULD be done using SuiteFlow
Approval reminder email messages can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: B.
It SHOULD be done using SuiteFlow
Lead nurturing can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: B.
It SHOULD be done using SuiteFlow
Automation based on changes to related records can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: B.
It SHOULD be done using SuiteFlow
Using existing saved searches to process the search data can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: B.
It SHOULD be done using SuiteFlow
Redirecting users to a Suitelet can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: A.
It can ONLY be done using SuiteScript
Creating custom server requests from the browser can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: A.
It can ONLY be done using SuiteScript
Updating related records can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: A.
It can ONLY be done using SuiteScript
Copying, printing, deleting, and attaching records can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: A.
It can ONLY be done using SuiteScript
Creating dynamic searches can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: A.
It can ONLY be done using SuiteScript
Performing web service calls can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: A.
It can ONLY be done using SuiteScript
Creating scripted portlets can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: A.
It can ONLY be done using SuiteScript
Building new applications can or should be done in which technology?
a) SuiteScript
b) SuiteFlow
c) Neither
d) Both
Answer: A.
It can ONLY be done using SuiteScript
True or False?
Workflow initiation, transitions, and actions can be set to execute at a specific schedule
True, we can do this when setting a workflow to run on a schedule.
To make a scheduled workflow, we must set a saved search. What is this search used for?
So that you can filter the execution of the workflow based on the saved search.
The results of the saved search will be processed by the workflow