Usage Note 23365: How can I enable my ID variables in UNIVARIATE to be longer than 8 characters?
To extend the length of the ID variables in UNIVARIATE,
modify the Base.Univariate.Extobs table. Below is an example that increases the length to 15.
proc template;
edit base.univariate.extobs;
edit LOWIDCHAR;
format=$15.;
end;
edit HIGHIDCHAR;
format=$15.;
end;
end;
run;
See also the full SAS Notes and Concepts for ODS.
Operating System and Release Information
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
| Type: | Usage Note |
| Priority: | low |
| Topic: | SAS Reference ==> ODS (Output Delivery System) Third Party ==> Output ==> HTML
|
| Date Modified: | 2007-10-16 11:01:55 |
| Date Created: | 2003-08-08 17:17:09 |