Chapter Contents |
Previous |
Next |
FSVIEW |
Category: | SAS Table |
Syntax | |
Details | |
Examples | |
See Also |
Syntax |
CALL
FSVIEW(table-name<,open-mode
<,formula-entry<,options>>>); |
Type: Character
'ADD'
'BROWSE'
'EDIT'
'NEW'
Type: Character
Specify this argument as <libref.>catalog-name<.entry-name<.FORMULA>>. A one- or two-level name is interpreted as a catalog name, and the default formula entry name is assumed. The default formula entry name is the same as the member name of the table specified in the table-name argument. (A one-level name is assumed to refer to a catalog in the default SAS data library, WORK.) If the specified catalog does not exist, it is created. If the specified formula entry does not already exist, a new formula entry is created.
Type: Character
'BRONLY'
'EDIT'
and 'ADD'
modes are
ignored.'NOADD'
'NODELETE'
Type: Character
Details |
The FSVIEW routine calls the FSVIEW procedure, which opens the FSVIEW window to display the specified SAS table. By default, the SAS table is opened for browsing. You can use the open-mode argument to specify that the table should instead be opened for editing. You can also specify a formula entry and other options for the FSVIEW session.
If you specify NEW for the open-mode argument, the FSVIEW NEW window is opened for the user to define a new SAS table before the FSVIEW window is opened to enter values for that table.
You can specify SAS data set options by enclosing them within parentheses immediately following the SAS table name in the table-name argument, as in the second example in the "Examples" section.
If you want to specify the options
argument but do not want to specify a formula entry, then use a null string
(''
) for the formula-name
argument.
To specify multiple values for the options argument, separate the values with blanks.
For more information about the commands that are available in the FSVIEW procedure, see SAS Language Reference: Dictionary.
Examples |
call fsview('personal');
call fsview ('master.personal(where=(site=5))','edit');
call fsview ('master.personal','edit','','noadd nodelete');
See Also |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.