システム名 | 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_pp_order_bomline | ||
備考 |
No | 論理名 | 物理名 | データ型 | Not Null | デフォルト | 備考 |
---|---|---|---|---|---|---|
1 | ad_client_id | numeric(10) | ||||
2 | ad_org_id | numeric(10) | ||||
3 | createdby | numeric(10) | ||||
4 | updatedby | numeric(10) | ||||
5 | updated | timestamp without time zone | ||||
6 | created | timestamp without time zone | ||||
7 | isactive | character(1) | ||||
8 | pp_order_bom_id | numeric(10) | ||||
9 | pp_order_bomline_id | numeric(10) | ||||
10 | pp_order_id | numeric(10) | ||||
11 | iscritical | character(1) | ||||
12 | componenttype | character(2) | ||||
13 | m_product_id | numeric(10) | ||||
14 | c_uom_id | numeric(10) | ||||
15 | qtyrequiered | numeric | ||||
16 | qtyreserved | numeric | ||||
17 | qtyavailable | numeric | ||||
18 | qtyonhand | numeric | ||||
19 | m_warehouse_id | numeric(10) | ||||
20 | qtybom | numeric | ||||
21 | isqtypercentage | character(1) | ||||
22 | qtybatch | numeric | ||||
23 | qtybatchsize | numeric |
ソース |
---|
SELECT obl.ad_client_id, |
No | インデックス名 | カラムリスト | ユニーク | 備考 |
---|
No | 外部キー名 | カラムリスト | 参照先 | 参照先カラムリスト |
---|
No | 外部キー名 | カラムリスト | 参照元 | 参照元カラムリスト |
---|
No | プロパティ名 | プロパティ値 |
---|---|---|
1 | schemaname | adempiere |
2 | viewname | rv_pp_order_bomline |
3 | viewowner | adempiere |
4 | definition | SELECT obl.ad_client_id, obl.ad_org_id, obl.createdby, obl.updatedby, obl.updated, obl.created, obl.isactive, obl.pp_order_bom_id, obl.pp_order_bomline_id, obl.pp_order_id, obl.iscritical, obl.componenttype, obl.m_product_id, obl.c_uom_id, round(obl.qtyrequiered, 4) AS qtyrequiered, round(bomqtyreserved(obl.m_product_id, obl.m_warehouse_id, (0)::numeric), 4) AS qtyreserved, round(bomqtyavailable(obl.m_product_id, obl.m_warehouse_id, (0)::numeric), 4) AS qtyavailable, round(bomqtyonhand(obl.m_product_id, obl.m_warehouse_id, (0)::numeric), 4) AS qtyonhand, obl.m_warehouse_id, round(obl.qtybom, 4) AS qtybom, obl.isqtypercentage, round(obl.qtybatch, 4) AS qtybatch, CASE WHEN (o.qtybatchs = (0)::numeric) THEN (1)::numeric ELSE round((obl.qtyrequiered / o.qtybatchs), 4) END AS qtybatchsize FROM (pp_order_bomline obl JOIN pp_order o ON ((o.pp_order_id = obl.pp_order_id))); |