|
_BUILD_ACROSSL_LIST_ Method
Builds the across list (variables in the across dimension) on the application list.
This method
Syntax
CALL SEND(OBJID,'_BUILD_ACROSSL_LIST_',application-list,across-variable);
Where... |
Is Type... |
And Contains... |
application-list |
N |
the list ID of the application list.
For more information on
application lists, see the online documentation for SAS/EIS
software. |
across-variable |
C |
the variable selected for the across dimension (optional, and no longer used). |
Example
acrosvar='Product Line';
rc=insertc(acrvars_,acrosvar,-1);
applist=makelist();
rc=fillist('CATALOG','SASHELP.EISRG.ONEWAY.EIS',applist);
call send(webid,'_BUILD_ACROSSL_LIST_',applist);
The following sublist will be added to the application list:
Across:( PRODUCT LINE= ( HIERARCH= 'Product Line'
)[1081]
)[989]
|