![]() Chapter Contents |
![]() Previous |
![]() Next |
| SAS Catalog: _renameMember |
| Syntax | |
| Example | |
| See Also |
Syntax |
| CALL SEND (catalog-object-id, '_renameMember', old-member-name, new-member-name<, member-description>); |
| Argument | Type | Description |
|---|---|---|
| new-member-name |
C | specifies the one-level name (entryname) to be used in renaming old-member-name |
| member-description |
C | specifies the new description for the member. The description can be up to 40 characters. |
| Example |
This example renames SASUSER.CAT1.ENTRY.PROGRAM to SASUSER.CAT1.OTHER.PROGRAM:
catclass=loadclass('sashelp.fsp.catalog.
class');
catobj=instance(catclass);
call send (catobj, '_setup_',
'sasuser.cat1');
call send (catobj, '_rename_member_',
'entry.program', 'other');
| See Also |
_rename
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.