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

ERP/2.50/Developers Guide/Database Model/org.openbravo.model.ad.ui/AD Process

Contents

AD_Process

The Report and Process Tab defines each report and process run in the system.

This table contains the following columns:

Name Nullable Data Type Description
AD_Process_ID NVARCHAR2(32)A series of actions carried out in sequential order.
AD_Client_ID NVARCHAR2(32)Client for this installation.
AD_Org_ID NVARCHAR2(32)Organizational entity within client
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
Value NNVARCHAR2(40)A fast method for finding a particular record.
Name NNVARCHAR2(60)A non-unique identifier for a record/document often used as a search tool.
Description YNVARCHAR2(255)A space to write additional related information.
Help YNVARCHAR2(2000)A comment that adds additional information to help users work with fields.
AccessLevel NVARCHAR2(60)Indicates what type of data (in terms of AD_CLIENT and AD_ORG data columns) can be entered or viewed.
IsUserStartable YCHAR(1)Determines a process can be initiated by the user
ProcedureName YNVARCHAR2(60)Name of the Database Procedure
IsReport NCHAR(1)An indication whether something is a document, or a report which summarizes information.
IsDirectPrint YCHAR(1)Print without dialog
Classname YNVARCHAR2(200)x not implemented
IsBackground NCHAR(1)Is background process
IsJasper YCHAR(1)null
Jrname YNVARCHAR2(256)null
Service_Type YVARCHAR2(60)Indicates the type of the external service
Isexternalservice YCHAR(1)Sets the process as a external service that is loadable from the application menu.
Service_Source YNVARCHAR2(2000)Indicates where is located the external service. It can be an URL or a path.
AD_Module_ID NVARCHAR2(32)Module
UIPattern NVARCHAR2(60)Defines the UI Pattern

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

Process

The Process field identifies a unique Process or Report in the system.

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)

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

Search Key

A search key allows for a fast method of finding a particular record. If you leave the search key empty, the system automatically creates a numeric number originating from a document sequence defined in the "Document Sequence" window. The sequence naming convention follows a rule "DocumentNo_TableName", where TableName is the actual name of the database table (e.g. C_Order).

Usually, company's internal identifiers for various records (products, customers, etc) are stored here.

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

Help/Comment

The Help field contains a hint, comment or help about the use of this item.

top

Data Access Level

Indicates what type of data (in terms of AD_CLIENT and AD_ORG data columns) can be entered or viewed. We can classify data in 4 major categories:
- System (AD_CLIENT_ID=0, AD_ORG_ID=0) - system data (such as metadata for window, tab and field definition)
- Organization (AD_CLIENT<>0, AD_ORG_ID<>0) - data particular to an organization (such as sales orders)
- Client/Organization (AD_CLIENT<>0, AD_ORG_ID=anything) - data particular to an organization or shared among all organizations within one client
- Client (AD_CLIENT<>0, AD_ORG_ID=0) - data that is specific to a client but can be used by all organizations within that client

or All (AD_CLIENT=anything, AD_ORG_ID=anything)

List values: AD_Table Access Levels

The allowed values for this list are:

top

User can start process

The User can start Process checkbox indicates that this process can be initiated by the user (as opposed to system initiated)

top

Procedure

The Procedure indicates the name of the database procedure called by this report or process.

top

Report

The Report checkbox indicates that this record is a report as opposed to a process

top

Direct print

The Direct Print checkbox indicates that the report will print without displaying the print dialog box.

top

Java Class Name

The classname is used when generating a representation of the table in java (the entity or business object). The classname is the simplename of the class (so without the package name). Often the AD_Table.name can be used here. The combination of classname and package needs to be unique.

top

Background

This identifies a background process that will be run without any user interaction and needs to be scheduled properly before it will be run using the "Process Scheduling" window.

top

Jasper Report

Defines that the report is a jasper report.

top

JR Template name

Defines the name (including the extension) of the main tamplate (jrxml file) of the Jasper Report.

top

Service Type

Indicates the type of the external service

List values: External Services

The allowed values for this list are:

top

External Service

Sets the process as a external service that is loadable from the application menu.

top

Service Source

Indicates where is located the external service. It can be an URL or a path.

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

UI Pattern

Defines the UI Pattern that the object implements.

List values: AD_Process UIPattern

The allowed values for this list are:

top

Related tables

Tables that link this table:

top

Retrieved from "http://wiki.openbravo.com/wiki/ERP/2.50/Developers_Guide/Database_Model/org.openbravo.model.ad.ui/AD_Process"

This page has been accessed 4,735 times. This page was last modified on 2 July 2011, at 20:38. Content is available under Creative Commons Attribution-ShareAlike 2.5 Spain License.