DoSaveNow

Mon 01 January 2018

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 ...

read more

Else

Mon 01 January 2018

Description

Use the Else keyword to create an else clause in an if block. See for more information.

read more

EnableMenuItem

Mon 01 January 2018

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 ...

read more

EncodeSearchCode

Mon 01 January 2018

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 ...

read more

EncodeURL

Mon 01 January 2018

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 ...

read more

EncodeURLForQueryString

Mon 01 January 2018

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 ...

read more

Encrypt

Mon 01 January 2018

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 ...

read more

EncryptNodePswd

Mon 01 January 2018

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 ...

read more

End-Evaluate

Mon 01 January 2018

Description

Use End-Evaluate to terminate an Evaluate construct. See for more information.

read more

End-For

Mon 01 January 2018

Description

Use End-For to terminate a for loop. See for more information.

read more