Siebel Object Interfaces Reference > Interfaces Reference > Application Methods >

CurrencyCode Method


CurrencyCode returns the operating currency code associated with the division to which the user's position has been assigned.

Syntax

Application.CurrencyCode

Argument
Description

Not applicable

 

Returns

A string containing the currency code; for example, USD for U.S. dollars, EUR for the euro, JPY for the Japanese yen.

Used With

Browser Script, COM Data Control, COM Data Server, Web Client Automation Server, Server Script

Example

The following example is in Siebel eScript:

function WebApplet_Load ()
{
   var currencycode;
   currencycode = TheApplication().CurrencyCode();
   var WshShell = COMCreateObject("WScript.Shell");
   WshShell.Popup(currencycode);
}

Siebel Object Interfaces Reference