システム名 | 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 | |
物理テーブル名 | m_costmovement_v | ||
備考 |
No | 論理名 | 物理名 | データ型 | Not Null | デフォルト | 備考 |
---|---|---|---|---|---|---|
1 | ad_client_id | numeric(10) | ||||
2 | ad_org_id | numeric(10) | ||||
3 | c_acctschema_id | numeric(10) | ||||
4 | m_costhistory_id | numeric(10) | ||||
5 | m_costtype_id | numeric(10) | ||||
6 | m_costelement_id | numeric(10) | ||||
7 | m_attributesetinstance_id | numeric(10) | ||||
8 | m_product_id | numeric(10) | ||||
9 | oldqty | numeric | ||||
10 | newqty | numeric | ||||
11 | oldcostprice | numeric | ||||
12 | newcostprice | numeric | ||||
13 | oldcqty | numeric | ||||
14 | newcqty | numeric | ||||
15 | oldcamt | numeric | ||||
16 | newcamt | numeric | ||||
17 | qty | numeric | ||||
18 | amt | numeric | ||||
19 | deltaqty | numeric | ||||
20 | deltaamt | numeric | ||||
21 | c_orderline_id | numeric(10) | ||||
22 | m_inoutline_id | numeric(10) | ||||
23 | c_invoiceline_id | numeric(10) | ||||
24 | m_movementline_id | numeric(10) | ||||
25 | m_inventoryline_id | numeric(10) | ||||
26 | m_productionline_id | numeric(10) | ||||
27 | c_projectissue_id | numeric(10) | ||||
28 | m_matchinv_id | numeric(10) | ||||
29 | m_costdetail_id | numeric(10) | ||||
30 | description | character varying(255) | ||||
31 | created | timestamp without time zone | ||||
32 | createdby | numeric(10) | ||||
33 | updated | timestamp without time zone | ||||
34 | updatedby | numeric(10) | ||||
35 | isactive | character(1) |
ソース |
---|
SELECT a.ad_client_id, |
No | インデックス名 | カラムリスト | ユニーク | 備考 |
---|
No | 外部キー名 | カラムリスト | 参照先 | 参照先カラムリスト |
---|
No | 外部キー名 | カラムリスト | 参照元 | 参照元カラムリスト |
---|
No | プロパティ名 | プロパティ値 |
---|---|---|
1 | schemaname | adempiere |
2 | viewname | m_costmovement_v |
3 | viewowner | adempiere |
4 | definition | SELECT a.ad_client_id, a.ad_org_id, b.c_acctschema_id, a.m_costhistory_id, a.m_costtype_id, a.m_costelement_id, a.m_attributesetinstance_id, b.m_product_id, a.oldqty, a.newqty, a.oldcostprice, a.newcostprice, a.oldcqty, a.newcqty, a.oldcamt, a.newcamt, b.qty, b.amt, b.deltaqty, b.deltaamt, b.c_orderline_id, b.m_inoutline_id, b.c_invoiceline_id, b.m_movementline_id, b.m_inventoryline_id, b.m_productionline_id, b.c_projectissue_id, b.m_matchinv_id, a.m_costdetail_id, b.description, a.created, a.createdby, a.updated, a.updatedby, a.isactive FROM (m_costhistory a JOIN m_costdetail b ON ((a.m_costdetail_id = b.m_costdetail_id))) ORDER BY a.m_costhistory_id; |