63 lines
3.9 KiB
XML
63 lines
3.9 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE database SYSTEM "http://db.apache.org/torque/dtd/database">
|
|
<database name="default" defaultIdMethod="none">
|
|
<table name="C_BPARTNER_LOCATION">
|
|
<column name="C_BPARTNER_LOCATION_ID" primaryKey="true" required="true" type="ID" autoIncrement="false"/>
|
|
<column name="AD_CLIENT_ID" primaryKey="false" required="true" type="ID" autoIncrement="false"/>
|
|
<column name="AD_ORG_ID" primaryKey="false" required="true" type="ID" autoIncrement="false"/>
|
|
<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"/>
|
|
<column name="CREATEDBY" primaryKey="false" required="true" type="ID" autoIncrement="false"/>
|
|
<column name="UPDATED" primaryKey="false" required="true" type="TIMESTAMP" size="7" default="CURRENT_TIMESTAMP" autoIncrement="false"/>
|
|
<column name="UPDATEDBY" primaryKey="false" required="true" type="ID" autoIncrement="false"/>
|
|
<column name="NAME" primaryKey="false" required="true" type="VARCHAR" size="60" autoIncrement="false"/>
|
|
<column name="ISBILLTO" primaryKey="false" required="true" type="CHAR" size="1" default="Y" autoIncrement="false"/>
|
|
<column name="ISSHIPTO" primaryKey="false" required="true" type="CHAR" size="1" default="Y" autoIncrement="false"/>
|
|
<column name="ISPAYFROM" primaryKey="false" required="true" type="CHAR" size="1" default="Y" autoIncrement="false"/>
|
|
<column name="ISREMITTO" primaryKey="false" required="true" type="CHAR" size="1" default="Y" autoIncrement="false"/>
|
|
<column name="PHONE" primaryKey="false" required="false" type="VARCHAR" size="40" autoIncrement="false"/>
|
|
<column name="PHONE2" primaryKey="false" required="false" type="VARCHAR" size="40" autoIncrement="false"/>
|
|
<column name="FAX" primaryKey="false" required="false" type="VARCHAR" size="40" autoIncrement="false"/>
|
|
<column name="ISDN" primaryKey="false" required="false" type="VARCHAR" size="40" autoIncrement="false"/>
|
|
<column name="C_SALESREGION_ID" primaryKey="false" required="false" type="ID" autoIncrement="false"/>
|
|
<column name="C_BPARTNER_ID" primaryKey="false" required="true" type="ID" autoIncrement="false"/>
|
|
<column name="C_LOCATION_ID" primaryKey="false" required="false" type="ID" autoIncrement="false"/>
|
|
<foreign-key foreignTable="AD_CLIENT" name="C_BUSPARTNER_LOCATIONCLIENT">
|
|
<reference local="AD_CLIENT_ID" foreign="AD_CLIENT_ID"/>
|
|
</foreign-key>
|
|
<foreign-key foreignTable="AD_ORG" name="C_BUSPARTNER_LOCATIONORG">
|
|
<reference local="AD_ORG_ID" foreign="AD_ORG_ID"/>
|
|
</foreign-key>
|
|
<foreign-key foreignTable="C_BPARTNER" name="CBPARTNER_CBPLOCATION">
|
|
<reference local="C_BPARTNER_ID" foreign="C_BPARTNER_ID"/>
|
|
</foreign-key>
|
|
<foreign-key foreignTable="C_LOCATION" name="CLOCATION_CBPLOCATION">
|
|
<reference local="C_LOCATION_ID" foreign="C_LOCATION_ID"/>
|
|
</foreign-key>
|
|
<foreign-key foreignTable="C_SALESREGION" name="CSALESREGION_BPARTNERLOCATION">
|
|
<reference local="C_SALESREGION_ID" foreign="C_SALESREGION_ID"/>
|
|
</foreign-key>
|
|
<index name="C_BPLOCATION_BPARTNER">
|
|
<index-column name="C_BPARTNER_ID"/>
|
|
</index>
|
|
<index name="C_BPLOCATION_UPDATED">
|
|
<index-column name="UPDATED"/>
|
|
</index>
|
|
<check>
|
|
<rule><![CDATA[IsActive in ('Y','N')]]></rule>
|
|
</check>
|
|
<check>
|
|
<rule><![CDATA[IsBillTo in ('Y','N')]]></rule>
|
|
</check>
|
|
<check>
|
|
<rule><![CDATA[IsShipTo in ('Y','N')]]></rule>
|
|
</check>
|
|
<check>
|
|
<rule><![CDATA[IsPayFrom in ('Y','N')]]></rule>
|
|
</check>
|
|
<check>
|
|
<rule><![CDATA[IsRemitTo in ('Y','N')]]></rule>
|
|
</check>
|
|
</table>
|
|
</database>
|