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

ERP 2.50:Developers Guide/Database Model/org.openbravo.model.financialmgmt.calendar/C PeriodControl Log

ERP 2.50:Developers Guide/Database Model/org.openbravo.model.financialmgmt.calendar

Index

Contents

C_PeriodControl_Log

It stores a log about the execution of the open or close period control process.

This table contains the following columns:

Name Nullable Data Type Description
C_Periodcontrol_Log_ID NVARCHAR2(32)Record of a Period Control
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
Description YVARCHAR2(255)A space to write additional related information.
Processing NCHAR(1)A request to process the respective document or task.
Processed NCHAR(1)A confirmation that the associated documents or requests are processed.
C_Calendar_ID NVARCHAR2(32)A table showing the days of the week for each month of the year.
IsRecursive NCHAR(1)If it is selected, the process will also open or close the documents of all of the organizations that depend on the selected organization.
C_Year_ID NVARCHAR2(32)Calendar Year
Periodno NVARCHAR2(32)Until Period Number
Docbasetype YVARCHAR2(60)A classification of document types that are shown and processed in the same window.
Periodaction NVARCHAR2(60)Action taken for this period

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

Period Control record

Log of the Open/Close Period Control process

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 IsPeriodControlAllowed: Display the organizations which are allowed to open/close period control. With the following code:

 
ISPERIODCONTROLALLOWED='Y' AND IsReady='Y'

Callout: SE_PeriodNo

This element is linked to a callout.

It is implemented by org.openbravo.erpCommon.ad_callouts.SE_PeriodNo Java class.

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)


Reference Table AD_User

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)


Reference Table AD_User

top

Description

A description is limited to 255 characters.

top

Process Now

When this field is set as 'Y' a process is being performed on this record.

top

Processed

The Processed checkbox indicates that a document has been processed.

top

Calendar

Foreign key column to C_Calendar table, (column: C_Calendar_ID)

top

Cascade

If it is selected, the process will also open or close the documents of all of the organizations that depend on the selected organization.

top

Year

Foreign key column to C_Year table, (column: C_Year_ID)


Validation Rule C_Calendar and C_Year of an organization: It ensures the calendar combobox shows always the calendar of the selected organization. With the following code:

 
C_YEAR.C_CALENDAR_ID IN (SELECT DISTINCT(C_CALENDAR_ID) FROM AD_ORG WHERE AD_ORG_ID=AD_ORG_GETCALENDAROWNER(@AD_ORG_ID@))

Callout: SE_PeriodNo

This element is linked to a callout.

It is implemented by org.openbravo.erpCommon.ad_callouts.SE_PeriodNo Java class.

top

Until Period.

The process will open or close all the documents of this period and the periods before this one for the selected year.

Foreign key column to C_Period table, (column: C_Period_ID)


Reference Table PeriodNo With the following where clause:

 
C_Year_ID=@C_Year_ID@


top

Document Category

The Document Base Type identifies the base or starting point for a document. Multiple document types may share a single document base type.

List values: C_DocType DocBaseType

The allowed values for this list are:

top

Period Action

The Period Action indicates the action to be taken for this period. For example 'Close Period' or 'Open Period'.

Validation Rule Allowed PeriodActions: Display only the allowed PeriodActions. With the following code:

 
Value<>'N'

List values: C_PeriodControl Action

The allowed values for this list are:

top

Retrieved from "http://wiki.openbravo.com/wiki/ERP_2.50:Developers_Guide/Database_Model/org.openbravo.model.financialmgmt.calendar/C_PeriodControl_Log"

This page has been accessed 2,600 times. This page was last modified on 14 June 2011, at 11:04. Content is available under Creative Commons Attribution-ShareAlike 2.5 Spain License.