|
|
Re: How to call Oracle help on web [message #278011 is a reply to message #277094] |
Thu, 01 November 2007 07:47 |
realoneomer@gmail.com
Messages: 25 Registered: September 2007 Location: Islamabad
|
Junior Member |
|
|
Hi
How are you i have visited the link which you have send but i am facing lot of problems
1- My default servlet mapping is /forms/frmservlet but in in the documentation it uses the servlet mapping /OHW/help i have change the servlet mapping from /OHW/help to /forms/servlet but still it is not working properly
i have also change the Web.Xml Configuration but it is not working properly
2-how i call the Help page from Oracle form i have use the key-help trigger to display the help and i have use the following code kindly check it is it true i mean is it call the appropriate Html or not
This is the code
declare
formname varchar2(80) := lower(name_in('System.Current_form'));
blockname varchar2(80) := lower(name_in('System.Cursor_block'));
itemname varchar2(80) := lower(name_in('System.Cursor_item'));
topicid varchar2(80) := itemname;
begin
if itemname is not null then
web.show_document('http://omer:8889/forms/frmservlet/?topic = '||topicid , '_blank');
end if;
message(''||''||formname||' '||blockname||' '||itemname||' '||topicid);
End;
Thanks
Omer Shahzad
[Updated on: Thu, 01 November 2007 07:49] Report message to a moderator
|
|
|
|
|