NAME

Assigns a unique name to a subpanel. Naming a panel allows you to reuse its query.

A subpanel name is 3 to 8 characters, beginning with an uppercase alphabetical character.

Example

The following example shows four subpanel definitions with each panel assigned a distinct name (ALPHA, BETA, GAMMA, and DELTA).
<SUBPANEL>         This is subpanel #1 with a query 
NAME=ALPHA         This is its name 
QUERY="SELECT ......... 

<SUBPANEL>         This is subpanel #2 with a query 
NAME=BETA          This is its name 
QUERY="SELECT ......... 

<SUBPANEL>         This is subpanel #3 with no query 
NAME=GAMMA         This is its name 
QUERY=REUSE(ALPHA) Re-using first query 

<SUBPANEL>         This is sub-panel #4 with no query 
NAME=DELTA         This is its name 
QUERY=REUSE(BETA)  Re-using second query