oracle-erp Oracleerp 發(fā)展前景

在Oracle ERP中導數(shù)據(jù)(BOM清單)

方法:把數(shù)據(jù)導入BOM清單的方法是 把數(shù)據(jù)導入接口表中 讓其自動運行既可 上傳文件的時候 要注意使 用ASCII字符模式 自己建立一中轉(zhuǎn)表 drop table cux_bill_temp;create table cux_bill_temp(bill_sequence_id number assembly_item_id number anization_id number assembly_item varchar ( ) BOMponent_sequence_id number ponent_quantity number 組件數(shù)量item_num number 項目序列operation_seq_num number 工序序列ponent_item_id number ponent_item varchar ( ) 組件PLANNING_FACTOR number 計劃%d ponent_yield_factor number 產(chǎn)出率d wip_supply_type number 供應(yīng)類型supply_type varchar ( ) supply_subinventory varchar ( ) 供應(yīng)子庫存OPTIONAL number 可選的OPTIONAL_disp varchar ( ) 可選的MUTUALLY_EXCLUSIVE_OPTIONS number 互不相容MUTUALLY_EXCLUSIVE_O_disp varchar ( ) 互不相容attribute varchar ( ) 排序號row_num number); 刪除中轉(zhuǎn)表中的數(shù)據(jù) delete cux_bill_temp; 把要導入的數(shù)據(jù)放在擴展名為* csv的文件中 且要相對應(yīng)于中轉(zhuǎn)表的字段 本例中的文件名為bill csv 另外的腳本文件為bill ctl 其內(nèi)容如下:options (skip= ) //跳過第一行 一般第一行為其字段說明LOAD DATAINFILE bill csv //bill csv為數(shù)據(jù)文件APPENDINTO TABLE cux_bill_tempFIELDS TERMINATED BY OPTIONALLY ENCLOSED BY (與中轉(zhuǎn)表相對應(yīng)的字段列表)登錄進入ORACLE數(shù)據(jù)庫服務(wù)器 利用命令:(sqlload 用戶名/密碼@數(shù)據(jù)庫名)載入文件bill csv的數(shù)據(jù)入中轉(zhuǎn)表 查看中轉(zhuǎn)表中的記錄數(shù)(以備導入數(shù)據(jù)后進行對比) select count(*) from cux_bill_temp; 去除導入時在表bill csv中的關(guān)鍵字段的空格字符 以免影響導入 update cux_bill_tempset ASSEMBLY_ITEM=replace(ASSEMBLY_ITEM ) PONENT_ITEM=replace(PONENT_ITEM ); 查看是否有重復的選項(既是否重復了Item) select assembly_item ponent_item min(row_num) count(*)from cux_bill_tempgroup by assembly_item ponent_itemhaving count(*) ;如果有重復的Item 則要刪除(或是重新合并)delete cux_bill_tempwhere row_num in (select min(row_num) from cux_bill_tempgroup by assembly_item ponent_itemhaving count(*) );以下步驟為選做(如有重復才做 沒有重復不做 ) 再重新建立一個臨時表(對于有重復數(shù)據(jù) 則只取一條數(shù)據(jù) 現(xiàn)取row_num最小的一條) drop table cux_bill_a;create table cux_bill_aasselect assembly_item ponent_item ponent_quantity PLANNING_FACTOR ponent_yield_factor supply_type supply_subinventory OPTIONAL_disp MUTUALLY_EXCLUSIVE_O_disp attribute min(row_num) row_numfrom cux_bill_tempgroup by assembly_item ponent_item ponent_quantity PLANNING_FACTOR ponent_yield_factor supply_type supply_subinventory OPTIONAL_disp MUTUALLY_EXCLUSIVE_O_disp attribute ; 刪除cux_bill_temp表 delete cux_bill_temp; 再重cux_bill_a表中把數(shù)據(jù)導入給cux_bill_temp表 完成把重復數(shù)據(jù)剔除的功能 insert into cux_bill_temp(assembly_item ponent_item ponent_quantity PLANNING_FACTOR ponent_yield_factor supply_type supply_subinventory OPTIONAL_disp MUTUALLY_EXCLUSIVE_O_disp attribute row_num)select assembly_item ponent_item ponent_quantity PLANNING_FACTOR ponent_yield_factor supply_type supply_subinventory OPTIONAL_disp MUTUALLY_EXCLUSIVE_O_disp attribute row_numfrom cux_bill_a; 刪除表cux_bill_a drop table cux_bill_a; 再檢查一次表 是否有重復的數(shù)據(jù) select assembly_item ponent_item min(row_num) count(*)from cux_bill_tempgroup by assembly_item ponent_itemhaving count(*) ; 查看在mtl_system_items表中 既是在庫存表中 有沒有不存在的Item select distinct itemfrom (select distinct assembly_item itemfrom cux_bill_temp bwhere not exists (select null from mtl_system_items where segment =b assembly_item and anization_id= )unionselect distinct ponent_item itemfrom cux_bill_temp bwhere not exists (select null from mtl_system_items where segment =ponent_item and anization_id= ))order by item; 如果在mtl_system_items中 有不存在的物品ITEM時 要把其刪除(或是把這些物品Item導入到系統(tǒng)中) 刪除:delete cux_bill_temp bwhere not exists (select null from mtl_system_items where segment =ponent_item and anization_id= );delete cux_bill_temp awhere not exists (select null from mtl_system_items where segment =a assembly_item and anization_id= ); 對沒有物品Item的進行處理 把其放入另一臨時表cux_item_temp中(以備查詢及導入mtl_system_items表中) delete cux_item_temp;insert into cux_item_temp(segment description)select distinct item itemfrom (select distinct assembly_item itemfrom cux_bill_temp bwhere not exists (select null from mtl_system_items where segment =b assembly_item and anization_id= )unionselect distinct ponent_item itemfrom cux_bill_temp bwhere not exists (select null from mtl_system_items where segment =ponent_item and anization_id= ));將找到?jīng)]有ITEM的BOM數(shù)據(jù)放到另一個表中 以備下次ITEM導入后在導BOMcreate table cux_bom_temp select distinct itemfrom (select distinct assembly_item itemfrom cux_bill_temp bwhere not exists (select null from mtl_system_items where segment =b assembly_item and anization_id= )unionselect distinct ponent_item itemfrom cux_bill_temp bwhere not exists (select null from mtl_system_items where segment =ponent_item and anization_id= )) 從表mtl_system_items中把物品的編碼ID加入中轉(zhuǎn)表cux_bill_temp表(從項目主組織)中 update cux_bill_temp bset assembly_item_id=(select inventory_item_id from mtl_system_itemswhere segmen lishixinzhi/Article/program/Oracle/201311/18605

