Show or hide the current screen.

Syntax

SHOW_CURRENT_FORM(bShow) 

Parameters

bShow

Required. A boolean value that indicates whether to show the current screen.

Return Value

None

Example

Show the current screen (in an arrival script):

     vHandle_ARRIVE: function(oPayload, oPreviousForm)
   {
     var bReturn = true;
     SHOW_CURRENT_FORM(true);
  • No labels