Chapter Contents |
Previous |
Next |
FSEDIT |
Category: | SAS Table |
Syntax | |
Details | |
Examples | |
See Also |
Syntax |
CALL
FSEDIT(table-name<,screen-name
<,open-mode<,row-number>>>); |
You can add a list of SAS data set options in parentheses following the table name. All data set options are valid except FIRSTOBS= and OBS=. See SAS Language Reference: Dictionary for a list of SAS data set options and their descriptions.
Type: Character
If the screen entry does not already exist, a new screen entry is not created unless the user issues a MODIFY command during the FSEDIT session.
If you want to use predefined SAS table labels, use
an equal sign (=
) for screen-name. (A modified SCREEN entry is not saved.) Column names are
used for any fields that lack labels.
Type: Character
'ADD'
'BROWSE'
'EDIT'
'NEW'
Type: Character
'EDIT'
or 'BROWSE'
.
Type: Numeric
Details |
The FSEDIT routine calls the FSEDIT procedure, which opens the FSEDIT window to display the specified SAS table. You can specify BROWSE for open-mode to open the FSBROWSE window for browsing the table instead. You can optionally specify the name of a screen entry to provide a custom display and the number of the row to be displayed when the window is opened.
If you want to specify open-mode
or row-number but do not want to specify a screen
entry, use a null string (''
) for screen-name.
For more information about the commands that are available in the FSEDIT procedure, see SAS/FSP Software Procedures Guide.
Examples |
call fsedit('personal');
call fsedit ('master.personal','master.display.per1');
call fsedit('master.personal',' ','browse');
call fsedit('master.personal','=','browse');
Specify SAS data set options by enclosing them within parentheses immediately following the SAS table name in the table-name argument, as in the following examples.
call fsedit('master.personal(where=(num='|| put(scrnum,5.)||'))');
call fsedit('master.personal(where=(name='|| quote(scrname)||'))');
See Also |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.