EsbCreateStorageTypedApplication() creates a new application with the option of data storage in Multidimensional or Aggregate Storage mode. Refer also to EsbCreateApplication().
EsbCreateStorageTypedApplication (hCtx, AppName, StorageType)
ByVal hCtx As Long ByVal AppName As String ByVal StorageType As Integer
hCtx | Essbase VB API context handle. |
AppName | Name of application to create. Application names can be 8 characters long, and can contain all special characters allowed in DOS file names. No spaces, commas, tabs, slashes, backslashes, or periods are allowed. The use of some special characters is not recommended because they are often used by the operating system (for example, @, $, %, and &). |
StorageType | The data storage type of the new application.
The valid values for StorageType are :
|
Declare Function EsbCreateStorageTypedApplication Lib "ESBAPIW" (ByVal hCtx As Long, ByVal AppName As String, ByVal StorageType As Integer) As Long Sub ESB_CreateStorageTypedApplication () Dim sts As Long Dim AppName As String Dim StorageType as Integer AppName = "Sample" '******************* ' Create Storage Typed Application '******************* sts = EsbCreateStorageTypedApplication (hCtx, AppName, StorageType) End SubEsbCreateApplication