Skip to main content
Skip table of contents

LocationCurrency()

LocationCurrency()

Die Funktion gibt je nach Modus verschiedene standortbezogene Währungsinformationen zurück.

Parameter

Beschreibung

nCurrencyMode:N

Funktionsmodus der die zurückgegebene Information steuert.

0 - bcmCurrencyCode

Gibt die Währungsnummer der Standardwährung zurück.

1 - bcmCurrSign

Gibt das Währungskennzeichen der Standardwährung zurück.

2 - bcmCurrSymbol

Gibt das Währungssymbol der Standardwährung zurück.

3 - bcmCurrencyFull

Gibt Währungskennzeichen und -symbol der Standardwährung zurück.

nLocation:N

Standortnummer

Rückgabewert

Variant

Beispiel

CODE
|
  aLocation_S1:N, aLocation_S2:N,
  aCurrencyCode_S1:N, aCurrencyCode_S2:N,
  aCurrencySign_S1:C, aCurrencySign_S2:C,
  aCurrencySymbol_S1:C, aCurrencySymbol_S2:C,
  aFullCurrency_S1:C, aFullCurrency_S2:C
|

aLocation_S1 := 0, // (Haupt-)Standort 0 - Standardwährungskennzeichen Euro
aLocation_S2 := 1, // Standort 1 - Standardwährungskennzeichen US-Dollar

aCurrencyCode_S1   := LocationCurrency(bcmCurrencyCode, 0),    // Ergebnis 0
aCurrencySign_S1   := LocationCurrency(bcmCurrSign, 0),        // Ergebnis EUR
aCurrencySymbol_S1 := LocationCurrency(bcmCurrSymbol, 0),      // Ergebnis €
aFullCurrency_S1   := LocationCurrency(bcmCurrencyFull, 0),    // Ergebnis EUR (€)

aCurrencyCode_S2   := LocationCurrency(bcmCurrencyCode, 1),    // Ergebnis 2
aCurrencySign_S2   := LocationCurrency(bcmCurrSign, 1),        // Ergebnis USD
aCurrencySymbol_S2 := LocationCurrency(bcmCurrSymbol, 1),      // Ergebnis $
aFullCurrency_S2   := LocationCurrency(bcmCurrencyFull, 1),    // Ergebnis USD ($)

Weitere Verknüpfungen

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.