SKIP

Case Control Processing Delimiter

Description: Activates or deactivates the execution of subsequent commands in the Case Control.

Format:

Example:

SKIPOFF

Remarks:

  1. SKIPON and SKIPOFF commands may appear as many times as needed in the Case Control.
  2. SKIPON ignores subsequent commands until either a SKIPOFF or BEGIN BULK command is encountered. This allows requests to be omitted without deleting them or commenting them out. In the following example the second subcase will be skipped:
    SUBCASE 101
    SPC = 101
    LOAD = 101
    NLPARM = 101
    SKIPON $ SKIP SUBCASE 102
    SUBCASE 102
    SPC = 102
    LOAD = 102
    NLPARM = 102
    SKIPOFF $ RESUME PROCESSING CASE CONTROL
    SUBCASE 103
    SPC = 103
    LOAD = 103
    NLPARM = 103
    SKIPON $ SKIP SET AND VOLUME COMMANDS
    SET 5 = 1, 5, 67, 37
    VOLUME 1, SET 5, SYSTEM BASIC
    BEGIN BULK