UpdateCurrencyCalcInfo Method

The UpdateCurrencyCalcInfo method updates information that Siebel Open UI uses for a currency calculation. Siebel Open UI calls it when it sends currency information from the Siebel Server. You can use it to display currency information in an applet. It uses the following syntax:

UpdateCurrencyCalcInfo(0,args) 

For example, the applet.js file contains the following code:

this.UpdateCurrencyCalcInfo(0,args); 

You can add the following code to the InvokeCurrencyApplet method of the physical renderer:

this.GetPM().AttachPMBinding ("UpdateCurrencyCalcInfo", function(){custom_code}   , 
{scope : this}}); 

where:

  • custom_code is code that you write that updates information in the currency calculator control.

For information about where you add this code, see Adding Code to the Physical Renderer.