Difference between revisions of "Upcase"

From SDU
Jump to: navigation, search
(New page: __NOTOC__ Category:Customizations Category:r6 Category:r11 Category:r12 Category:Spell Code {{Global Header}} {{Global Announcement}} == Overview == Spell function con...)
 
(No difference)

Latest revision as of 14:22, 16 May 2011

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>