2006-12-29 06:10:54 +07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE database SYSTEM "http://db.apache.org/torque/dtd/database">
|
|
|
|
<database name="default" defaultIdMethod="none">
|
|
|
|
<table name="T_DISTRIBUTIONRUNDETAIL">
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="M_DISTRIBUTIONRUN_ID" primaryKey="true" required="true" type="ID" size="10" autoIncrement="false"/>
|
|
|
|
<column name="M_DISTRIBUTIONRUNLINE_ID" primaryKey="true" required="true" type="ID" size="10" autoIncrement="false"/>
|
|
|
|
<column name="M_DISTRIBUTIONLIST_ID" primaryKey="true" required="true" type="ID" size="10" autoIncrement="false"/>
|
|
|
|
<column name="M_DISTRIBUTIONLISTLINE_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 06:10:54 +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:10:54 +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"/>
|
2007-02-01 23:50:31 +07:00
|
|
|
<column name="RATIO" primaryKey="false" required="true" type="DECIMAL" autoIncrement="false"/>
|
|
|
|
<column name="MINQTY" primaryKey="false" required="true" type="DECIMAL" default="0" autoIncrement="false"/>
|
|
|
|
<column name="QTY" primaryKey="false" required="true" type="DECIMAL" default="0" autoIncrement="false"/>
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="M_PRODUCT_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
|
|
|
<column name="C_BPARTNER_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
|
|
|
<column name="C_BPARTNER_LOCATION_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
2007-03-22 06:56:13 +07:00
|
|
|
<foreign-key foreignTable="C_BPARTNER" name="CBPARTNER_TDRDETAIL" onDelete="cascade">
|
2006-12-29 06:10:54 +07:00
|
|
|
<reference local="C_BPARTNER_ID" foreign="C_BPARTNER_ID"/>
|
|
|
|
</foreign-key>
|
2007-03-22 06:56:13 +07:00
|
|
|
<foreign-key foreignTable="C_BPARTNER_LOCATION" name="CBPARTNERLOCATION_TDRDETAIL" onDelete="cascade">
|
2006-12-29 06:10:54 +07:00
|
|
|
<reference local="C_BPARTNER_LOCATION_ID" foreign="C_BPARTNER_LOCATION_ID"/>
|
|
|
|
</foreign-key>
|
2007-03-22 06:56:13 +07:00
|
|
|
<foreign-key foreignTable="M_DISTRIBUTIONLIST" name="MDISTRIBUTIONLIST_TDRDETAIL" onDelete="cascade">
|
2006-12-29 06:10:54 +07:00
|
|
|
<reference local="M_DISTRIBUTIONLIST_ID" foreign="M_DISTRIBUTIONLIST_ID"/>
|
|
|
|
</foreign-key>
|
2007-03-22 06:56:13 +07:00
|
|
|
<foreign-key foreignTable="M_DISTRIBUTIONLISTLINE" name="MDISTRIBUTIONLLINE_TDRDETAIL" onDelete="cascade">
|
2006-12-29 06:10:54 +07:00
|
|
|
<reference local="M_DISTRIBUTIONLISTLINE_ID" foreign="M_DISTRIBUTIONLISTLINE_ID"/>
|
|
|
|
</foreign-key>
|
2007-03-22 06:56:13 +07:00
|
|
|
<foreign-key foreignTable="M_DISTRIBUTIONRUN" name="MDISTRIBUTIONRUN_TDRDETAIL" onDelete="cascade">
|
2006-12-29 06:10:54 +07:00
|
|
|
<reference local="M_DISTRIBUTIONRUN_ID" foreign="M_DISTRIBUTIONRUN_ID"/>
|
|
|
|
</foreign-key>
|
2007-03-22 06:56:13 +07:00
|
|
|
<foreign-key foreignTable="M_DISTRIBUTIONRUNLINE" name="MDISTRIBUTIONRLINE_TDRDETAIL" onDelete="none">
|
2006-12-29 06:10:54 +07:00
|
|
|
<reference local="M_DISTRIBUTIONRUNLINE_ID" foreign="M_DISTRIBUTIONRUNLINE_ID"/>
|
|
|
|
</foreign-key>
|
2007-03-22 06:56:13 +07:00
|
|
|
<foreign-key foreignTable="M_PRODUCT" name="MPRODUCT_TDRDETAIL" onDelete="cascade">
|
2006-12-29 06:10:54 +07:00
|
|
|
<reference local="M_PRODUCT_ID" foreign="M_PRODUCT_ID"/>
|
|
|
|
</foreign-key>
|
|
|
|
<check>
|
|
|
|
<rule><![CDATA[IsActive in ('Y','N')]]></rule>
|
|
|
|
</check>
|
|
|
|
</table>
|
|
|
|
</database>
|