Usage Note 3199: Selection behavior may be different for Extended Table in a Program
entry
When clicking on a row an extended table within a SAS/AF PROGRAM entry,
the expected result should show that row as highlighted; however,
instead it is moving that row to the top of the table. This problem
occurs when the 3rd argument of the CALL SETROW routine (sel-order) is
set to '' as follows:
call setrow(0,1,'','y')
To circumvent the problem, denote the sel-order argument as either ' '
(a blank space enclosed in quotes) or 'n' as shown in the following CALL
SETROW routines:
call setrow(0,1,' ','y');
call setrow(0,1,'n','y');
Operating System and Release Information
| Product Family | Product | System | Reported Release | Fixed Release* |
| SAS System | SAS/AF | Microsoft Windows NT Workstation | 8 TS M0 | 8.2 TS2M0 |
*
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: | medium |
| Topic: | SAS Reference ==> Procedures ==> BUILD
|
| Date Modified: | 2000-09-11 13:17:08 |
| Date Created: | 2000-08-09 16:01:06 |