space
Previous Page | Next Page

MDDB Report Viewer 9.2

_BUILD_APPLICATION_LIST_ Method

Builds the application list for the data model

This method

For more information on the structure of application lists, see the online Help for SAS/EIS software.

Syntax

 
CALL SEND(OBJID,'_BUILD_APPLICATION_LIST_',application-list,metabase-id,
                catalog-entry,down-variable,across-variable);
Where... Is Type... And Contains...
application-list N the list ID of the application list.
metabase-id N the ID number of the metabase.
catalog-entry C the catalog entry of the Report Gallery template.
down-variable C the variable that is selected for the down dimension (optional). (This parameter is included for compatibility with previous releases of this application.)
across-variable C the variable that is selected for the across dimension (optional). (This parameter is included for compatibility with previous releases of this application.)

Example

applist= makelist();
mbid= instance(loadclass('SASHELP.MB.METABASE.CLASS'));
centry= 'SASHELP.EISRG.ONEWAY.EIS';
downvar= 'Geographic';
rc=insertc(downvars_, downvar, -1);
acrosvar= 'Year';
rc=insertc(acrvars_, acrosvar, -1);
call send(webid,'_BUILD_APPLICATION_LIST_',applist,mbid,centry);


Previous Page | Next Page | Top of Page