2006-12-29 05:43:53 +07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE database SYSTEM "http://db.apache.org/torque/dtd/database">
|
|
|
|
<database name="default" defaultIdMethod="none">
|
|
|
|
<table name="C_RFQLINEQTY">
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="C_RFQLINEQTY_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:43:53 +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:43:53 +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"/>
|
|
|
|
<column name="C_RFQLINE_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
|
|
|
<column name="C_UOM_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
2007-02-01 23:50:31 +07:00
|
|
|
<column name="QTY" primaryKey="false" required="true" type="DECIMAL" default="0" autoIncrement="false"/>
|
|
|
|
<column name="MARGIN" primaryKey="false" required="false" type="DECIMAL" autoIncrement="false"/>
|
2006-12-29 05:43:53 +07:00
|
|
|
<column name="ISPURCHASEQTY" primaryKey="false" required="true" type="CHAR" size="1" default="N" autoIncrement="false"/>
|
2007-02-01 23:50:31 +07:00
|
|
|
<column name="BESTRESPONSEAMT" primaryKey="false" required="false" type="DECIMAL" default="0" autoIncrement="false"/>
|
2006-12-29 05:43:53 +07:00
|
|
|
<column name="ISOFFERQTY" primaryKey="false" required="true" type="CHAR" size="1" default="N" autoIncrement="false"/>
|
2007-02-01 23:50:31 +07:00
|
|
|
<column name="OFFERAMT" primaryKey="false" required="false" type="DECIMAL" default="0" autoIncrement="false"/>
|
|
|
|
<column name="BENCHMARKPRICE" primaryKey="false" required="true" type="DECIMAL" default="0" autoIncrement="false"/>
|
2006-12-29 05:43:53 +07:00
|
|
|
<column name="ISRFQQTY" primaryKey="false" required="true" type="CHAR" size="1" default="Y" autoIncrement="false"/>
|
2007-03-22 06:56:13 +07:00
|
|
|
<foreign-key foreignTable="C_RFQLINE" name="CRFQLINE_CRFQLINEQTY" onDelete="cascade">
|
2006-12-29 05:43:53 +07:00
|
|
|
<reference local="C_RFQLINE_ID" foreign="C_RFQLINE_ID"/>
|
|
|
|
</foreign-key>
|
2007-03-22 06:56:13 +07:00
|
|
|
<foreign-key foreignTable="C_UOM" name="CUOM_CRFQLINEQTY" onDelete="none">
|
2006-12-29 05:43:53 +07:00
|
|
|
<reference local="C_UOM_ID" foreign="C_UOM_ID"/>
|
|
|
|
</foreign-key>
|
|
|
|
<check>
|
|
|
|
<rule><![CDATA[IsActive in ('Y','N')]]></rule>
|
|
|
|
</check>
|
|
|
|
<check>
|
|
|
|
<rule><![CDATA[IsPurchaseQty in ('Y','N')]]></rule>
|
|
|
|
</check>
|
|
|
|
<check>
|
|
|
|
<rule><![CDATA[IsOfferQty in ('Y','N')]]></rule>
|
|
|
|
</check>
|
|
|
|
</table>
|
|
|
|
</database>
|