Hi HFM expert,
I am trying to create a NoInput rule to allow certain members in Custom 1 to be 'locked down' to the FORECAST category only. However, when I load the VB Rule Script to HFM, an error message "VB Script Engine could not be initialised". By removing this lot of rules, the error disappears. Is there something wrong with my NoInput rule, and is there a better way to summarise it?
Requirement:
- Create versioning for the FORECAST category (ie Jul_ver, Aug_ver, Sep_ver, etc).
- Versioning is not available to use for other categories (ie ACTUAL, BUDGET, FLASH).
My current rule in the NoInput Routine:
Sub NoInput()
HS.NoInput "S#ACTUAL.C1#Jul_ver"
HS.NoInput "S#ACTUAL.C1#Aug_ver"
HS.NoInput "S#ACTUAL.C1#Sep_ver"
HS.NoInput "S#ACTUAL.C1#Oct_ver"
HS.NoInput "S#ACTUAL.C1#Nov_ver"
HS.NoInput "S#ACTUAL.C1#Dec_ver"
HS.NoInput "S#ACTUAL.C1#Jan_ver"
HS.NoInput "S#ACTUAL.C1#Feb_ver"
HS.NoInput "S#ACTUAL.C1#Mar_ver"
HS.NoInput "S#ACTUAL.C1#Apr_ver"
HS.NoInput "S#ACTUAL.C1#May_ver"
HS.NoInput "S#ACTUAL.C1#Jun_ver"
HS.NoInput "S#BUDGET.C1#Jul_ver"
HS.NoInput "S#BUDGET.C1#Aug_ver"
HS.NoInput "S#BUDGET.C1#Sep_ver"
HS.NoInput "S#BUDGET.C1#Oct_ver"
HS.NoInput "S#BUDGET.C1#Nov_ver"
HS.NoInput "S#BUDGET.C1#Dec_ver"
HS.NoInput "S#BUDGET.C1#Jan_ver"
HS.NoInput "S#BUDGET.C1#Feb_ver"
HS.NoInput "S#BUDGET.C1#Mar_ver"
HS.NoInput "S#BUDGET.C1#Apr_ver"
HS.NoInput "S#BUDGET.C1#May_ver"
HS.NoInput "S#BUDGET.C1#Jun_ver"
HS.NoInput "S#FLASH.C1#Jul_ver"
HS.NoInput "S#FLASH.C1#Aug_ver"
HS.NoInput "S#FLASH.C1#Sep_ver"
HS.NoInput "S#FLASH.C1#Oct_ver"
HS.NoInput "S#FLASH.C1#Nov_ver"
HS.NoInput "S#FLASH.C1#Dec_ver"
HS.NoInput "S#FLASH.C1#Jan_ver"
HS.NoInput "S#FLASH.C1#Feb_ver"
HS.NoInput "S#FLASH.C1#Mar_ver"
HS.NoInput "S#FLASH.C1#Apr_ver"
HS.NoInput "S#FLASH.C1#May_ver"
HS.NoInput "S#FLASH.C1#Jun_ver"
End Sub