To get information about a record of an entity in your eSpace, you can use the Get<Entity name> action or GetForUpdate<Entity name> action.

If the entity has no primary key, the Get action is not available; you can only use the Create action.

There is also a Get<Entity Name> entity function which can be used in the Expression Editor.

Input arguments

Output arguments

See how to access the output parameters.

Behavior

This function retrieves all the attributes for the record that has the input argument Id as its Identifier. If some of the attributes are empty in the database, they are always converted to the corresponding default values. Beware that if you're fetching a record with the purpose of updating it, you may want to use the GetForUpdate action instead.

Possible exceptions

A database exception might be raised when, for example, you are trying to fetch a record whose identifier does not exist.

See Also

Execute an Entity Action | Create Entities | Update Entities | Delete Entities | Get Entities | Get Function | Handle Exceptions