Opadeez Help Center

Standard Actions

Overview

Standard Actions are pre-built operations that can be used in flows and UI components to perform common tasks like saving data, creating records, displaying pages, and controlling workflow execution. These actions provide the building blocks for creating sophisticated business processes without custom coding.

Important: The available actions differ between the flow editor and button actions. Some actions like "next" only make sense in button contexts and are not available in flow steps, while others may be specific to flow execution.
Flow Toolbox with Standard Actions

Flow Toolbox showing available standard actions for building workflows

Action Categories

Data Operations

Actions that manipulate data within the current DataSet:

save

new

delete

duplicate

saveaudit

User Interface Actions

Actions that control user interface and navigation:

page

menu

lookup

message

Flow Control Actions

Actions that control workflow execution and navigation:

subflow

exitsubflow

close

next

previous

Business Logic Actions

Actions that execute business rules and external operations:

script

externalcall

decisionmatrix

decisiontree

Action Usage Context

Flow Actions

Actions commonly used in flows:

UI Button Actions

Actions commonly used in UI action buttons:

Conditional Logic

if-else-endif

Best Practices

Action Selection

Flow Design

Performance Considerations

Common Action Patterns

Data Entry Pattern

  1. new - Create new record
  2. page - Display data entry form
  3. save - Persist the data
  4. message - Confirm successful save

Approval Pattern

  1. page - Display review page
  2. if-else-endif - Check approval decision
  3. script - Update status based on decision
  4. save - Persist the changes
  5. message - Notify user of outcome

Integration Pattern

  1. script - Prepare data for external call
  2. externalcall - Send data to external system
  3. script - Process response
  4. save - Update local data

Getting Started

Ready to use standard actions? Follow these resources:

Related Topics

Pro Tip: Start with basic data operations (new, save, delete) and user interface actions (page, message), then add business logic actions (script, externalcall) as your workflows become more sophisticated.