溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

EBS附件下載 fnd_gfm fnd_lobs

發(fā)布時間:2020-06-15 23:18:42 來源:網(wǎng)絡 閱讀:3975 作者:baser 欄目:關系型數(shù)據(jù)庫

使用fnd_gfm包可以下載EBS系統(tǒng)中的標準附件,下載fnd_lobs表中文件,也可寫入文件。


1.下載文件

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.寫入文件

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;



向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI