システム名 | 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_receipt_issue | ||
備考 |
No | 論理名 | 物理名 | データ型 | Not Null | デフォルト | 備考 |
---|---|---|---|---|---|---|
1 | pp_order_bomline_id | numeric(10) | ||||
2 | iscritical | character(1) | ||||
3 | value | character varying(40) | ||||
4 | m_product_id | numeric(10) | ||||
5 | productname | character varying(255) | ||||
6 | m_attributesetinstance_id | numeric(10) | ||||
7 | instancename | character varying(255) | ||||
8 | c_uom_id | numeric(10) | ||||
9 | uomname | character varying(60) | ||||
10 | qtyrequiered | numeric | ||||
11 | qtyreserved_order | numeric | ||||
12 | qtyonhand | numeric | ||||
13 | qtyreserved_storage | numeric | ||||
14 | qtyavailable | numeric | ||||
15 | m_locator_id | numeric(10) | ||||
16 | m_warehouse_id | numeric(10) | ||||
17 | warehousename | character varying(60) | ||||
18 | qtybom | numeric | ||||
19 | isqtypercentage | character(1) | ||||
20 | qtybatch | numeric | ||||
21 | componenttype | character(2) | ||||
22 | qtyopen | numeric | ||||
23 | pp_order_id | numeric(10) |
ソース |
---|
SELECT obl.pp_order_bomline_id, |
No | インデックス名 | カラムリスト | ユニーク | 備考 |
---|
No | 外部キー名 | カラムリスト | 参照先 | 参照先カラムリスト |
---|
No | 外部キー名 | カラムリスト | 参照元 | 参照元カラムリスト |
---|
No | プロパティ名 | プロパティ値 |
---|---|---|
1 | schemaname | adempiere |
2 | viewname | rv_pp_order_receipt_issue |
3 | viewowner | adempiere |
4 | definition | SELECT obl.pp_order_bomline_id, obl.iscritical, p.value, obl.m_product_id, mos.name AS productname, mos.m_attributesetinstance_id, asi.description AS instancename, mos.c_uom_id, u.name AS uomname, obl.qtyrequiered, obl.qtyreserved AS qtyreserved_order, mos.qtyonhand, mos.qtyreserved AS qtyreserved_storage, mos.qtyavailable, mos.m_locator_id, mos.m_warehouse_id, w.name AS warehousename, mos.qtybom, mos.isqtypercentage, mos.qtybatch, obl.componenttype, (mos.qtyrequiered - obl.qtydelivered) AS qtyopen, obl.pp_order_id FROM (((((rv_pp_order_storage mos JOIN pp_order_bomline obl ON ((mos.pp_order_bomline_id = obl.pp_order_bomline_id))) JOIN m_attributesetinstance asi ON ((mos.m_attributesetinstance_id = asi.m_attributesetinstance_id))) JOIN c_uom u ON ((mos.c_uom_id = u.c_uom_id))) JOIN m_product p ON ((mos.m_product_id = p.m_product_id))) JOIN m_warehouse w ON ((mos.m_warehouse_id = w.m_warehouse_id))); |