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

ERP/3.0/Developers Guide/Database Model/org.openbravo.client.application/OBUIAPP Navbar Component

ERP/3.0/Developers Guide/Database Model/org.openbravo.client.application

Index

Contents

OBUIAPP_Navbar_Component

Defines a component which is shown in the navigation bar in the main layout of the Openbravo user interface.

This table contains the following columns:

Name Nullable Data Type Description
Obuiapp_Navbar_Component_ID NVARCHAR2(32)A component shown in the navigation bar in the top of the user interface
AD_Client_ID NVARCHAR2(32)Client for this installation.
AD_Org_ID NVARCHAR2(32)Organizational entity within client
AD_Module_ID NVARCHAR2(32)Module
Obclker_Template_ID YVARCHAR2(32)The template used to generate the visualization of the component.
Name NVARCHAR2(60)A non-unique identifier for a record/document often used as a search tool.
Description YVARCHAR2(255)A space to write additional related information.
Classname NVARCHAR2(300)The classname of the navigation bar component.
Allroles NCHAR(1)Defines that this navigation bar component is available to all roles or that role access is defined specifically by role.
Sortno NNUMBER(10, 0)A means of sorting and ordering records in a window.
Isactive NCHAR(1)A flag indicating whether this record is available for use or de-activated.
Created NDATEThe date that this record is completed.
Createdby NVARCHAR2(32)User who created this records
Updated NDATEx not implemented
Updatedby NVARCHAR2(32)User who updated this records

Other Info

Check constraints

These are the check constraints for this table:

top

Indexes

These are the indexes for this table (for each index there is a list of all the columns included within it):

Unique

top

Columns

Obuiapp_Navbar_Component_ID

A navigation bar component is a component which is shown in the navigation bar in the top of the user interface. For example a quick create or an application menu.

top

Client

Foreign key column to AD_Client table, (column: AD_Client_ID)


Validation Rule AD_Client Security validation: Clients with user access rights. With the following code:

 
AD_Client.AD_Client_ID IN (@#User_Client@)

top

Organization

Foreign key column to AD_Org table, (column: AD_Org_ID)


Validation Rule AD_Org Security validation: Organizations of the Client with user acces rights. 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

Module

Foreign key column to AD_Module table, (column: AD_Module_ID)


Validation Rule Ad_Module_ID IsInDevelopment: AD_Module_ID IsInDevelopment. With the following code:

 
IsInDevelopment = 'Y' AND type != 'T'

top

Template

Foreign key column to Obclker_Template table, (column: Obclker_Template_ID)


Validation Rule Restrict to Navigation Bar Templates: Restrict to Navigation Bar Templates. With the following code:

 
COMPONENT_TYPE='OBUIAPP_NavigationBar'

top

Name

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.

top

Description

A description is limited to 255 characters.

top

Java Class Name

The java class name of the navigation bar component. The java class must extend the org.openbravo.client.kernel.BaseTemplateComponent.

top

Allroles

Defines that this navigation bar component is available to all roles or that role access is defined specifically by role through the navigation bar role access table.

top

Record Sort No.

The Record Sort No indicates the ascending sort sequence of the records

top

Active

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.

top

Creation Date

The Created field indicates the date that this record was created.

top

Created By

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

top

Updated

The Updated field indicates the date that this record was updated.

top

Updated By

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

top

Related tables

Tables that link this table:

top

Retrieved from "http://wiki.openbravo.com/wiki/ERP/3.0/Developers_Guide/Database_Model/org.openbravo.client.application/OBUIAPP_Navbar_Component"

This page has been accessed 351 times. This page was last modified on 15 April 2011, at 21:17. Content is available under Creative Commons Attribution-ShareAlike 2.5 Spain License.