-1

I am Hyperion financial management learner . Some of my friends suggested VB Script for Hyperion financial management tool , In VB Script we are using , , , but in Hyperion financial management tool in rules file starting with SUB,TESTCASE, ENDSUB like this .

Let me know which type of Scripting using in Hyperion financial management tool .

skaffman
  • 398,947
  • 96
  • 818
  • 769
Nivas
  • 1
  • 1

2 Answers2

0

It actually is VBScript. Oracle has been moving towards Calculation Manager (A visual rules designer) rather than VBScript files, but you still can use either Calculation Manager or VBScript files. Rules files use the .rle file extension. Here is a simple file that is a valid rules file:

Sub Calculate()
    'Runs when you CALCULATE an entity
End Sub

Sub Translate()
    'Runs when you TRANSLATE an entity
End Sub

Sub Consolidate()
    'Runs when you CONSOLIDATE an entity
End Sub
neelsg
  • 4,802
  • 5
  • 34
  • 58
0

According to this link (please note, links to a PDF), your friends are correct, in that at least in version 9 it incorporated the Visual Basic scripting engine.

Hans Olsson
  • 54,199
  • 15
  • 94
  • 116