返回顶部
首页 > 资讯 > 数据库 >EBS附件下载 fnd_gfm fnd_lobs
  • 325
分享到

EBS附件下载 fnd_gfm fnd_lobs

2024-04-02 19:04:59 325人浏览 泡泡鱼
摘要

使用fnd_gfm包可以下载EBS系统中的标准附件,下载fnd_lobs表中文件,也可写入文件。1.下载文件declare     v_file_id &n

使用fnd_gfm包可以下载EBS系统中的标准附件,下载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;



您可能感兴趣的文档:

--结束END--

本文标题: EBS附件下载 fnd_gfm fnd_lobs

本文链接: https://lsjlt.com/news/37367.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作