Chapter Contents

Previous

Next
DESCRIBE

DESCRIBE



Displays the attributes of a variable

Abbreviation: DES


Syntax
Details
Examples
See Also

Syntax

DESCRIBE arg-list | _ALL_

arg-list
contains one or more arguments specified in the form <entry-name\ >variable:

entry-name\
is the name of a catalog entry that contains an SCL program. If the entry resides in the current catalog, then entry-name can be a one-level name. If the entry resides in a different catalog, then entry-name must be a four-level name, and the entry must already be loaded into the application's execution stack. A backslash must follow the entry name.

variable
identifies an SCL variable to describe. The program that uses the specified variable must already be loaded in the application's execution stack.

_ALL_
describes all variables in all programs that are in the application's execution stack.


Details

The DESCRIBE command displays the attributes of the specified variables. You can also use dot notation to specify object attributes. The attributes reported are

Name
contains the name of the variable whose attributes are displayed.

Length
contains the variable's length. All numeric variables have a length of 8 bytes. Variables of type list return the number of items in the list.

Category
contains the variable's class or category:

SYSTEM
designates a system variable.

WINDOW
designates a window variable.

NONWINDOW
designates a nonwindow variable.

Type
contains the data type of the variable:

ARRAY ELMT
array element

CHAR
character

CHAR ARRAY
character array

LIST
list

LIST ARRAY
list array

NUM
numeric

NUM ARRAY
numeric array

OBJECT
object

OBJECT ARRAY
object array


Examples


See Also

ARGS

EXAMINE

PARM

PUTLIST


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.