How to open a URL from oracle forms ? [message #547596] |
Wed, 14 March 2012 23:37 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
nandhiniprema
Messages: 10 Registered: February 2012 Location: Chennai
|
Junior Member |
|
|
How to open a URL from oracle forms ?
Select APP_SERVER_URL into p_url
from CA_EXT_INT_PARAM
where FACILITY_ID =facility_id;
SELECT appl_user_password INTO p_user_password
FROM sm_appl_user
WHERE appl_user_id = P_Login_User;
p_url := 'iexplore '|| p_url ||'eBT/jsp/photo_capture_main.jsp?' ||
'&p_patient_id='|| p_patient_id|| '&p_facility_id=' ||
p_facility_id ||'?p_login_user=' ||p_login_user ||
'&ws_no='||'dd'||'&locale='||:parameter.p_language_id;
host(p_url)
Above coding throws a error unable to open a link..
|
|
|
|
|
Re: How to open a URL from oracle forms ? [message #547646 is a reply to message #547642] |
Thu, 15 March 2012 06:46 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
owais_baba
Messages: 289 Registered: March 2008 Location: MUSCAT
|
Senior Member |
|
|
another example
DECLARE
rep_url varchar2(2000);
BEGIN
rep_url:='/dev60cgi/rwcgi60?server=
repserv6i&report=
reptest.rdf'
||'&desformat=
htmlcss&destype=
cache&userid=
scott/tiger@orcl'
||'&p_deptno=
10¶mform=no';
WEB.SHOW_DOCUMENT(rep_url,'_blank');
END;
These all examples would help u now use ability
Enjoy
[Updated on: Thu, 15 March 2012 06:49] Report message to a moderator
|
|
|