Home » Developer & Programmer » Forms » How to get file directory path dynamically in the report (Reports 10g)
How to get file directory path dynamically in the report [message #595074] Fri, 06 September 2013 02:31 Go to next message
vijay_hai
Messages: 4
Registered: July 2005
Junior Member
Hi all,
I want to get file directory path dynamically with out using directory in database or not hard code like below
the purpose is i need to check image in the path directory if not found i unable to generate report, is there any possible to get dynamically

function CF_URLFormula return Char is
v_handle utl_file.file_type;
v_file_dir VARCHAR2(60) := '/u002/app/applmgr/temp/';
begin
v_handle := utl_file.fopen(v_file_dir, :photo_name, 'R');
utl_file.fclose(v_handle);
RETURN v_file_dir||:photo_name;
exception
when others then
srw.message(100,SQLERRM);
return null;
end;
Re: How to get file directory path dynamically in the report [message #595076 is a reply to message #595074] Fri, 06 September 2013 03:06 Go to previous message
vijay_hai
Messages: 4
Registered: July 2005
Junior Member
image will be in source path of forms and reports
Previous Topic: While Running Forms 11g From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1: 10.4.5 404 Not Found
Next Topic: Enable find icon in the toolbar
Goto Forum:
  


Current Time: Fri Apr 19 22:02:36 CDT 2024