Oracle EBS附件下載功能,oracleebs附件功能

來源:互聯網
上載者:User

Oracle EBS附件下載功能,oracleebs附件功能
附件下載功能
使用 fnd_lobs 表結合 fnd_gfm 包下載檔案,可以下載已經存在fnd_lobs表裡的檔案,也可以手動寫些內容進fnd_lobs表,然後在瀏覽器裡顯示:
--1.下載fnd_lobs表裡已經存在的檔案:DECLARE  v_file_id NUMBER;  url       VARCHAR2(500 );BEGIN  --Get the file_id of the file which you want to download in fnd_lobs  v_file_id := xxxxxx;  --Get The Download URL  url := fnd_gfm.construct_download_url(fnd_web_config.gfm_agent,                                        v_file_id,                                        TRUE);  fnd_utilities.open_url( url);END;--2.手動寫內容進fnd_lobs表,並在瀏覽器中顯示: DECLARE db_file NUMBER;mime_type VARCHAR2( 255) := 'text/plain' ;out_string VARCHAR2( 32767) := 'Just some plain text that is stored' ;web_server_prefix VARCHAR2( 500);url VARCHAR2 (500);BEGIN  db_file := fnd_gfm.file_create(content_type => mime_type,                                 program_name => 'export');  fnd_gfm.file_write_line(db_file, out_string);  db_file := fnd_gfm.file_close(db_file);  url     := fnd_gfm.construct_download_url(fnd_web_config.gfm_agent,                                            db_file,                                            TRUE);  fnd_utilities.open_url( url);END;
oracle EBS 下載

是oracle EBS嗎?
edelivery.oracle.com/EPD/Search/handle_go
進去之後需要選擇安裝在何種作業系統。
不過比較大啊。。。
回答補充提問:
據我所知,你要是想實現什麼功能就需要安裝什麼組件。每一塊應該是 name+disk_number 的全部。
軟體就是比較大啊,一般都是安裝在小型機等上面啊!



 
Oracle EBS安裝包檔案結構,助

預設 情況 安裝檔案 是將一個 檔案夾中的多個檔案 拆開壓縮的。。所以在解壓的時候覆蓋沒有關係的。。是把檔案夾合并了。。 正常解壓後的檔案夾 檔案夾不多,具體多少個我忘了

希望幫到你,另外可以網上搜一下相關windows 安裝 EBS 的 教程
 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.