You might need to extend or customize the functionality of EMDDB_M to meet your needs. For example, you may need to extend or customize EMDDB_M functionality if you use v6 Holap and v6 Holap++. Note that with SAS v8 holap is no longer a subclass of EMDDB_M and hence setting the MODEL attribute is unnecessary.
The MultidimensionalTable component enables you to override the underlying EMDDB_M model. MultidimensionalTable uses the following precedence to determine the underlying model:
For SAS v6 only
If you have written your own subclass of EMDDB_M, you can use it by initializing with an existing EIS Application in which you override the model entry. Or, you can add the MODEL attribute to your metabase registration, and then select your classname for the model's value. For more information see the Overriding a Method tutorial on the AppDev Studio Developer’s Site.
If you are using v6 Holap or v6 Holap++ subclasses, you must modify the model entry for any EIS Application (as you would in EIS). Otherwise, the model will detect the need for the Holap class by inspecting the metabase registration. There is no need to add the MODEL attribute to the registration.
Note that some subclass customizations may have no effect. The current server implementation has a subset of methods of emddb_m that it uses as its interface. If your customizations are in methods that are not used directly or indirectly by the interface, they will have no effect.The _getValues method is an example of this. For performance reasons, the current implementation uses _getBlock and not _getValues. Therefore, any customizations of _getValues would need to be added to _getBlock in order to be picked up.
Customizations to _setApplication for actions such as hiding Statistic labels and customizing the popup menus are honored as this method is part of the current interface to emddb_m.
Customizations that have been added to the viewer through the Advanced tab of an SAS/EIS application will have no effect in a thin client environment. The InformationBean communicates only with the model and has no knowledge of thick client viewers.