ORACLE EBS常用標準表結構

2021-08-20 16:58:14 字數 2531 閱讀 1044

begin

inv_object_genealogy.getsource(mmt.organization_id,

mmt.transaction_source_type_id,

mmt.transaction_source_id);

end;

<2>.物料搬運單行檢視:

mtl_txn_request_lines_v
行上的銷售訂單表:

mtl_sales_orders
使用sales_order_id關聯行檢視的txn_source_id 

<3>.庫存現有量介面按照lpn查詢時的sql裡面包含

lpn.lpn_context in (1, 9, 11)
<4>.事務處理**是銷售訂單:

mmt.trx_source_line_id = oe_order_lines_all.line_id

獲取期間的下個期間:gl_period_statuses_pkg.get_next_period

prh.requisition_header_id = prl.requisition_header_id
關聯採購申請人

prh.preparer_id = papf.person_id

and trunc(sysdate ) between papf.effective_start_date and

papf.effective_end_date

關聯採購申請行型別

plt.line_type_id = prl.line_type_id
關聯採購訂單

rsl.po_line_id = pla.po_line_id

rsl.po_header_id = pha.po_header_id

select plc.lookup_code,

plc.lookup_type,

plc.displayed_field,

plc.description,

plc.enabled_flag

from po_lookup_codes plc

where plc.lookup_type like

'rcv transaction type'

select per.full_name,

per.person_id employee_id,

per.employee_number employee_num,

pb.name

from per_workforce_current_x per, per_business_groups_perf pb

where (per.business_group_id = pb.business_group_id and

per.assignment_type in

( 'e',

decode(nvl (fnd_profile.value('hr_treat_cwk_as_emp'), 'n'),

'y',

'c',

'e')))

--and per.person_id = 1032

order

by per.full_name;

po_line_locations_all.promised_date

fad.document_id = fd.document_id
dct.category_id = fd.category_id

and dct.language = userenv('lang')

fd.datatype_id = dat.datatype_id

and dat.language = userenv('lang')

fd.media_id = fst.media_id

wdj.organization_id = wo.organization_id

and wdj.wip_entity_id = wo.wip_entity_id

bd.department_id = wo.department_id

qp.plan_id = qpc.plan_id
qpc.char_id = qc.char_id
qc.char_type_code = fl.lookup_code

and fl.lookup_type = 'element_type'

供應商常用標準表

商常用標準表 商頭表 ap suppliers,商頭資訊如 商名稱 商編碼 稅號等,對應檢視 po vendors 商地點附加資訊表 pos supp prof ext b,商地點附加資訊 c ext attr1 15,d ext attr1 15 商聯絡人表 ap supplier contact...

JDE 系統表(標準表)

完整表查詢 jde tables 1帳戶餘額表 f0902 19更改申請主檔案表 f5301 37到期日規則 表 f00142 2公司常量表 f0010 20租戶 租賃主檔案表 f1501 38到期日規則日期範圍 表 f00143 3日期財務格式表 f0008 21銷售單表頭檔案表 f4201 39...

索引表與標準表的差異

索引表與標準表的差異 一 索引表中的rowid列存放的是 邏輯 實體地址。而標準表的rowid偽列中儲存的則是真實的實體地址,這是兩者之間最本質的區別。另外其他幾個方面的差異都是因為有這個差異存在而存在。或者說,它是索引表優勢的根源。二 索引表對記錄的訪問是基於主鍵的,也就是說,根據邏輯的rowid...