A script-enabled browser is required for this page to function properly.

SYSTEM.TRIGGER_BLOCK System Variable

Syntax

SYSTEM.TRIGGER_BLOCK

Description

SYSTEM.TRIGGER_BLOCK represents the name of the block where the cursor was located when the current trigger initially fired. The value is NULL if the current trigger is a Pre- or Post-Form trigger. The value is always a character string.

SYSTEM.TRIGGER_BLOCK Examples

Assume that you want to write a form-level procedure that navigates to the block where the cursor was when the current trigger initially fired. The following statement performs this function.

Go_Block(Name_In('System.Trigger_Block'));


Post-Form Trigger

Pre-Form Trigger