| システム名 | 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_requisition | ||
| 備考 |
|||
| No | 論理名 | 物理名 | データ型 | Not Null | デフォルト | 備考 |
|---|---|---|---|---|---|---|
| 1 | m_requisition_id | numeric(10) | ||||
| 2 | ad_client_id | numeric(10) | ||||
| 3 | ad_org_id | numeric(10) | ||||
| 4 | isactive | character(1) | ||||
| 5 | created | timestamp without time zone | ||||
| 6 | createdby | numeric(10) | ||||
| 7 | updated | timestamp without time zone | ||||
| 8 | updatedby | numeric(10) | ||||
| 9 | documentno | character varying(30) | ||||
| 10 | description | character varying(255) | ||||
| 11 | help | character varying(2000) | ||||
| 12 | ad_user_id | numeric(10) | ||||
| 13 | m_pricelist_id | numeric(10) | ||||
| 14 | m_warehouse_id | numeric(10) | ||||
| 15 | isapproved | character(1) | ||||
| 16 | priorityrule | character(1) | ||||
| 17 | daterequired | timestamp without time zone | ||||
| 18 | totallines | numeric | ||||
| 19 | docaction | character(2) | ||||
| 20 | docstatus | character(2) | ||||
| 21 | processed | character(1) | ||||
| 22 | m_requisitionline_id | numeric(10) | ||||
| 23 | line | numeric(10) | ||||
| 24 | qty | numeric | ||||
| 25 | qtyordered | numeric | ||||
| 26 | m_product_id | numeric(10) | ||||
| 27 | linedescription | character varying(255) | ||||
| 28 | priceactual | numeric | ||||
| 29 | linenetamt | numeric | ||||
| 30 | c_charge_id | numeric(10) |
| ソース |
|---|
SELECT r.m_requisition_id, |
| No | インデックス名 | カラムリスト | ユニーク | 備考 |
|---|
| No | 外部キー名 | カラムリスト | 参照先 | 参照先カラムリスト |
|---|
| No | 外部キー名 | カラムリスト | 参照元 | 参照元カラムリスト |
|---|
| No | プロパティ名 | プロパティ値 |
|---|---|---|
| 1 | schemaname | adempiere |
| 2 | viewname | rv_m_requisition |
| 3 | viewowner | adempiere |
| 4 | definition | SELECT r.m_requisition_id, r.ad_client_id, r.ad_org_id, r.isactive, r.created, r.createdby, r.updated, r.updatedby, r.documentno, r.description, r.help, r.ad_user_id, r.m_pricelist_id, r.m_warehouse_id, r.isapproved, r.priorityrule, r.daterequired, r.totallines, r.docaction, r.docstatus, r.processed, l.m_requisitionline_id, l.line, l.qty, CASE WHEN (l.c_orderline_id IS NOT NULL) THEN l.qty ELSE (0)::numeric END AS qtyordered, l.m_product_id, l.description AS linedescription, l.priceactual, l.linenetamt, l.c_charge_id FROM (m_requisition r JOIN m_requisitionline l ON ((r.m_requisition_id = l.m_requisition_id))); |