How do i pass a URL through a form ??

Hi,
I want to open Internet Explorer through my form , may be from a Button. How do I dothat i.e. how do we pass URL from a form..
Is it possible through host command ??
Any one any comments ???

Use the web.show_document, check the online help for more details. It will open the default browser.
Ex :
WEB.SHOW_DOCUMENT('http://www.oracle.com');
Even the HOST command works :
Ex:
host('C:\Program Files\Netscape\Communicator\Program\netscape.exe www.oracle.com');
Abhijith Unnikannan,
Oracle Support Services

Similar Messages

  • Reg: Passing Image url through CSS Class

    Hi,
    How can i pass the image through Css class ?
    Thanks in advance.

    Hi,
    I am not sure if that can be done in css file though.
    I suppose you are using the backing bean for setting the skin (just read your old thread). If yes, you can add two images to your page and set the visible property according to the current skin. Something like
    <af:image id="i1" source="../images/first_logo.gif" visible="#{seesionScope.currentSkin == 'First'}"/>
    <af:image id="i2" source="../images/second_logo.gif" visible="#{seesionScope.currentSkin == 'Second'}"/>
    If i select Second CSS file then the logo will be change according to the style class defined in First CSS file .AFAIK, the company logo would be static ;) .
    -Arun

  • How can I pass parameter from report to form?

    Hi :)
    Now I try to build conference room like this by using form
    and report. And i design that when users click at group report
    then i'll show page that contain questions report and add
    question form. And question form and report must receive the
    same parameter from group report.
    First Problem: is I don't know how group report send the
    same parameter to question report and add question report at the
    same time. And is it possible??? If not please suggest me what
    should I do???
    Second Problem: is I don't know how can I pass parameter from
    report to form. I don't know the way to do it.
    Please tell me!!! Please...
    I look forward to hearing from all of you.
    Thank You.

    One way is to create a link based on that form and attach that
    link with the report. Through links you can pass parameters

  • How to use Direct Access URL in the FORM tag

    I want to substitute the pageid url (/servlet/page?_pageid=161&_dad=portal30&_schema=PORTAL30) with the direct access urls (pls/portal30/url/page/my_page) to address the pageid conflict between development server and production server.
    It works perfectly fine in the redirection code such as:
    self.location.href="/pls/portal30/url/page/next_page". But I got "Page can not be found" error message when I use it in the <FORM> tag:
    <FORM ACTION="/pls/portal30/url/page/next_page" METHOD="POST" NAME="my_form">
    Does anyone out there know how to use the direct access url inside the <FORM> tag? I am trying not to write a bunch of code just to retrieve and insert the pageid at the run time.
    Thanks in advance.
    Arthur

    Use condition. If you are validating a record, just out the desired check in the condition field for that specific item.
    Thanks
    Nagamohan

  • How do I pass a webbpage through my server?

    Hello
    I am developing a webportal, consisting of a client (applet), a login-server (java program) and a web-server (qlikview developed by qliktech). The login-server and the web-server will be located on the same machine and communicate through localhost. The Client will be located on another machine and communicate with the login-server through internet (SSL). The client will only have access to the login-server. My problem came up when a user has logged in to the login-server and wants to access a web-page on the web-server. How can I bypass the web-page from the web-server through the login-server to the client?I already blocked the webserver so no communication except localhost is allowed.
    Any suggestions?

    It seems to me that you have to look at you design again...
    If you dont want your client to access the web server(why not anyways... you can always put some kind of validations there), the you have to allow your login server to get the data from the web server.
    One way you could do it, from the login server you make an URL connection to the web server, with the url the client has requested:
    http://yourservers/somecontenthere would become:
    http://localhost/somecontenthere
    then you would return to the client the content the web server returns, using the input stream from the URL object.
    Sorry for not being of much help, but I don't really see another way of archiving what you want using other way.
    Marco

  • How do i pass a url with query string using the jsp:forward tag

    This snippet of code gives a 403 error
    <jsp:forward page="testpage.jsp?test=1" />
    How do i rectify it?

    Well better way to go about for the job is to use
    setAttribute("name","value");method in the first page
    and then in next page use method
    String s=getAttribute("name");to retreive the value.
    Url rewritting or using Query String has some disadvantages ,which are handled by above mentioned approach.
    Ashish

  • How do you pass a variable from one form to another

    Sorry, I am new at this.
    I have an ID on one form and I want to pass it to another form and then populate a text field on the second form. How is this accomplished.

    There are various ways to accomplish this depending on your applications' needs.
    Read up on the manual, especially on session state management http://download.oracle.com/docs/cd/E10513_01/doc/appdev.310/e10499/concept.htm#CIHCFHBD
    This will get you familiar with the basics of url syntax and and session state after which you will have no problem implementing what your asking

  • How can I pass a variable to a form to pre-fill form fields on load?

    Hi all,
    I am developing a Windows Form Applicaiton in C# to register new users and walk them through a signup process.The application does a lot of other things as well. This part of it collects their personal information and saves the data to the database. Part of the process requires the user to complete a pdf form (W-4 tax form). I would like to pre-populate as many form fields as possible for them when the pdf launches, and not have them enter anything to get their data to prefill the form fields.
    My issue is I can't figure out how to get the pdf to know who is loading the form so I can do the SQL select and populate the form fields. I need to do a select * from Table where UniqueID="xxxxx" but how can I get the form to know on load what "xxxxx" is so it grabs the users personal info from the database?
    I have searched high and low and found nothing on how to do this without doing some hoakey hack outside of the application or pdf doc.
    I am creating/editing the form in LiveCycle Designer 8 and am loading the form for use by the user in acrobat 9.
    Any help,ideas, or nudging in the right direction would be much appreciated!

    I found this solution:
    REPORT YRT_TEST4.
    data: r_range type range of matnr.
    perform test changing r_range.
    *& Form test
    form test changing p_r_range like r_range.
    endform. " test
    REgards,
    Ravi

  • How can I pass a range to a form?

    In my program I have three ranges defined, with the syntax:
    RANGES: range1 for abc,
                    range2 for abc,
                    range3 for abc.
    I would like to pass range1 to a form declared in this program.
    How can I do this?
    Thank you!

    I found this solution:
    REPORT YRT_TEST4.
    data: r_range type range of matnr.
    perform test changing r_range.
    *& Form test
    form test changing p_r_range like r_range.
    endform. " test
    REgards,
    Ravi

  • How can you securly call discoverer through a form button?

    How can you send a user's creditentials securly to discoverer when in forms without using SSO? Is there something similar to calling oracle reports using a cookie to pass the credentials?
    Thanks,
    Jim

    Dr_Chris wrote:
    Just looked into the HBH-PV720 which is a Mono headset (version 2.0) whereas the Samsung Star is A2DP (version 2.1) capable, which means that you will need a compatible BT stereo headset in order to stream music to the phone.Hope this helps.
    I looked up on Sony Ericsson's products page and found dad's headset.
    http://www.sonyericsson.com/cws/products/accessories/compatiblephonesotherbrands/hbh-pv720?cc=gb&lc=...
    Then looked at the (Other Brands) Compatible Phones and noticed that Samsung Star (s5230) wasn't included there
    Dad's old phone was a W302 and I found it at the compatible Sony Ericsson phones section,which means incompatibility is actually the problem.At least he can use it when driving(which was actually the main reason why I bought him the headset,because I hated it when he drove and held his phone at the same time).
    Thanks so much for your replies,I might aswell have wasted my entire day trying to figure out how to fix this,not knowing though what the actual problem was

  • How can I open a url in oracle form 9i without toolbar and menubar

    I want to create a button in my form. When I click on the button it should open url without toolbar and menubar.
    I tried with web.show_document. but I am not able to remove the toolbar and menubar. plus not able to specify width and height. Any way to achieve this.
    Thanks,
    Mansoor

    Dear Frank,
    I have done as follows
    created a form with a button, and in my button pressed event I wrote
    WEB.SHOW_DOCUMENT('javascript:openMyURL("http://192.168.1.34/HELP/ADMF0005.html");', '_Self');
    and in my formsweb.cfg I have the following
    HTMLbeforeForm=<script> function OpenMyURL(page){window.open(page,"myURL","width=700,width=400,top=0,left=0,toolbar=no,menubar=no"); } </script>
    When I click on the button it is coming with toolbar , etc as well as no page found is coming with the following in the address bar.
    javascript:openMyURL("http://192.168.1.34/HELP/ADMF0005.html");
    My html view source comes as below for the form
    <HEAD><TITLE>Oracle9iAS Forms Services</TITLE></HEAD>
    <BODY >
    <script> function OpenMyURL(page){window.open(page,"myURL","width=700,width=400,top=0,left=0,toolbar=no,menubar=no"); } </script>
    <!-- Forms applet definition (start) -->
    <OBJECT classid="clsid:CAFECAFE-0013-0001-0009-ABCDEFABCDEF"
    codebase="/forms90/jinitiator/jinit.exe#Version=1,3,1,9"
    WIDTH="1000"
    HEIGHT="660"
    HSPACE="0"
    VSPACE="0">
    <PARAM NAME="TYPE" VALUE="application/x-jinit-applet;version=1.3.1.9">
    <PARAM NAME="CODEBASE" VALUE="/forms90/java">
    <PARAM NAME="CODE" VALUE="oracle.forms.engine.Main" >
    I am using Forms [32 Bit] Version 9.0.2.7.0

  • How can I pass parameter value into first form?

    hello all
    I have one form called logon.fmx
    I have parameter in that form called "common_home".
    when I run that form browser I need to trasfer the value for parameter "common_home".
    how can I do this?
    From
    Chirag Patel

    Hi all
    1) I am used to config='myconfig' in my application to run the application from browser.
    2) in formsweb.cfg I have add one more parameter like as follows
    otherparams=common_home=c:\chirag\erp
    3) you can add n number of user defined parameter here.
    it is working fine.
    From
    Chirag Patel

  • How i can transfer muliple values through parameter forms

    FIRST
    ====
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no EMP_NO='||:V_EMP_NO);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no EMP_NAME='||:V_EMP_NAME);
    OR
    SECOND
    =======
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no EMP_NO='||:V_EMP_NO||'EMP_NAME='||:V_EMP_NAME);
    which one is correct ?
    or any other syntax plz reply.

    Both the above are not correct. You can create 2 separate parameters and pass them.
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no EMP_NAME='||:V_EMP_NAME,EMP_NO||:V_EMP_NO);
    If u want to pass multiple emp_nos then use EMP_NO='233,3232,3232' and then you need to extract these in reports
    Rajesh ALex

  • Pass hidden value through a form

    Hi.  I'm trying to create a registration form in which users select an organization from a drop down list that is populated from a db table.  All I want the user to see is the origanization's name, but there is also an ID number for each organization in the table.  Is there a way I can submit the ID number for the origanization the user chooses as a hidden field?  I feel like it should be fairly simple, but I can't wrap my brain around it.
    Thanks for any help!

    What you've done here is ideal, you just need to make sure you pull back the person's organisation info at the same time as you get their base info to avoid you doing multiple database calls - from the sounds of it this is what you've done. If not, and for the purposes of anyone else who has similar requirements, you do something like this:
    Table 1 - Organisations
      org_id     NUMBER
      org_name   VARCHAR
    Table 2 - Users
      user_id       NUMBER
      user_org_id   NUMBER
                    FOREIGN KEY onto ORGANISATIONS (org_id)
      user_name     VARCHAR
      user_password VARCHAR(32)
      etc etc
    Then you get back all the info, a simple join will do:
    SELECT      *
    FROM        users,
                organisations
    WHERE       user_org_id = org_id
    AND         user_id = whatever
    That way you're doing all the work at the database level - there is simply no faster way of doing this as databases will walk all over Coldfusion when it comes to speed and efficiency.
    Good work, glad you've got it sorted!
    O.

  • Pass the data from a form in workflow to z table

    Hi all,
    How can I pass the data from a form in workflow to z table?

    Thanks for your answer, I tried the solution 2, I create "Submit" button, and ser the mapping scope to  be "All data rows", it only works when I select at least one row, otherwise the data would not be passed.
    Another question is I have serveral imported table parameter, for each table I have one "submit" event, I want these tables to be submitted at the same time, but if I click the submit button in one table toolbar, I can only submit the table data which has a submit button clicked, for other tables, the data is not passed, how can I achieve it?
    Thanks.

