Profitability Management uses PROC OLAP to generate a cube. You can modifiy the way in which cubes are generated by modifying the options to the OLAP procedure. To modify the options:
<PROC OLAP OPTIONS BEGIN> INDEXSORTSIZE=512 <PROC OLAP OPTIONS END>
For available options, see "The OLAP Procedure" in the SAS OLAP Server: User's Guide.
/*----------------------------------------------------------------------------+ | | CreateCubeTemplate: Pre processing steps can be placed below but must be before the olap code | +----------------------------------------------------------------------------*/ OPTION NOSYNTAXCHECK; OPTION SORTPGM=SAS; OPTION NOOVP; /*----------------------------------------------------------------------------+ Edit the following section to include customized options for PROC OLAP <PROC OLAP OPTIONS BEGIN> INDEXSORTSIZE=512 MAXTHREADS=2 <PROC OLAP OPTIONS END>