ISFIELDSET

Syntax

ISFIELDSET ("field_name")

Description

ISFIELDSET checks to see if the field is returned by the Connector.

Arguments

field_name The name of the source field.

Returns

If the field specified by field_name is returned by the Connector, returns a Boolean True.

If the field specified by field_name is not returned by the Connector, returns a Boolean False.

Remarks

Note: Since the field name must be in quotes, if you change the name of the Connection that is the source for the field name used in this function, the name change does not propagate to the field name. If you change the Connection name, you must manually update this function.

Examples

If the current record of MyEntity.Customer is returned as part of the result set then the following formula:

IF(ISFIELDSET("MyEntity.Customer"), "Data was returned", "Data was not returned")
Note: MyEntity.Customer does not have to contain a value to evaluate to true. The property itself, MyEntity.Customer must be included in the information returned.

Returns:

"Data was returned"

If the request does not contain the field, then:

IF(ISFIELDSET("MyEntity.Customer"),"Data was returned", "Data was not returned")

Returns:

"Data was not returned"

Related Topics

Logical Functions