DoSaveNow
Syntax
DoSaveNow()
Description
The DoSaveNow function is designed primarily for use with remote calls. It enables a PeopleCode program to save page data to the database before running a remote process (most frequently a COBOL process) that will access the database directly. It is generally necessary to call DoSaveNow before ...
Else
Description
Use the Else keyword to create an else clause in an if block. See for more information.
EnableMenuItem
Syntax
EnableMenuItem(BARNAME.menubar_name, ITEMNAME.menuitem_name)
Description
Use the EnableMenuItem function to enable (make available for selection) the specified menu item. To apply this function to a pop-up menu, use the PrePopup Event of the field with which the pop-up menu is associated.
If youâre using this ...
EncodeSearchCode
Syntax
EncodeSearchCode(search_string)
Description
Use this function in special circumstances to encode a search string so that it is not âtokenizedâ by the search provider.
Note: Tokenization is the process that the search provider uses to split both indexed words as well as search terms containing special characters into ...
EncodeURL
Syntax
EncodeURL(URLString)
Description
Use the EncodeURL function to apply URL encoding rules, including escape characters, to the string specified by URLString . The method used to encode the URLString is the standard defined by W3C. This function returns a string that contains the encoded URL. All characters outside the Unicode ...
EncodeURLForQueryString
Syntax
EncodeURLForQueryString(URLString)
Description
Use the EncodeURLForQueryString function to encode URLString for use in a query string parameter in an URL. All characters outside the Unicode Basic Latin block (U+0020 â U+007F) are encoded, with the exception of the characters in the table below which are not encoded ...
Encrypt
Syntax
Encrypt(KeyString, ClearTextString)
Description
Use the Encrypt function to encrypt a string. This function is generally used with merchant passwords.
The value you use for KeyString must be the same for Decrypt and Encrypt.
Parameters
Field or Control |
Definition |
---|---|
KeyString |
Specify the key used for encrypting the string. You ... |
EncryptNodePswd
Syntax
EncryptNodePswd(Password)
Description
Use the EncryptNodePswd function to encrypt an Integration Broker node password.
Note: This function is generally used with Integration Broker node password encryption. This function should not be used casually, as once you encrypt your node password, there is no decrypt PeopleCode method.
Parameters
Field or ... |
---|
End-Evaluate
Description
Use End-Evaluate to terminate an Evaluate construct. See for more information.