テーブル情報
システム名 http://www.as-link.com/  作成者 秦 松甫 
サブシステム名 ERPlus@iDempiere3.1_daily  作成日 2016/3/7 
スキーマ名 adempiere  更新日  
論理テーブル名   RDBMS  PostgreSQL 9.4.5 on x86_64-unknown-linux-gnu, compiled by gcc (GCC) 4.8.3 20140911 (Red Hat 4.8.3-9), 64-bit 9.4.5 
物理テーブル名 rv_m_transaction_sum     
備考


カラム情報
No 論理名 物理名 データ型 Not Null デフォルト 備考
1 ad_client_id numeric(10)  
2 ad_org_id numeric(10)  
3 movementtype character(2)  
4 m_warehouse_id numeric(10)  
5 m_locator_id numeric(10)  
6 m_product_id numeric(10)  
7 movementdate timestamp without time zone  
8 movementqty numeric  


ソース
ソース
 SELECT t.ad_client_id,
t.ad_org_id,
t.movementtype,
l.m_warehouse_id,
t.m_locator_id,
t.m_product_id,
t.movementdate,
sum(t.movementqty) AS movementqty
FROM m_transaction t,
m_locator l
WHERE (t.m_locator_id = l.m_locator_id)
GROUP BY t.ad_client_id, t.ad_org_id, t.movementtype, l.m_warehouse_id, t.m_locator_id, t.m_product_id, t.movementdate;


インデックス情報
No インデックス名 カラムリスト ユニーク 備考


外部キー情報
No 外部キー名 カラムリスト 参照先 参照先カラムリスト


外部キー情報(PK側)
No 外部キー名 カラムリスト 参照元 参照元カラムリスト


RDBMS固有の情報
No プロパティ名 プロパティ値
1 schemaname adempiere
2 viewname rv_m_transaction_sum
3 viewowner adempiere
4 definition SELECT t.ad_client_id,
t.ad_org_id,
t.movementtype,
l.m_warehouse_id,
t.m_locator_id,
t.m_product_id,
t.movementdate,
sum(t.movementqty) AS movementqty
FROM m_transaction t,
m_locator l
WHERE (t.m_locator_id = l.m_locator_id)
GROUP BY t.ad_client_id, t.ad_org_id, t.movementtype, l.m_warehouse_id, t.m_locator_id, t.m_product_id, t.movementdate;