システム名 | 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 | |
物理テーブル名 | c_rfqresponse_v | ||
備考 |
No | 論理名 | 物理名 | データ型 | Not Null | デフォルト | 備考 |
---|---|---|---|---|---|---|
1 | c_rfqresponse_id | numeric(10) | ||||
2 | c_rfq_id | numeric(10) | ||||
3 | ad_client_id | numeric(10) | ||||
4 | ad_org_id | numeric(10) | ||||
5 | isactive | character(1) | ||||
6 | created | timestamp without time zone | ||||
7 | createdby | numeric(10) | ||||
8 | updated | timestamp without time zone | ||||
9 | updatedby | numeric(10) | ||||
10 | ad_language | character varying | ||||
11 | org_location_id | numeric(10) | ||||
12 | taxid | character varying(20) | ||||
13 | name | character varying(60) | ||||
14 | description | character varying(255) | ||||
15 | help | character varying(2000) | ||||
16 | c_currency_id | numeric(10) | ||||
17 | iso_code | character(3) | ||||
18 | dateresponse | timestamp without time zone | ||||
19 | dateworkstart | timestamp without time zone | ||||
20 | deliverydays | numeric(10) | ||||
21 | c_bpartner_id | numeric(10) | ||||
22 | bpname | character varying(120) | ||||
23 | bpname2 | character varying(60) | ||||
24 | c_bpartner_location_id | numeric(10) | ||||
25 | c_location_id | numeric(10) | ||||
26 | ad_user_id | numeric(10) | ||||
27 | title | character varying(40) | ||||
28 | phone | character varying(40) | ||||
29 | contactname | text |
ソース |
---|
SELECT rr.c_rfqresponse_id, |
No | インデックス名 | カラムリスト | ユニーク | 備考 |
---|
No | 外部キー名 | カラムリスト | 参照先 | 参照先カラムリスト |
---|
No | 外部キー名 | カラムリスト | 参照元 | 参照元カラムリスト |
---|
No | プロパティ名 | プロパティ値 |
---|---|---|
1 | schemaname | adempiere |
2 | viewname | c_rfqresponse_v |
3 | viewowner | adempiere |
4 | definition | SELECT rr.c_rfqresponse_id, rr.c_rfq_id, rr.ad_client_id, rr.ad_org_id, rr.isactive, rr.created, rr.createdby, rr.updated, rr.updatedby, 'en_US'::character varying AS ad_language, oi.c_location_id AS org_location_id, oi.taxid, r.name, r.description, r.help, r.c_currency_id, c.iso_code, r.dateresponse, r.dateworkstart, r.deliverydays, rr.c_bpartner_id, bp.name AS bpname, bp.name2 AS bpname2, rr.c_bpartner_location_id, bpl.c_location_id, rr.ad_user_id, bpc.title, bpc.phone, NULLIF((bpc.name)::text, (bp.name)::text) AS contactname FROM ((((((c_rfqresponse rr JOIN c_rfq r ON ((rr.c_rfq_id = r.c_rfq_id))) JOIN ad_orginfo oi ON ((rr.ad_org_id = oi.ad_org_id))) JOIN c_currency c ON ((r.c_currency_id = c.c_currency_id))) JOIN c_bpartner bp ON ((rr.c_bpartner_id = bp.c_bpartner_id))) JOIN c_bpartner_location bpl ON ((rr.c_bpartner_location_id = bpl.c_bpartner_location_id))) LEFT JOIN ad_user bpc ON ((rr.ad_user_id = bpc.ad_user_id))); |