ERP/3.0/Developers Guide/Database Model/org.openbravo.userinterface.selector/OBUISEL Selector
OBUISEL_Selector
- Name:OBUISEL_Selector
- Classname:OBUISEL_Selector
This table contains the following columns:
Name | Nullable | Data Type | Description
|
Isactive | No | CHAR (1) | There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reporting. There are two reasons for de-activating and not deleting records:
(1) The system requires the record for auditing purposes. (2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are existing invoices for it. By de-activating the Business Partner you prevent it from being used in future transactions. |
AD_Client_ID | No | VARCHAR (32) | A Client is a company or a legal entity. You cannot share data between Clients. |
AD_Column_ID | Yes | VARCHAR (32) | Link to the database column of the table |
Createdby | No | VARCHAR (32) | The Created By field indicates the user who created this record. |
Created | No | TIMESTAMP (7) | The Created field indicates the date that this record was created. |
Custom_Query | No | CHAR (1) | Indicates that a custom query is used to fill out the selector's grid. |
Description | Yes | NVARCHAR (255) | A description is limited to 255 characters. |
Displayfield_ID | Yes | VARCHAR (32) | The value of this field will be displayed in the selector text input box. |
Entity_Alias | Yes | VARCHAR (60) | In case that the the selector's table has an alias in the HQL it is mandatory to set it on this field. This alias is used to add some mandatory filters on the Where clause replacing the @additional_filters@ string. Some examples of added filters are: client, organization and active flag. |
Filter_Expression | Yes | VARCHAR (2000) | Defines a JavaScript expression evaluated on the server that returns a HQL where clause string and will be appended in the where clause. HQL where clause is static defined where clause. The filter expression can use JavaScript to access the Openbravo API evaluate on the fly and return a HQL dynamically. Note: This expression expression must always return a string value, e.g. "e.customer = true" |
HQL | Yes | VARCHAR (4000) | HQL Query code to populate selector's grid.
Retrieved columns must have an alias defined, this alias is used to identify the returned value with a selector field. It is mandatory to set the "@additional_filters@" String on the main where clause. It is forbidden to include an Order by clause in the HQL, the order is defined on the Selector fields. |
Whereclause | Yes | VARCHAR (2000) | The HQL where clause is added to the query to retrieve the data which is returned by the datasource. When refering to properties of the entity shown in the selector then use the prefix e. For example if the selector shows Products then refering to product category works like this: e.productCategory.name='Ceramics'. |
Help | Yes | NVARCHAR (2000) | The Help field contains a hint, comment or help about the use of this item. |
AD_Module_ID | No | VARCHAR (32) | Indicates the module the element forms part of. |
Name | No | NVARCHAR (60) | A more descriptive identifier (that does need to be unique) of a record/document that is used as a default search option along with the search key (that is unique and mostly shorter). It is up to 60 characters in length. |
Obclker_Template_ID | No | VARCHAR (32) | Defines the template which is used to generate the (javascript) code to render the component. |
Obserds_Datasource_ID | Yes | VARCHAR (32) | The datasource provides data from the database or from in-memory data. |
Obuisel_Selector_ID | No | VARCHAR (32) | The unique identifying key for the selector. |
AD_Org_ID | No | VARCHAR (32) | An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. |
Popuptextmatchstyle | No | VARCHAR (60) | Defines the text matching logic used in the filters in the popup grid. |
Obuiapp_Process_ID | Yes | VARCHAR (32) | This is the 'Process Definition' that will be opened once the 'Create New' button be pressed in a selector.
This process should be in charge of the record creation. |
AD_Reference_ID | Yes | VARCHAR (32) | The Reference indicates the type of reference field |
Sortbyfield_ID | Yes | VARCHAR (32) | The value of this field will be used to order the records in the drop-down of the selector. If not set, the concatenation of the column record identifier values is used. |
Suggestiontextmatchstyle | No | VARCHAR (60) | Defines the text matching logic used in the suggestion box. |
AD_Table_ID | Yes | VARCHAR (32) | The Table indicates the table in which a field or fields reside. |
Updated | No | TIMESTAMP (7) | The Updated field indicates the date that this record was updated. |
Updatedby | No | VARCHAR (32) | The Updated By field indicates the user who updated this record. |
Valuefield_ID | Yes | VARCHAR (32) | The value of this field will be set in the foreign key column. Normally this field does not need to be set. If not set then the id of the referenced entity is used. |
Columns
Active
- Physical column name: Isactive
- Property Name: active
- Reference: YesNo
- Default value: Y
Client
- Physical column name: AD_Client_ID
- Property Name: client
- Reference: TableDir
Foreign key column to AD_Client table, (column: AD_Client_ID)
It has a validation "AD_Client Security validation", with the following code
AD_Client.AD_Client_ID in (@#User_Client@)
Column
- Physical column name: AD_Column_ID
- Property Name: column
- Reference: TableDir
Foreign key column to AD_Column table, (column: AD_Column_ID)
It has a validation "AD_Column must be in AD_Table", with the following code
AD_Column.AD_Table_ID=@AD_Table_ID@
Created By
- Physical column name: Createdby
- Property Name: createdBy
- Reference: Search
Foreign key column to AD_User table, (column: AD_User_ID)
Creation Date
- Physical column name: Created
- Property Name: creationDate
- Reference: DateTime
- Default value: SYSDATE
Custom Query
- Physical column name: Custom_Query
- Property Name: customQuery
- Reference: YesNo
- Default value: N
Description
- Physical column name: Description
- Property Name: description
- Reference: String
Displayfield_ID
- Physical column name: Displayfield_ID
- Property Name: displayfield
- Reference: Table
Foreign key column to OBUISEL_Selector_Field table, (column: Obuisel_Selector_Field_ID)
Entity Alias
- Physical column name: Entity_Alias
- Property Name: entityAlias
- Reference: String
Filter_Expression
- Physical column name: Filter_Expression
- Property Name: filterExpression
- Reference: Memo
Callout: DefaultExpression
This column has a callout associated. Tests if the default expression used in a selector field is valid It is implemented by [1] Java Class.
HQL
- Physical column name: HQL
- Property Name: hQL
- Reference: Text
HQL Where Clause
- Physical column name: Whereclause
- Property Name: hQLWhereClause
- Reference: String
Help/Comment
- Physical column name: Help
- Property Name: helpComment
- Reference: String
Module
- Physical column name: AD_Module_ID
- Property Name: module
- Reference: TableDir
Foreign key column to AD_Module table, (column: AD_Module_ID)
It has a validation "Ad_Module_ID IsInDevelopment", with the following code
IsInDevelopment = 'Y' and type != 'T'
Name
- Physical column name: Name
- Property Name: name
- Reference: String
- This column is part of the table's identifier
Obclker_Template_ID
- Physical column name: Obclker_Template_ID
- Property Name: obclkerTemplate
- Reference: TableDir
Foreign key column to OBCLKER_Template table, (column: Obclker_Template_ID)
It has a validation "Restrict to Selector Templates", with the following code
COMPONENT_TYPE='OBUISEL_Selector'
Obserds_Datasource_ID
- Physical column name: Obserds_Datasource_ID
- Property Name: obserdsDatasource
- Reference: TableDir
Foreign key column to OBSERDS_Datasource table, (column: Obserds_Datasource_ID)
Obuisel_Selector_ID
- Physical column name: Obuisel_Selector_ID
- Property Name: id
- Reference: ID
Organization
- Physical column name: AD_Org_ID
- Property Name: organization
- Reference: TableDir
Foreign key column to AD_Org table, (column: AD_Org_ID)
It has a validation "AD_Org Security validation", with the following code
(@AD_Client_ID@='0' AND AD_Org.AD_Org_ID='0') OR (@AD_Client_ID@!='0' AND ((AD_Org.AD_Client_ID IN (@#User_Client@) AND AD_Org.AD_Org_ID IN (@#User_Org@)) OR AD_Org.AD_Org_ID='0' AND AD_Org.IsSummary='N'))
Popuptextmatchstyle
- Physical column name: Popuptextmatchstyle
- Property Name: popuptextmatchstyle
- Reference: List
- Default value: startsWith
List values: OBUISEL_TextMatchStyleType
The allowed values for this list are:
- startsWith (Starts with): Filters records by comparing the entered filter from the start of the record value
- substring (Contains): Filters records by checking if the filter is contained in the value in the record
Process Defintion
- Physical column name: Obuiapp_Process_ID
- Property Name: processDefintion
- Reference: Table
Foreign key column to OBUIAPP_Process table, (column: Obuiapp_Process_ID)
Reference
- Physical column name: AD_Reference_ID
- Property Name: reference
- Reference: TableDir
- This column is a child for a business object (is Parent)
Foreign key column to AD_Reference table, (column: AD_Reference_ID)
Sortbyfield_ID
- Physical column name: Sortbyfield_ID
- Property Name: sortbyfield
- Reference: Table
Foreign key column to OBUISEL_Selector_Field table, (column: Obuisel_Selector_Field_ID)
Suggestiontextmatchstyle
- Physical column name: Suggestiontextmatchstyle
- Property Name: suggestiontextmatchstyle
- Reference: List
- Default value: startsWith
List values: OBUISEL_TextMatchStyleType
The allowed values for this list are:
- startsWith (Starts with): Filters records by comparing the entered filter from the start of the record value
- substring (Contains): Filters records by checking if the filter is contained in the value in the record
Table
- Physical column name: AD_Table_ID
- Property Name: table
- Reference: Table
Foreign key column to AD_Table table, (column: AD_Table_ID)
Updated
- Physical column name: Updated
- Property Name: updated
- Reference: DateTime
- Default value: SYSDATE
Updated By
- Physical column name: Updatedby
- Property Name: updatedBy
- Reference: Search
Foreign key column to AD_User table, (column: AD_User_ID)
Valuefield_ID
- Physical column name: Valuefield_ID
- Property Name: valuefield
- Reference: Table
Foreign key column to OBUISEL_Selector_Field table, (column: Obuisel_Selector_Field_ID)
Other Info
Check Constraints
These are the check constraints for this table:
- OBUISEL_CUSTOM_QUERY_CHK: CUSTOM_QUERY IN ('Y', 'N')
- OBUISEL_SEL_ISACTIVE_CHECK: ISACTIVE IN ('Y', 'N')