EsbOtlEnableDTSMember() enables a new DTS member for the outline.
EsbOtlEnableDTSMember (hOutline, pszDTSMember, usGen, bEnable)
ByVal hOutline As Long ByVal pszDTSMember As String ByVal usGen As Integer ByVal bEnable As Integer
hOutline | Essbase outline handle returned from the EsbOtlOpenOutlineQuery call. |
pszDTSMember | A string containing the name of the DTS member to enable. |
usGen | The generation number at which to enable the DTS member. |
bEnable | A flag. True means enable the member, false means disable the member. |
If successful the return value is zero. Otherwise, returns the status of the EsbOtlQueryMembers() call.
This function also fills in the ESB_DTSMBRNAME_T structure passed to it.
Public Sub ESB_OtlEnableDTSMember() Dim DTSMember As String Dim GenNum As Integer Dim Enable As Integer DTSMember = "H-T-D" GenNum = 1 Enable = ESB_TRUE sts = EsbOtlEnableDTSMember(hOutline, DTSMember, _ GenNum, Enable) End Sub
EsbOtlDeleteDTSMemberAlias()
EsbOtlGetEnabledDTSMembers()
EsbOtlGetDTSMemberAlias()
EsbOtlSetDTSMemberAlias()