Table of Contents






Variable

A variable defines how a value should be handled, which type it has, etc. It's used mostly in the model to define how customer specific fields look like.

Parameters
name data type description
ident String The unique textual identifier for the variable
system Bool Implies if this variable is defined by the system or customer specific
released Bool Shows if the variable has been released and deployed to the db schema
required Bool Shows if the variable is required to the user in edit mode
access Access Shows with which access rights the variable is shown to the user
value Value The value type of the variable and default value when created
name Language The display name of the variable
description Language The display description of the variable
Parameters
name data type description
ident String The unique textual identifier for the variable
required Bool Shows if the variable is required to the user in edit mode
access Access Shows with which access rights the variable is shown to the user
value Value The value type of the variable and default value when created
name Language The display name of the variable
description Language The display description of the variable
Description

Creates a new variable with an ident and the value.

Parameters
parameter data type description
0 Ident The ident of the new variable
1 Value The value of the new variable
Returns
data type description
Result<Variable> The newly created variable
Description

Clones a variable and returns a new one with independent of the original one.

Parameters
parameter data type description
0 Self / Variable A reference to the own object
Returns
data type description
Variable The cloned new idendependet Variable