| システム名 | 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_storage_per_product | ||
| 備考 |
|||
| No | 論理名 | 物理名 | データ型 | Not Null | デフォルト | 備考 |
|---|---|---|---|---|---|---|
| 1 | ad_client_id | numeric(10) | ||||
| 2 | ad_org_id | numeric(10) | ||||
| 3 | m_product_id | numeric(10) | ||||
| 4 | value | character varying(40) | ||||
| 5 | name | character varying(255) | ||||
| 6 | description | character varying(255) | ||||
| 7 | upc | character varying(30) | ||||
| 8 | sku | character varying(30) | ||||
| 9 | c_uom_id | numeric(10) | ||||
| 10 | m_product_category_id | numeric(10) | ||||
| 11 | classification | character varying(12) | ||||
| 12 | weight | numeric | ||||
| 13 | volume | numeric | ||||
| 14 | versionno | character varying(20) | ||||
| 15 | guaranteedays | numeric(10) | ||||
| 16 | guaranteedaysmin | numeric(10) | ||||
| 17 | sumqtyonhand | numeric |
| ソース |
|---|
SELECT strg.ad_client_id, |
| No | インデックス名 | カラムリスト | ユニーク | 備考 |
|---|
| No | 外部キー名 | カラムリスト | 参照先 | 参照先カラムリスト |
|---|
| No | 外部キー名 | カラムリスト | 参照元 | 参照元カラムリスト |
|---|
| No | プロパティ名 | プロパティ値 |
|---|---|---|
| 1 | schemaname | adempiere |
| 2 | viewname | rv_storage_per_product |
| 3 | viewowner | adempiere |
| 4 | definition | SELECT strg.ad_client_id, strg.ad_org_id, p.m_product_id, p.value, p.name, p.description, p.upc, p.sku, p.c_uom_id, p.m_product_category_id, p.classification, p.weight, p.volume, p.versionno, p.guaranteedays, p.guaranteedaysmin, strg.sumqtyonhand FROM ((m_product p JOIN ( SELECT rv_storage.m_product_id, rv_storage.m_locator_id, sum(rv_storage.qtyonhand) AS sumqtyonhand, rv_storage.ad_client_id, rv_storage.ad_org_id FROM rv_storage GROUP BY rv_storage.m_product_id, rv_storage.m_locator_id, rv_storage.ad_client_id, rv_storage.ad_org_id) strg ON ((p.m_product_id = strg.m_product_id))) JOIN m_locator l ON ((strg.m_locator_id = l.m_locator_id))); |