Maybe you are looking for

  • HDMI to DVI Dual

    Anybody know if the hdmi to dvi dual connection will work, so you can have 2 apple displays. I see them cheap for $20 and below. http://www.amazon.com/HDMI-Dual-Premium-Splitter-Cable/dp/B000FMPR0Q Thanks

  • XI 3.0 Installation Software

    hi, I'm planning to install XI, I got all the documents in the marketplace. Pleaset let me know how to get the software (CD number??). And can I download Rapid Installer (standalone), if so please let me know the url / path in Marketplace. HP

  • Loading XML data in Utilities

    I need to load some XML data into a staging table. I am using this navigation path... Home>Utilities>Data Load/Unload>Load>Load XML Data The staging table is setup with the columns in the XML file. I am receiving this error when I attempt to load the

  • Unable to update or restore iphone 4

    While attempting to update to ios 5 my iPhone 4 has completely bricked - please help! OK, in order..... I downloaded iOS 5.something manually via iTunes and then attempted to install on my iPhone. During this it threw up an error code - 4 i think. Tr

  • Issues with Itunes not launching (Windows 7)

    i have most current versions of itunes and quicktime (Ive read quicktime needs to be updated for itunes to work properly. ive deleted and re-downloaded both programs several times. Someone told me to check the Processes tab from the task manager and