Loading...
Searching...
No Matches
getgroups.sas
Go to the documentation of this file.
1/**
2 @file getgroups.sas
3 @brief List all SAS Groups
4 @details Gets a list of all SAS Groups. Runs without mpeinit() so that it
5 can be available to the sasjs/server configurator
6
7 <h4> SAS Macros </h4>
8 @li dc_getgroups.sas
9
10 <h4> Data Outputs </h4>
11 <h5> groups </h5>
12 |NAME:$32.|DESCRIPTION:$64.|GROUPID:best.|
13 |---|---|---|
14 |`SomeGroup `|`A group `|`1`|
15 |`Another Group`|`this is a different group`|`2`|
16 |`admin`|`Administrators `|`3`|
17
18 @version 9.3
19 @author 4GL Apps Ltd
20 @copyright 4GL Apps Ltd. This code may only be used within Data Controller
21 and may not be re-distributed or re-sold without the express permission of
22 4GL Apps Ltd.
23**/
24
25%dc_getgroups(outds=groups)
26
27%webout(OPEN)
28%webout(OBJ,groups)
29%webout(CLOSE)
30