forms 10g application error [message #348427] |
Tue, 16 September 2008 13:45 |
deba_skr
Messages: 2 Registered: September 2008
|
Junior Member |
|
|
Hi,
Please help me.. I am finding problem to open .xls file in oracle forms 10g
I need some urgent help.. Please help me!!
tried to execute a program code on forms 10g from client machin which runs on windows XP and using application server which is unix server.
it opens a .xls file
it gives error. which I am not able to debug
use the following command :
the program code is given below:
DECLARE
v_file VARCHAR2(2000);
url VARCHAR2(2000);
-- err_code CONSTANT NUMBER := SQLERR;
BEGIN
v_file := :Registration.file_path||'\'||:Registration.file_name;
-- HOST(v_file, NO_SCREEN);
-- Client_Host('C:\WINNT\system32\cmd.exe /C'||v_file);
url := 'forms/frmservlet?config=sabam-dev&userid=xxx_yyy/<pswd>@db';
';
web.show_document(url,v_file);
END IF;
EXCEPTION WHEN OTHERS THEN
MESSAGE(SQLERRM);
END;
Thank in advance
Deba
|
|
|
|