Chapter Contents

Previous

Next
SAS Logical: _loadMembers

SAS Logical: _loadMembers



Unconditionally loads the information about the members of a SAS Logical object into an SCL list


Syntax
Details

Syntax

CALL SEND (object-id, '_loadMembers', members-list<, options>);

Argument Type Description
members-list
N specifies the identifier of an SCL list. Each entry in members-list corresponds to a SAS logical name and is a sublist containing the items in Table 1. Spedify members-list as a numeric variable that is initialized either to 0 or to a valid list identifier. If the value of members-listis 0, then _loadMembers creates a new list, fills it with the members of the SAS Logical object, and returns the list identifier. If members-listis nonzero, then it must be a valid list identifier; otherwise, the program halts with an error.
'APPEND'
C appends any members to members-list; members-list is cleared by default.


Details

_loadMembers and _getMembers perform the same function except that _loadMembers loads information about all members and items associated with a SAS Logical object. _getMembers allows you to select the members and items that are loaded.

The form of members-list is the same as the form specified in _getMembers List Items.

By default, _loadMembers clears all items from members-list and fills it with the Logical object members. If 'APPEND' is specified, the Logical object members are appended to the existing members-list.


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.