oracleerp操作 oracle 操作

oracleerp系統(tǒng)總賬打不開

日期不正確。oracleerp系統(tǒng)總賬,在門戶的設(shè)置菜單中選擇啟用,總賬系統(tǒng)啟用日期必須是月初,日期不正確會導(dǎo)致打不開,用戶只需要重新操作一遍將日期選對就可以了。oracleerp指組織用于管理日常業(yè)務(wù)活動的一套軟件。

創(chuàng)新互聯(lián)公司服務(wù)項目包括歙縣網(wǎng)站建設(shè)、歙縣網(wǎng)站制作、歙縣網(wǎng)頁制作以及歙縣網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,歙縣網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到歙縣省份的部分城市,未來相信會繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!

oracleerp中通過怎樣的操作可以在日記賬明細(xì)中查看到采

oracleerp中通過查詢系統(tǒng)視圖v$sql來查詢歷史操作。根據(jù)查詢相關(guān)資料信息查詢語句,select*fromv$sql。查詢結(jié)果,其中紅框內(nèi)的部分,就是操作記錄。

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

方法:把數(shù)據(jù)導(dǎo)入BOM清單的方法是 把數(shù)據(jù)導(dǎo)入接口表中 讓其自動運行既可 上傳文件的時候 要注意使 用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; 把要導(dǎo)入的數(shù)據(jù)放在擴(kuò)展名為* 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)的字段列表)登錄進(jìn)入ORACLE數(shù)據(jù)庫服務(wù)器 利用命令:(sqlload 用戶名/密碼@數(shù)據(jù)庫名)載入文件bill csv的數(shù)據(jù)入中轉(zhuǎn)表 查看中轉(zhuǎn)表中的記錄數(shù)(以備導(dǎo)入數(shù)據(jù)后進(jìn)行對比) select count(*) from cux_bill_temp; 去除導(dǎo)入時在表bill csv中的關(guān)鍵字段的空格字符 以免影響導(dǎo)入 update cux_bill_tempset ASSEMBLY_ITEM=replace(ASSEMBLY_ITEM ) PONENT_ITEM=replace(PONENT_ITEM ); 查看是否有重復(fù)的選項(既是否重復(fù)了Item) select assembly_item ponent_item min(row_num) count(*)from cux_bill_tempgroup by assembly_item ponent_itemhaving count(*) ;如果有重復(fù)的Item 則要刪除(或是重新合并)delete cux_bill_tempwhere row_num in (select min(row_num) from cux_bill_tempgroup by assembly_item ponent_itemhaving count(*) );以下步驟為選做(如有重復(fù)才做 沒有重復(fù)不做 ) 再重新建立一個臨時表(對于有重復(fù)數(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ù)導(dǎo)入給cux_bill_temp表 完成把重復(fù)數(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; 再檢查一次表 是否有重復(fù)的數(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導(dǎo)入到系統(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的進(jìn)行處理 把其放入另一臨時表cux_item_temp中(以備查詢及導(dǎo)入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導(dǎo)入后在導(dǎo)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

分享題目:oracleerp操作 oracle 操作
文章鏈接:http://muchs.cn/article32/doecspc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、品牌網(wǎng)站建設(shè)、移動網(wǎng)站建設(shè)關(guān)鍵詞優(yōu)化、自適應(yīng)網(wǎng)站、外貿(mào)建站

廣告

聲明:本網(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)

搜索引擎優(yōu)化