創(chuàng)新互聯(lián)是專業(yè)的富順網(wǎng)站建設(shè)公司,富順接單;提供網(wǎng)站建設(shè)、網(wǎng)站制作,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行富順網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!

什么是ORACLE ERP?

產(chǎn)品特色

Oracle

E-Business

Suite是第一套也是唯一搭配單一

全球資料庫作業(yè)的應(yīng)用軟體,連結(jié)前後端的整個業(yè)務(wù)

處理流程并使其自動化,為您提供完善、統(tǒng)合且關(guān)鍵

資料的基礎(chǔ),例如各業(yè)務(wù)、產(chǎn)品和地區(qū)的銷售業(yè)績、

庫存量與營收。而且,不必再等待資料通過獨立的資

料匯聚與分析系統(tǒng)。企業(yè)高階主管可取得日常商業(yè)情

報,了解公司過去、現(xiàn)在與未來的經(jīng)營績效,進而每

天都可以提升獲利能力,而不必等待1個月或1季的

漫長時間了。

Manufacturing制造

?

Oracle

Engineering

BOM(工程資料管理系統(tǒng))

?

Oracle

Work

in

Process(生管管理系統(tǒng))

?

Oracle

Cost

Management(成本管理系統(tǒng))

?

Oracle

Planning

Product(物料需求計畫模組)

?

Oracle

Quality(品質(zhì)管理系統(tǒng))

Distribution配銷

?

Oracle

Inventory(庫存管理系統(tǒng))

?

Oracle

Purchasing

Management(采購管理系統(tǒng))

?

Oracle

Order

Management(訂單管理系統(tǒng))

Finance財務(wù)

?

Oracle

General

Ledger(總帳管理系統(tǒng))

