2006-12-29 05:51:30 +07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE database SYSTEM "http://db.apache.org/torque/dtd/database">
|
|
|
|
<database name="default" defaultIdMethod="none">
|
|
|
|
<table name="GL_JOURNALBATCH">
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="GL_JOURNALBATCH_ID" primaryKey="true" required="true" type="ID" size="10" autoIncrement="false"/>
|
|
|
|
<column name="AD_CLIENT_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
|
|
|
<column name="AD_ORG_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
2006-12-29 05:51:30 +07:00
|
|
|
<column name="ISACTIVE" primaryKey="false" required="true" type="CHAR" size="1" default="Y" autoIncrement="false"/>
|
|
|
|
<column name="CREATED" primaryKey="false" required="true" type="TIMESTAMP" size="7" default="CURRENT_TIMESTAMP" autoIncrement="false"/>
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="CREATEDBY" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
2006-12-29 05:51:30 +07:00
|
|
|
<column name="UPDATED" primaryKey="false" required="true" type="TIMESTAMP" size="7" default="CURRENT_TIMESTAMP" autoIncrement="false"/>
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="UPDATEDBY" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
2006-12-29 05:51:30 +07:00
|
|
|
<column name="DOCUMENTNO" primaryKey="false" required="true" type="VARCHAR" size="30" autoIncrement="false"/>
|
|
|
|
<column name="DESCRIPTION" primaryKey="false" required="true" type="VARCHAR" size="255" autoIncrement="false"/>
|
|
|
|
<column name="POSTINGTYPE" primaryKey="false" required="true" type="CHAR" size="1" autoIncrement="false"/>
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="GL_CATEGORY_ID" primaryKey="false" required="false" type="ID" size="10" autoIncrement="false"/>
|
2006-12-29 05:51:30 +07:00
|
|
|
<column name="DATEDOC" primaryKey="false" required="false" type="TIMESTAMP" size="7" autoIncrement="false"/>
|
|
|
|
<column name="DATEACCT" primaryKey="false" required="false" type="TIMESTAMP" size="7" autoIncrement="false"/>
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="C_PERIOD_ID" primaryKey="false" required="false" type="ID" size="10" autoIncrement="false"/>
|
|
|
|
<column name="C_CURRENCY_ID" primaryKey="false" required="false" type="ID" size="10" autoIncrement="false"/>
|
2007-02-01 23:50:31 +07:00
|
|
|
<column name="TOTALDR" primaryKey="false" required="true" type="DECIMAL" default="0" autoIncrement="false"/>
|
|
|
|
<column name="TOTALCR" primaryKey="false" required="true" type="DECIMAL" default="0" autoIncrement="false"/>
|
|
|
|
<column name="CONTROLAMT" primaryKey="false" required="false" type="DECIMAL" default="0" autoIncrement="false"/>
|
2006-12-29 05:51:30 +07:00
|
|
|
<column name="PROCESSING" primaryKey="false" required="true" type="CHAR" size="1" default="N" autoIncrement="false"/>
|
|
|
|
<column name="PROCESSED" primaryKey="false" required="true" type="CHAR" size="1" default="N" autoIncrement="false"/>
|
|
|
|
<column name="COPYFROM" primaryKey="false" required="false" type="CHAR" size="1" autoIncrement="false"/>
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="C_DOCTYPE_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
2006-12-29 05:51:30 +07:00
|
|
|
<column name="DOCSTATUS" primaryKey="false" required="true" type="CHAR" size="2" autoIncrement="false"/>
|
|
|
|
<column name="DOCACTION" primaryKey="false" required="true" type="CHAR" size="2" autoIncrement="false"/>
|
|
|
|
<column name="ISAPPROVED" primaryKey="false" required="false" type="CHAR" size="1" autoIncrement="false"/>
|
|
|
|
<foreign-key foreignTable="C_CURRENCY" name="CCURRENCY_GLJOURNALBATCH">
|
|
|
|
<reference local="C_CURRENCY_ID" foreign="C_CURRENCY_ID"/>
|
|
|
|
</foreign-key>
|
|
|
|
<foreign-key foreignTable="C_DOCTYPE" name="CDOCTYPE_GLJOURNALBATCH">
|
|
|
|
<reference local="C_DOCTYPE_ID" foreign="C_DOCTYPE_ID"/>
|
|
|
|
</foreign-key>
|
|
|
|
<foreign-key foreignTable="C_PERIOD" name="C_PERIOD_JOURNALBATCH">
|
|
|
|
<reference local="C_PERIOD_ID" foreign="C_PERIOD_ID"/>
|
|
|
|
</foreign-key>
|
|
|
|
<foreign-key foreignTable="GL_CATEGORY" name="GLCATEGORY_GLJOURNALBATCH">
|
|
|
|
<reference local="GL_CATEGORY_ID" foreign="GL_CATEGORY_ID"/>
|
|
|
|
</foreign-key>
|
|
|
|
<unique name="GL_JOURNALBATCH_DOCNO">
|
|
|
|
<unique-column name="AD_ORG_ID"/>
|
|
|
|
<unique-column name="C_PERIOD_ID"/>
|
|
|
|
<unique-column name="DOCUMENTNO"/>
|
|
|
|
</unique>
|
|
|
|
<check>
|
|
|
|
<rule><![CDATA[IsActive in ('Y','N')]]></rule>
|
|
|
|
</check>
|
|
|
|
<check>
|
|
|
|
<rule><![CDATA[Processing in ('Y','N')]]></rule>
|
|
|
|
</check>
|
|
|
|
<check>
|
|
|
|
<rule><![CDATA[Processed in ('Y','N')]]></rule>
|
|
|
|
</check>
|
|
|
|
</table>
|
|
|
|
</database>
|