Upcase

From SDU
Revision as of 14:22, 16 May 2011 by Kowy (Talk | contribs) (New page: __NOTOC__ Category:Customizations Category:r6 Category:r11 Category:r12 Category:Spell Code {{Global Header}} {{Global Announcement}} == Overview == Spell function con...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
To make corrections or additions to this article, select the edit tab above.
To discuss or ask questions about this article, select the discussion tab above.

Overview

Spell function converting string to a uppercase (coverts all characters in string to uppercase)

Usage

<source lang="javascript"> string upcase(string attr); </source>

  • attr - any string

Results

Returns converted string.

Examples

<source lang="javascript"> acc_type_name = upcase(acc_type_name); if (acc_type_name == 'EMPLOYEE') cnt_type = 2305; </source>