?

Oracle

Payables(應(yīng)付帳款管理系統(tǒng))

?

Oracle

Receivables(應(yīng)收帳款管理系統(tǒng))

?

Oracle

Fixed

Assets(固定資產(chǎn)管理系統(tǒng))

?

Notes

Management(票據(jù)管理:本地開發(fā)模組)

?

GUI.VAT(發(fā)票及進銷項管理:本地開發(fā)模組)

2-2事務(wù)流程面

I.

全球作業(yè)式

以Unicode為標準資料儲存格式,能支多語言操作模式,依不同國家或地區(qū)采用不同之幣別、會計制度、稅法、作業(yè)習慣作業(yè)應(yīng)用支援。

II.

內(nèi)建工作流程

內(nèi)建WorkFlow技術(shù)建置,達到流程能自動化而又具備彈性之目的。透過WorkFlow

Builder企業(yè)能隨時修改流程而不需修改程式,使用者亦能透過WorkFlow

Monistor追蹤度。例如:采購核準流程、傳票線上簽核。

III.

警示系統(tǒng)

系統(tǒng)內(nèi)建異常管理機制,可針對常見狀況於系統(tǒng)內(nèi)設(shè)定條件與處理方式,當條件成立時系統(tǒng)自動執(zhí)行預設(shè)動作,如此可更加增進使用者效率。

IV.

整合性決策支援系統(tǒng)

讓高階主管可檢視部門、跨部門之經(jīng)營績效指標,并從多維解度分析企業(yè)營運模式。

V.

未來擴充性佳

企業(yè)在第一階段導入ERP系統(tǒng)後,可因產(chǎn)生之需求采用充分整合前臺作業(yè)系統(tǒng)或供應(yīng)鏈系統(tǒng),以求透過更有效率的營運模式超越競爭對手。例如:客戶關(guān)系管理、資料倉儲、作業(yè)制成本管理、電子商務(wù)、供應(yīng)鏈最佳化。

2-3應(yīng)用技術(shù)面

I.

彈性欄位設(shè)計(FlexField)

Oracle應(yīng)用系統(tǒng)提供彈性欄位設(shè)計,讓使用者對於標準系所提供之欄位不足之處加以擴充,不需要修改程式本體,以降低維護修改的復雜度,并於系統(tǒng)升級時將性欄位一并保留升級。范例:彈性會計科目設(shè)計與組織調(diào)整、彈性客戶資料欄位。

II.

完整的Web-Enabled應(yīng)用系統(tǒng)

使用者僅需藉由瀏覽器,即可經(jīng)由安全認證藉由LAN或Internet,存取個人授權(quán)內(nèi)資料,而IT人員采中央控管資料庫及應(yīng)用程式伺服器,大幅降低系統(tǒng)維護的困難度。

III.

關(guān)聯(lián)式資料庫系統(tǒng)與彈性報表

Oracle應(yīng)用系統(tǒng)采用業(yè)界公認高穩(wěn)定性、高可靠性資料庫資料,并提供一致性與延展性的服務(wù),客戶也可透過Oracle所提供使用簡易之分析工具做出自訂報表。

IV.

多媒體支援與圖形使用者介面

Oracle提供使用者查之自訂畫面與常用功能,并整合Excel等Office工具,讓使用者可透過友善的使用者介面存取系統(tǒng)。

V.

提供標準開放之API與其他系統(tǒng)作連結(jié)

Oracle於系統(tǒng)各模組之間提供數(shù)十種標標之API,讓使用者可以依照標準格式與其他應(yīng)用系統(tǒng)作互動式之資訊交換

Oracle的ERP是仁科么

是。

_eoplesoft(仁科),1987年成立的一家美國公司,曾被譽為世界第二大ERP供應(yīng)商,年營收最高曾達28億美金。2004年底以103億美金的身價“下嫁”O(jiān)RACLE。

分享名稱:oracle-erp Oracleerp 發(fā)展前景
標題鏈接:http://muchs.cn/article34/doesepe.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供Google、定制開發(fā)、移動網(wǎng)站建設(shè)、網(wǎng)站設(shè)計公司、做網(wǎng)站、網(wǎng)站導航

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

營銷型網(wǎng)站建設(shè)