View source | Discuss this page | Page history | Printable version   

ERP/3.0/Developers Guide/Database Model/org.openbravo.userinterface.selector/OBUISEL Selector

This article is protected against manual editing because it is automatically generated from Openbravo meta-data. Learn more about writing and translating such documents.
Back button.png   Back to ERP/3.0/Developers Guide/Database Model/org.openbravo.userinterface.selector


Contents

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



top


Client


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@)

top


Column


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@

top


Created By


Foreign key column to AD_User table, (column: AD_User_ID)

top


Creation Date



top


Custom Query



top


Description



top


Displayfield_ID


Foreign key column to OBUISEL_Selector_Field table, (column: Obuisel_Selector_Field_ID)

top


Entity Alias



top


Filter_Expression



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.

top


HQL



top


HQL Where Clause



top


Help/Comment



top


Module


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'

top


Name


top


Obclker_Template_ID


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'

top


Obserds_Datasource_ID


Foreign key column to OBSERDS_Datasource table, (column: Obserds_Datasource_ID)

top


Obuisel_Selector_ID



top


Organization


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'))

top


Popuptextmatchstyle


List values: OBUISEL_TextMatchStyleType

The allowed values for this list are:

top


Process Defintion


Foreign key column to OBUIAPP_Process table, (column: Obuiapp_Process_ID)

top


Reference


Foreign key column to AD_Reference table, (column: AD_Reference_ID)

top


Sortbyfield_ID


Foreign key column to OBUISEL_Selector_Field table, (column: Obuisel_Selector_Field_ID)

top


Suggestiontextmatchstyle


List values: OBUISEL_TextMatchStyleType

The allowed values for this list are:

top


Table


Foreign key column to AD_Table table, (column: AD_Table_ID)

top


Updated



top


Updated By


Foreign key column to AD_User table, (column: AD_User_ID)

top


Valuefield_ID


Foreign key column to OBUISEL_Selector_Field table, (column: Obuisel_Selector_Field_ID)

top


Other Info

Check Constraints

These are the check constraints for this table:

top

Back button.png   Back to org.openbravo.userinterface.selector

Retrieved from "http://wiki.openbravo.com/wiki/ERP/3.0/Developers_Guide/Database_Model/org.openbravo.userinterface.selector/OBUISEL_Selector"

This page has been accessed 5,735 times. This page was last modified on 22 August 2023, at 09:35. Content is available under Creative Commons Attribution-ShareAlike 2.5 Spain License.