Hyperlink on forms

Can we create a Hyperlink on a form? If yes please let me know the steps.
Thanks & regards
Rakesh

This is achived with Hyper Link Java bean. You can the
sample form and java bean from otn site.
http://otn.oracle.com/sample_code/products/forms/content.html

Similar Messages

  • I cannot make hyperlink in form 10g

    Hi,
    i m trying to make a hyperlink in forms 10g, can some one help me through demos???????????
    Thanks

    you can use a text-item with no bevel and when the user clicks in the item you write a
    web-show_document ();
    the value of the item is e.g. the name of the link and can be used as parameter to the show_document

  • Hyperlink in Forms possible???

    Is there any option in oracle 9i forms to create hyperlink.
    If yes how.? n if No. then any other option to fulfill the requirement.
    This is only for good Look n Feel.

    Read the following...
    Re: i cannot make hyperlink in form 10g
    My greetings,
    Simon

  • How can we use hyperlinks in forms 9i

    How can we use hyperlinks in forms 9i..
    I looked at the sample but it appears blank.
    Will you please tell me what is the code to hyperlink display items in forms 9i.
    Thanks in advance.

    Download the 10gR2 demo zip file. Its called "hyperlink". Note that this is a demo only and may or may not work the way you want or even as we intended. No QA has been performed on this PJC.

  • Hyperlink and forms

    how do i make a hyperlink when clicked on by a visitor goto my mail.html page and input into a field in my mail form, on that page, the URL of the page the hyperlink was clicked on
    im new to this all suggestions welcomed

    ok i do not quite understand what u mean by all this: but if this is JSP do somethin like <a href="<%= blah blah  + ?<paramname = paramValue">" %> > Link </a>
    Where blah blah is the current page name , so u sort of re render the same page , do <% request.getParameter("paramName") %> to get the paramValue. Check if it is not null with an if statement, and if it is not include page <mail.html> or wotever the page name is.
    </a>

  • How to create hyperlink using form

    if a user click on button then
    oulook express open for sending mail but i want to create hyperlink on it automatically.
    actually when user click then a word file created on server i want to hyperlink this file the file name is my form serial_no

    when i click on button outlook express is opening know and i can send text on body through forms
    i need it to send hyperlink on outlook express so i can open document through this link which is on outlook express file

  • Creating a hyperlink in Forms 6i Client Server

    I need to create a link to a webpage from a 6i Client Server Form. I would also like not to have to specify a certain browser. Some people using this may have IE and others Netscape.
    Any ideas?

    I don't know if this is exactly what you're looking for but see the hyperLink java bean http://otn.oracle.com/products/forms/

  • Insert hyperlinks in Forms 10g R2

    Hi to all,
    is it possible to implement weblinks on a canvas in Forms 10g R2 ?
    I searched for that in many forums and at Metalink but failed.
    Any help is appreciated.
    Regards
    Markus

    is it possible to implement weblinks on a canvas in
    hyperlink???
    Did you try to look at Demo Forms?
    Oracle Forms 10g— Online Demonstrations and Sample Code
    http://www.oracle.com/technology/sample_code/products/forms/index.html

  • Hyperlink in forms

    I want to create a HyperLink Button in our Forms application that opens an IE Browser for another application which resides on a different Server. I will also pass a data string to the other application. After the work is done on this application, The user closes the browser and is back on the original Form.
    There is the function called WEB.SHOW_DOCUMENT but it can only be used in web forms...which unfortunately we don't have.
    I have tried using the HOST command and have successfully opened a new window , closed it and come back to my original forms. Bur HOST command does not seem to have a feedback capability for me to read if the connection was successful and if the Host system was found or not found.
    Is there any other way around this?
    Thanks!
    Anu

    Using Host(), you can get feedback, you need to collect the log file when you attempt to logon the remote server, then read into the content to find out the error code.
    See my sample code below:
    PROCEDURE Chk_ftp_account( wk_ip_adr in varchar2,
    usr_name in varchar2,
    pss_wrd in varchar2,
    accnt_ok out boolean) IS
    ftp_dir_file UTL_FILE.FILE_TYPE;
    ftp_log_file UTL_FILE.FILE_TYPE;
    ftp_dir_file_name varchar2(40);
    ftp_log_file_name varchar2(40);
    ftp_command varchar2(60);
    Oracle_dir varchar2(10);
    v_ErrorCode number(6); ---PROBLEM HERE
    v_ErrorText varchar2(200);
    v_str1 varchar2(400);
    Begin
    --- build the ftp directive file
    Oracle_dir := '/tmp';
    ftp_dir_file_name := usr_name || '_ftpc_dir';
    ftp_log_file_name := usr_name || '_ftpc_log';
    ftp_dir_file := UTL_FILE.FOPEN(Oracle_dir, ftp_dir_file_name, 'W');
    UTL_FILE.PUTF(ftp_dir_file, 'open %s\n', wk_ip_adr);
    UTL_FILE.PUTF(ftp_dir_file, 'user %s %s\n',usr_name,pss_wrd);
    UTL_FILE.PUTF(ftp_dir_file,'cd hlink.projects\n');
    UTL_FILE.PUTF(ftp_dir_file,'quit\n');
    UTL_FILE.FCLOSE(ftp_dir_file);
    --- invoke the ftp command
    ftp_command := 'ftp -n -v < '
    || Oracle_dir || '/' || ftp_dir_file_name || ' > '
    || Oracle_dir || '/' || ftp_log_file_name;
    host(ftp_command);
    --- Read results from ftp log file to determine if
    --- supplied account worked ok
    ftp_log_file := UTL_FILE.FOPEN(Oracle_dir,ftp_log_file_name, 'R');
    accnt_ok := FALSE;
    LOOP
    BEGIN
    UTL_FILE.GET_LINE(ftp_log_file,v_str1);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    message(' Workstation selected not reachable');
    message(' ');
    EXIT;
    END;
    IF INSTR(v_str1,'230') > 0 THEN
    accnt_ok := TRUE;
    EXIT;
    ELSIF INSTR(v_str1, '530') > 0 THEN
    message(' Incorrect UserName or Password Supplied');
    message(' ');
    EXIT;
    End IF;
    END LOOP;
    UTL_FILE.FCLOSE(ftp_log_file);
    --- Exception handeling
    Exception
    When UTL_FILE.INVALID_OPERATION THEN
    UTL_FILE.FCLOSE(ftp_dir_file);
    Message('INVALID OPERATION... ftp 2 workstation');
    WHEN UTL_FILE.WRITE_ERROR THEN
    UTL_FILE.FCLOSE(ftp_dir_file);
    Message('WRITE ERROR.... ftp 2 workstation');
    WHEN UTL_FILE.INVALID_PATH THEN
    UTL_FILE.FCLOSE(ftp_dir_file);
    Message('WRONG PATH... ftp 2 workstation');
    WHEN UTL_FILE.INVALID_MODE THEN
    UTL_FILE.FCLOSE(ftp_dir_file);
    Message('WRONG MODE... ftp 2 workstation');
    WHEN UTL_FILE.INVALID_FILEHANDLE THEN
    UTL_FILE.FCLOSE(ftp_dir_file);
    Message('Invalid file handle "ftp_dir_file" ftp 2 workstation ');
    WHEN OTHERS THEN
    UTL_FILE.FCLOSE(ftp_dir_file);
    v_ErrorCode := SQLCODE;
    v_ErrorText := substr(SQLERRM, 1, 200);
    message('Just known Internal Error: '||v_ErrorCode||'=>'||v_ErrorText);
    End;

  • Can we have url hyperlink in forms 4.5 ?

    Anyone know did forms 4.5 support hyperlink to url?

    I usually use a push button with the following code:
    if get_application_property(user_interface) = 'WEB' then
         web.show_document(website);
    else     
    host('rundll32 url.dll,FileProtocolHandler '||website);
    end if;
    Again you need forms6 for web.show_document but the host command ought to work in 4.5 client server.

  • Creating hyperlinks in form region

    How can I create hyperlinks in the form region.when clicked on hyperlink it should take to a different page.Thanks in advance.

    Jari,Thanks for your help.
    The form is not a tabular one. For exapmle I have couple of items say username and password. Below the username I would like to place a hyperlink.Similerly I would like to place another hyperlink below the password. how can I do that?
    I tried to create a text below the username filed using the display item.How can I hyperlink the text so that it can take to another page?

  • HYPERLINKS in Forms Central

    Would love to add a hyperlink to a PayPal account in my form. Anyone know if I can do this and if so how?

    FormsCentral now provides the ability to integrate your form directly with PayPal. In one seamless experience, respondents can fill out the form and pay using a credit card or PayPal account.
    You can read this tutorial on enabling Payment Processing to learn more.
    We also have created a dedicated community forum Payments to help better support you.
    Please tell us what you think.
    Randy

  • Set Hyperlinks in Form List/Menu?

    I'm new to adding form items to my sites and I'm wondering if
    it's possible to set each item in a drop down menu to hyperlink to
    another site. I'm sure it is, but I'm missing where you place the
    link. I thought perhaps it went in the value field, but realize now
    it doesn't. Or is there another method I should use to create a
    link menu?

    This is helpful - thank you for the reply.  However, this is all code and looks pretty complex to me.
    It's not hard.  Just work through the tuts  and learn  to not be afraid of code view. 
    Sure wish there was a solution in design mode (with just a little code checking).
    "Dream a little Dream" 
    http://www.youtube.com/watch?v=vZPmZ64m3_4
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Hyperlink from form

    Hi,
    I am using form 10g.
    Can I call hyperlink from the form?
    Please suggest.
    Thanks

    Hi,
    Apex version is more important. And do you talk about tabular form ?
    Regards,
    Jari

  • Display a hyperlink within forms 9i

    hi,
    I want to display the hyperlink on the lefstside of a form using web.show_document.Rightside holds some another frame.But it displays in the whole window.I wnat the link to appear only within the target frame.
    please help me.thanks

    Madhu,
    when creating frames the you can specify percentages of the available width to each of them. This way you can make sure that the Forms size always is kept. You can apply absolute values too if you donh't like relative values expressed by percentage.
    Also, think about using frames that are positioned horizontally not vertically. This way Forms always stays on top and the opened page will be scrollable in the second frame.
    Frank

Maybe you are looking for