2006-12-29 06:05:52 +07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE database SYSTEM "http://db.apache.org/torque/dtd/database">
|
|
|
|
<database name="default" defaultIdMethod="none">
|
|
|
|
<table name="PA_REPORT">
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="PA_REPORT_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="false" type="ID" size="10" autoIncrement="false"/>
|
2006-12-29 06:05:52 +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 06:05:52 +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 06:05:52 +07:00
|
|
|
<column name="NAME" primaryKey="false" required="true" type="VARCHAR" size="60" autoIncrement="false"/>
|
|
|
|
<column name="DESCRIPTION" primaryKey="false" required="false" type="VARCHAR" size="255" autoIncrement="false"/>
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="PA_REPORTLINESET_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
|
|
|
<column name="PA_REPORTCOLUMNSET_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
|
|
|
<column name="C_ACCTSCHEMA_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
|
|
|
<column name="C_CALENDAR_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
2006-12-29 06:05:52 +07:00
|
|
|
<column name="PROCESSING" primaryKey="false" required="true" type="CHAR" size="1" autoIncrement="false"/>
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="AD_PRINTFORMAT_ID" primaryKey="false" required="false" type="ID" size="10" autoIncrement="false"/>
|
2006-12-29 06:05:52 +07:00
|
|
|
<column name="LISTSOURCES" primaryKey="false" required="true" type="CHAR" size="1" default="N" autoIncrement="false"/>
|
|
|
|
<column name="LISTTRX" primaryKey="false" required="true" type="CHAR" size="1" default="N" autoIncrement="false"/>
|
|
|
|
<foreign-key foreignTable="AD_ORG" name="ADORG_PAREPORT">
|
|
|
|
<reference local="AD_ORG_ID" foreign="AD_ORG_ID"/>
|
|
|
|
</foreign-key>
|
|
|
|
<foreign-key foreignTable="AD_PRINTFORMAT" name="ADPRINTFORMAT_PAREPORT">
|
|
|
|
<reference local="AD_PRINTFORMAT_ID" foreign="AD_PRINTFORMAT_ID"/>
|
|
|
|
</foreign-key>
|
|
|
|
<foreign-key foreignTable="C_ACCTSCHEMA" name="CACCTSCHEMA_PAREPORT">
|
|
|
|
<reference local="C_ACCTSCHEMA_ID" foreign="C_ACCTSCHEMA_ID"/>
|
|
|
|
</foreign-key>
|
|
|
|
<foreign-key foreignTable="C_CALENDAR" name="CCALENDAR_PAREPORT">
|
|
|
|
<reference local="C_CALENDAR_ID" foreign="C_CALENDAR_ID"/>
|
|
|
|
</foreign-key>
|
|
|
|
<foreign-key foreignTable="PA_REPORTCOLUMNSET" name="PAREPORT_COLUMNSET">
|
|
|
|
<reference local="PA_REPORTCOLUMNSET_ID" foreign="PA_REPORTCOLUMNSET_ID"/>
|
|
|
|
</foreign-key>
|
|
|
|
<foreign-key foreignTable="PA_REPORTLINESET" name="PAREPORT_LINESET">
|
|
|
|
<reference local="PA_REPORTLINESET_ID" foreign="PA_REPORTLINESET_ID"/>
|
|
|
|
</foreign-key>
|
|
|
|
<check>
|
|
|
|
<rule><![CDATA[IsActive in ('Y','N')]]></rule>
|
|
|
|
</check>
|
|
|
|
</table>
|
|
|
|
</database>
|