Problem Note 1859: May receive Note: At top message if you add a row from the first row of
your data
With the Form Viewer Control or Data Form V6 legacy object within a
SAS/AF FRAME entry, you may receive the following message,
Note: At top.
if you add a row from the first row of your data. The message can be
ignored.
To prevent the "At top" message entirely, you can override the _setMsg
method of the viewer and put out a blank message when the message
contains the "At top" text. The following example shows how to prevent
the message for a form viewer named FORMVIEWER1.
/* SCL code for the frame to override _setMsg */
init:
formviewer1._setInstanceMethod
('_setMsg','yourlib.yourcat.methods.scl','setmsg');
return;
/* SCL code for yourlib.yourcat.methods.scl */
setmsg:
method string $ 200;
if index(string,'At top') then string=' ';
call super(_self_,'_setMsg',string);
endmethod;
Operating System and Release Information
| Product Family | Product | System | Reported Release | Fixed Release* |
| SAS System | SAS/AF | OpenVMS Alpha | 8 TS M0 | 8.2 TS2M0 |
| CMS | 8 TS M0 | 8.2 TS2M0 |
| 64-bit Enabled HP-UX | 8 TS M0 | 8.2 TS2M0 |
| HP-UX | 8 TS M0 | 8.2 TS2M0 |
| ABI+ for Intel Architecture | 8 TS M0 | 8.2 TS2M0 |
| z/OS | 8 TS M0 | 8.2 TS2M0 |
| OS/2 | 8 TS M0 | 8.2 TS2M0 |
| IRIX | 8 TS M0 | 8.2 TS2M0 |
| 64-bit Enabled Solaris | 8 TS M0 | 8.2 TS2M0 |
| Microsoft Windows NT Workstation | 8 TS M0 | 8.2 TS2M0 |
| Microsoft Windows 95/98 | 8 TS M0 | 8.2 TS2M0 |
| OpenVMS VAX | 8 TS M0 | 8.2 TS2M0 |
| Microsoft Windows 2000 Professional | 8 TS M0 | 8.2 TS2M0 |
| Solaris | 8 TS M0 | 8.2 TS2M0 |
| 64-bit Enabled AIX | 8 TS M0 | 8.2 TS2M0 |
| Tru64 UNIX | 8 TS M0 | 8.2 TS2M0 |
| AIX | 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: | Problem Note |
| Priority: | medium |
| Date Modified: | 2000-06-07 10:28:12 |
| Date Created: | 2000-03-20 16:34:27 |