CurrencyCode Method for an Application
The CurrencyCode method returns the currency code that is associated with the division of the user position. For example, USD for U.S. dollars, EUR for the euro, or JPY for the Japanese yen.
Format
Application.CurrencyCode
No arguments are available.
Used With
Browser Script, COM Data Control, COM Data Server, and Server Script
Examples
The following example is in Siebel eScript:
function WebApplet_Load ()
{
var currencycode;
currencycode = TheApplication().CurrencyCode();
var WshShell = COMCreateObject("WScript.Shell");
WshShell.Popup(currencycode);
}