Linking Report 6i wth html page

Dear all,
I have a website from which a simple search of employee contact is done. The result of the search is displayed by oracle report 6i. I dont know how to link a simple website developed in html with a report 6i.
The report has a parameter, first name. The reports displays all employees with that name passed as a parameter with their contacts.
Please anyone to assist me

Please use one thread

Similar Messages

  • Link button to local html page using AS3

    I am using AS3 and having trouble linking a button to a local html page

    Okay, I tried both of the codes and it is still now working.
    navigateToURL(new URLRequest("file:///fishcom/Home.html"));
    I get a Windows dialog box that states that the path can not be found.
    navigateToURL(new URLRequest("./fishcom/Home.html"));
    This goes to http://./fishcom/Home.html  but not my page.
    The Flash file and the HTML page are in the fishcom folder on my desktop. Very frustrating because this was so easy in AS2. 

  • Link Edge animation to HTML page?

    Is there a way to link my Edge animation to an Index HTML page in the same folder as the Edge.HTML? I linked a webpage with the OpenURL trigger and it worked. But I would like to link it to the index page within the same folder so that I can test it before uploading it to the internet.
    The trigger link that worked is:
    window.open("http://www.mywebsite.com", "_self");
    But can I use something like:
    window.open("index.com", "_self");
    Thanks,
    Susan

    Susan-
    You don't need the sitename - just use this (assuming you are calling it from the same directory as you said):
    window.open("index.html", "_self");
    Else, you should be able to use this if it one folder deep:
    window.open("../index.html", "_self");
    James

  • Cant link access database to html page

    <html>
    <head>
    <title>ASCAM Winery Customers Database Application</title>
    <Img height="350" width="175" style="float:left;" SRC="https://fbcdn-sphotos-e-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/1538743_739414219404453_295536607_n.jpg?oh=44ac8ad664ec4c955320953ecc897abf&oe=546C928C&__gda__=1416231439_9f7ec10eb3a492796ca997745cd36163">
    <Img height="350" width="175" style="float:right;" SRC="https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-xpf1/v/t1.0-9/10418140_272292502973344_2392827848855223574_n.jpg?oh=31ea8cfd238262ea38791e54fd894927&oe=5461E223&__gda__=1416653129_a039fc9ac8f3adcb4f4d220274565fad">
    <SCRIPT Language="VBSCRIPT">
    dim strCon
    dim conn
    dim rs
    sub    Edit_OnClick()
    rs.fields("ID") = SCAM.Name1.value
    rs.Update
    end sub
    sub del_OnClick()
    if not rs.eof and not rs.bof then
    rs.Delete
    rs.MoveNext
    if not rs.eof then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
           SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    else
    rs.MoveFirst
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    end if
    end sub
    sub dbConn()
    strCon="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Winery.mdb;
    Persist Security Info=False"
    Set Conn=CreateObject("ADODB.Connection")
    Set rs=CreateObject("ADODB.recordset")
    Conn.Open strCon
    rs.ActiveConnection = conn
    'rs.CursorLocation = adUseClient
    'rs.CursorType = adOpenKeyset
    rs.LockType = 2
    rs.Source = "customer"
    rs.Open
    rs.MoveFirst
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end sub
    sub MoveNext_Onclick()
    if not rs.eof then
    rs.MoveNext
    if not rs.eof then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    end if
    end sub
    sub MovePrev_Onclick()
    if not rs.bof then
    rs.MovePrevious
    if not rs.bof then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    end if
    end sub
    sub AddNew_Onclick()
    rs.AddNew
    rs.fields("CustomerID")=SCAM.Name1.value
    rs.fields("CustomerFirstName")=SCAM.CustomerFirstName.value
    rs.fields("CustomerLastName")=SCAM.CustomerLastName.value
    rs.fields("BillingAddress")=SCAM.BillingAddress.value
    rs.fields("EmailAddress")=SCAM.EmailAddress.value
    rs.fields("City")=SCAM.City.value
    rs.fields("State")=SCAM.State.value
    rs.Update
    end sub
    sub Search()
    SCAM.CustomerFirstName.value=""
    SCAM.CustomerLastName.value=""
    SCAM.BillingAddress.value=""
    SCAM.EmailAddress.value=""
    SCAM.City.value=""
    SCAM.State.value=""
    rs.MoveFirst()
    do while not rs.eof
    if rs.fields("CustomerID") = int(SCAM.Name1.value) then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    rs.MoveNext()
    loop
    end sub
    </script>
    <BODY onLoad="dbConn()">
    <FORM NAME="SCAM" Method="Post">
    <Center><h3>ASCAM Winery Customers Database Connection</h3>
    <TABLE border="0" cellpadding="2" cellspacing="2">
    <tr>
    <td>
    Customer ID
    </td>
    <td>
    <INPUT TYPE="TEXT" NAME="Name1">
    </td>
    </tr>
    <TR>
        <TD>
       First Name
        </TD>
        <TD>
       <INPUT type="text" name="CustomerFirstName">
        </TD>
    </TR>
    <TR>
        <TD>
       Last Name
        </TD>
        <TD>
       <INPUT type="text" name="CustomerLastName">
        </TD>
    </TR>
    <TR>
        <TD>
       Email
        </TD>
        <TD>
       <INPUT type="text" name="EmailAddress">
        </TD>
    </TR>
    <TR>
        <TD>
       Phone
        </TD>
        <TD>
       <INPUT type="text" name="Phone">
        </TD>
    </TR>
    <TR>
        <TD>
       Fax
        </TD>
        <TD>
       <INPUT type="text" name="FaxNumber">
        </TD>
    </TR>
    <TR>
        <TD>
        Address
        </TD>
        <TD>
       <INPUT type="text" name="BillingAddress">
        </TD>
    </TR>
    <TR>
        <TD>
       City
        </TD>
        <TD>
       <INPUT type="text" name="City">
        </TD>
    </TR>
    <TR>
        <TD>
       State
        </TD>
        <TD>
       <INPUT type="text" name="State">
        </TD>
    </TR>
    <TR>
        <TD>
       Zip Code
        </TD>
        <TD>
       <INPUT type="text" name="ZipCode">
        </TD>
    </TR>
       </TD>
    </TR>
    <tr>
    <table>
    <td>
    <INPUT TYPE=BUTTON name="AddNew" value="Add">
    <INPUT TYPE=BUTTON name="MoveNext" value="Move Next">
    <INPUT TYPE=BUTTON name="MovePrev" value="Move Previous">
    <input type="button" value="Search" onClick="Search()">
    <input type="reset" value="Reset" onClick = "location.reload();">
    <INPUT TYPE=BUTTON name="del" value="Delete"><br>
    </tr></td></table>
    </form>
    <SCRIPT LANGUAGE="JavaScript">
    var mydate=new Date()
    var year=mydate.getYear()
    if (year < 1000)
    year+=1900
    var day=mydate.getDay()
    var month=mydate.getMonth()
    var daym=mydate.getDate()
    if (daym<10)
    daym="0"+daym
    var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
    var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
    document.write("<large><font color='000000' face='Chiller'><b>"+dayarray[day]+", "+montharray[month]+" "+daym+", "+year+"</b></font></small>")
    </SCRIPT>
    </head>
    </body></html>
    What am i doing wrong?

    Here is a restructure and removal of some crap.
    Local HTML pages are not allowed to access files.  Use an HTA extension to allow the HTML to access your files.
    Here is  fixer.  Spnd some time learning HTNL and DHTML.  Go to W3Schools.com
    <html>
    <head>
    <title>ASCAM Winery Customers Database Application</title>
    <script Language="VBSCRIPT">
    dim strCon
    dim conn
    dim rs
    Sub window_onload()
    dbConn
    End Sub
    sub Edit_OnClick()
    rs.fields("ID") = SCAM.Name1.value
    rs.Update
    end Sub
    sub del_OnClick()
    if not rs.eof and not rs.bof then
    rs.Delete
    rs.MoveNext
    if not rs.eof then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    else
    rs.MoveFirst
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    end If
    end Sub
    sub dbConn()
    strCon="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Winery.mdb; Persist Security Info=False"
    Set Conn=CreateObject("ADODB.Connection")
    Set rs=CreateObject("ADODB.recordset")
    Conn.Open strCon
    rs.ActiveConnection = conn
    rs.LockType = 2
    rs.Source = "customer"
    rs.Open
    rs.MoveFirst
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end Sub
    sub MoveNext_Onclick()
    if not rs.eof then
    rs.MoveNext
    if not rs.eof then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    end if
    end sub
    sub MovePrev_Onclick()
    if not rs.bof then
    rs.MovePrevious
    if not rs.bof then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    end if
    end sub
    sub AddNew_Onclick()
    rs.AddNew
    rs.fields("CustomerID")=SCAM.Name1.value
    rs.fields("CustomerFirstName")=SCAM.CustomerFirstName.value
    rs.fields("CustomerLastName")=SCAM.CustomerLastName.value
    rs.fields("BillingAddress")=SCAM.BillingAddress.value
    rs.fields("EmailAddress")=SCAM.EmailAddress.value
    rs.fields("City")=SCAM.City.value
    rs.fields("State")=SCAM.State.value
    rs.Update
    end Sub
    sub Search()
    SCAM.CustomerFirstName.value=""
    SCAM.CustomerLastName.value=""
    SCAM.BillingAddress.value=""
    SCAM.EmailAddress.value=""
    SCAM.City.value=""
    SCAM.State.value=""
    rs.MoveFirst()
    do while not rs.eof
    if rs.fields("CustomerID") = int(SCAM.Name1.value) then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    rs.MoveNext()
    loop
    end Sub
    </script>
    </head>
    <body>
    <center><h3>ASCAM Winery Customers Database Connection</h3></center>
    <form NAME="SCAM" Method="Post">
    <Img height="350" width="175" style="float:left;" SRC="https://fbcdn-sphotos-e-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/1538743_739414219404453_295536607_n.jpg?oh=44ac8ad664ec4c955320953ecc897abf&oe=546C928C&__gda__=1416231439_9f7ec10eb3a492796ca997745cd36163">
    <Img height="350" width="175" style="float:right;" SRC="https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-xpf1/v/t1.0-9/10418140_272292502973344_2392827848855223574_n.jpg?oh=31ea8cfd238262ea38791e54fd894927&oe=5461E223&__gda__=1416653129_a039fc9ac8f3adcb4f4d220274565fad">
    <table border="0" cellpadding="2" cellspacing="2">
    <tr><td>Customer ID</td><td><input TYPE="TEXT" NAME="Name1"></td></tr>
    <tr><td>First Name</td><td><input type="text" name="CustomerFirstName"></td></tr>
    <tr><td>Last Name</td><td><input type="text" name="CustomerLastName"></td></tr>
    <tr><td>Email</td><td><input type="text" name="EmailAddress"></td></tr>
    <tr><td>Phone</td><td><input type="text" name="Phone"></td></tr>
    <tr><td>Fax</td><td><input type="text" name="FaxNumber"></td></tr>
    <tr><td>Address</td><td><input type="text" name="BillingAddress"></td></tr>
    <tr><td>City</td><td><input type="text" name="City"></td></tr>
    <tr><td>State</td><td><input type="text" name="State"></td></tr>
    <tr><td>Zip Code</td> <td><input type="text" name="ZipCode"></td></tr>
    </td>
    </tr>
    <tr>
    <table>
    <tr>
    <td>
    <input TYPE="button" name="AddNew" value="Add">
    <input TYPE="button" name="MoveNext" value="Move Next">
    <input TYPE="button" name="MovePrev" value="Move Previous">
    <input type="button" value="Search" onClick="Search">
    <input type="reset" value="Reset" onClick="">
    <input TYPE="button" name="del" value="Delete"><br>
    </td>
    </tr>
    </table>
    </form>
    </body>
    </html>
    ¯\_(ツ)_/¯

  • Adding and linking report region to a page with an existing report region

    I have page that has a report region. It is based on a master table.
    I want to add another report region to the same page for the detail.
    I have added the region of tpye HTML and entered the query in the source section.
    How do link this detail region with the master region. That is join the detail to query after the master based on the master row selected.

    This tutorial should help you:
    http://download.oracle.com/docs/cd/E10513_01/doc/appdev.310/e10497/rprt_drill.htm#CIHGBADI
    It shows how to do it using two pages, but putting both reports on one page is pretty much the same.

  • How to automatically maximize report output on HTML page

    Hi,
    I am using Oracle Database 10g and Oracle Developer Suite 10.1.2
    on Windows XP.
    I am using Run_Report_Object() and Web.Show_Document() respectively to call the Report from Oracle Form.
    Well, it showed normally.
    However, the Window is not maximized automatically when showed.
    I had to maximize it manually.
    I would like to know, how can I maximize the report output which is showed in new Window on HTML format automatically?
    Is there anyway to do so?
    BTW, I also use the Report to call another Report by providing the hyperlink using SRW.Set_Hyperlink
    Can I do the same, maximize the Window?
    Many thanks,
    Buntoro

    hi,
    u'll have to set the second argument in your function to '_blank'
    i.e, web.show_document(url,'_blank');

  • How to insert a streaming audio file/link into a basic HTML page?

    I am a novice webmaster managing the website for our arts organization.  I am trying to build a simple table on a page of our site that will have about 30 streaming MP3 audio clips for our members to review.  I'm using Amazon CloudFront and Amazon S3 to host and stream these files (using an embedded JW Player?).  Can someone explain to me how to insert these media files into my Dreamweaver page in the most simple way? 
    Up until now, I've been just inserting downloadable MP3 files as quicktime plugins (also hosted at Amazon S3) but with 30 files that gets pretty cumbersome because they all begin to progressive download at the same time. 
    Thank you.

    I simply want a basic playlist for  MP3 files.  What is the type of playlist I want in that case? 
    XML would work.
    http://www.longtailvideo.com/support/forums/jw-player/setup-issues-and-embedding/5768/how- to-embed-jw-player-with-an-xml-mp3-playlist
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • How can I pass parameters from report to HTML page

    Hi,
    Does any one know how to pass value from Portal Report to other HTML page (asp for excample).
    I build a Protal report, and I want jamp to "http://...viewDoc.asp?DocID=DocumentID" URL, by clicking on link, where "DocumentID" is parameter that to be pass from report.

    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 link from html page to a specific frame in flash cs5 as3

    Hi!
    I'm kinda new around here. I am interested in knowing how to link from a specific html page to a specific frame in flash cs5 as3.
    I have a website that I originally began to design in flash but later started developing new pages for it in html. The flash part of it has several pages on different frames and I have created links from the flash part to the other html pages, but, I can only link the html pages back to the main flash home page, and not the other pages in the flash part of the website.
    I have read that in cs3 it was possible using the flashvars skip variable, but I don't know how to do it. I have not yet seen any working examples and I could not find any instructions / tutorials online for cs5.
    Can someone help here?

    add a query string, to the swf's embedding html, with variable/value indicating the frame you want to display in your swf.  add a javascript function to return the query string (or entire url), call the javascript function from flash using the externalinterface class.  and finally add code to your swf to parse the returned url or query string, parse it and then direct your timeline to the appropriate frame.

  • How to go to anchor html link from external html page in JEditorPane

    Hi people,
    I've been trying to jump to an anchor link from an external html page in JEditorPane, and I cannot get it working, I'm sure it can be done somehow...
    The HTML page has a link like:
    Hello
    and this is loaded into JEditorPane ok.
    The HyperlinkListener implementation:
    public void hyperlinkUpdate( HyperlinkEvent e )
    try {
    if ( e.getEventType() == HyperlinkEvent.EventType.ACTIVATED )
    editorPane_.setPage( getClass().getResource(
    MyDialog.this.getBaseURL().concat( e.getURL().getFile().substring(
    e.getURL().getFile().lastIndexOf( "/" ) + 1 ) ) ) );
    if ( e.getURL().getRef() != null )
    editorPane_.scrollToReference( e.getURL().getRef() );
    else return;
    } catch ( IOException ioe ) { ioe.printStackTrace(); }
    This code loads the new html file ok, but it does not scroll to the anchor. The MyDialog.this.getBaseURL() just returns something like com.name.package, I construct the URL by using this base url and the name of the html file to open.
    ANy help, thanks

    he! I'm not alone in my desperation. Take a look at my problem:
    I've got a JEditorPane (not editable) inside a JFrame. The JEditorPane is loaded with the HTML text and all the links to anchors are working properly when I click on them.
    BUT
    If I try to go to an anchor from outside this JFrame I can see how the JEditorPane scrolls to the right anchor and suddenly it scrolls back to the place where the caret was located!!!
    The "funny thing" is that my code is working in jdk1.3.1 but this is happening in jdk1.4.2. Is it a bug?!?!?!
    How could I figure out what position I have to set the caret to for every anchor in order to get the scroll working correctly???
    My implementation of hyperlinkUpdate (working properly, here isn't the problem):
       jEditorPane.addHyperlinkListener(new HyperlinkListener() {
          public void hyperlinkUpdate(HyperlinkEvent e) {
            if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
              MiEditorPane src = (MiEditorPane)e.getSource();
              src.goToAnchor(e.getDescription().substring(1));
        });My object jEditorPane is an instance of this class:
      class MiEditorPane extends JEditorPane {
        MiEditorPane() {
          super();
        public void goToAnchor(String anchor) {
          super.scrollToReference(anchor);
      }And this is the method I call from outside the JFrame containing the JEditorPane:
      public void goToAnchor(String anchor) {
         jEditorPane.goToAnchor(anchor);
      }Any help greatly appreciated ...

  • Printing a HTML page in a JTextPane

    Hi all..
    I nned to develop a report generating system for one of the softwares that I am writing and I am planing to generat the report as a HTML page (both text and images) and users can preview them on a JTextPane and can save to disk as html files for further use.
    I also want to add functionality to the application to print the report through java.
    what I want to do is to print what is displayed in JTextPane (Content Type: text/html)
    I am familiour with Printable interface what I cant figure out is how to make the JTextPane printable and how to send the data in JTextPane to printers Graphic object
    Can somebody give a sample code for this.
    Also if you know any other way of printing a HTML formated text without use of any other componant like JTextPane please tel me how to do it.

    We had done the same using the JEditor Pane and later print the JEditorPane using the print API..
    Here is the code to include the html file.
    mainPane = new JEditorPane("file:///C:/project/JavaPrintingAPI/AddGlobalProduct.html");
    mainPane.setEditable(false);If it work... hungry for yummy dukes... :-)

  • Calling Webstart without interrupting HTML page flow

    I am trying to invoke a JNLP link without interrupting
    the HTML page flow. So on my first page i want to click
    a link, which will invoke JNLP and will display the second
    page, which says something like 'Starting..' and invokes
    the 3rd page. The 3rd page keeps waiting on the app server
    until the JWS app has logged in an than displays 'Logged In'.
    I already managed the above by adding to the second page
    <script>
    open("xyz.com/xyz.jnlp","_blank");
    </script>However I don't like that solution because it pops up a new window that will close asap, but causes unwanted flickering.
    Any ideas?
    Cheers,
    rio

    So, you want to submit an http request when an html element is clicked, and have the response be filled into a container on the page? This type of thing falls under the blanket of Ajax. There are a million Ajax implementations that can do this for you.
    For instance, if you were using the prototype library, you would use the [Ajax.Updater|http://www.prototypejs.org/api/ajax/updater] javascript call. Then you could write something like <input type="radio" id="customerInfo" onclick="update(this.id)" />, and call your javascript update function. Any ajax library should know how to construct an xmlHttpRequest object, post it, and get the response back in some way you can use programatically.
    How the web server generates the response (servlet or otherwise) is irrelevant. If this is new ground for you, you will want to read up on Ajax technologies, the xmlHttpRequest object, and javascript.

  • Passing Parameter to report (html) from html page

    Hi
    I have a html page use web application server as tool, this page
    link to report, I want to pass the parameter to report
    paramform.
    This is my PL/SQL
    procedure eqp_form(ceqp in out mms_eqp_master.eqp_code%type) is
    htp.tableData(htf.anchor(report.print('msr_eqp_group'),'<font
    color=ffffff>Eqp Group
    Report</font>',cAttributes=>'target=target_blank'));
    How can I do to pass 'ceqp' into report parameter form, before
    running report?

    <p>In the scenario you described the report that connects to the stored procedure will automatically require parameters so they can be passed to the stored procedure.</p><p>Here is a link to a sample that passes a parameter to a report at runtime using BusinessObjects Enterprise XI R2:</p><p>http://diamond.businessobjects.com/node/1018 </p><p>Rob Horne<br /><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/blog/10</a></p>

  • Question on passing value to an HTML page and dynamic links

    Hi,
    I just started using Oracle APEX and have the following questions:
    1) I try to pass an order number from a report page to a blank HTML page that is supposed to be a shipping label. I cannot have the HTML page resolve the placeholder within HTML code to actual order number. I have tried %P2_ORDER_ID%, #P2_ORDER_ID# or &P2_ORDER_ID. Any suggestions?
    2) I have a column with link in a report page and I want the link to go to different pages based on the value of that column. How should I do that?
    Thanks!
    Mike.

    Hi All,
    Im still trying to think about this the right way.
    If I add a servlet to the C2 project and use HTTP post from the HTML page and have the 2 variables in the servlet, could I then either set the variables on the session bean in order to make them available to my searchResults.jsp bean methods?
    Regards
    Jim

  • Html pages linked to a stylesheet

    Is there a report in DW CS3 which will show all html pages
    linked to a particular stylesheet?
    Thanks, CMA

    Nobody is wanting to replace anything.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "AndrTa" <[email protected]> wrote in message
    news:f6d4dq$1l9$[email protected]..
    > It's wise... But include only
    href="yourstylesheetname.css" to find and
    > replace with href="yournewstylesheetname.css" if you
    want to replace
    >
    >
    > John Waller wrote:
    >>> Is there a report in DW CS3 which will show all
    html pages linked to a
    >>> particular stylesheet?
    >
    >>
    >> Not specifically but you can use Find & Replace
    to get this info.
    >>
    >> Edit > Find & Replace
    >>
    >> Find in: Entire current local site
    >>
    >> Search: Source Code
    >>
    >> Find: <link href="stylesheet.css"
    rel="stylesheet" type="text/css">
    >>
    >> NOTE: cut-and-paste the <link> tag from your
    code -- it's between the
    >> <head> tags -- containing the stylesheet
    you're looking for.
    >>
    >> Find All
    >>

Maybe you are looking for

  • How much Ram do I need in a MacBook Pro for Software Engineering?

    I plan to buy a new MacBook Pro in the next month for school and hopefully for work. I would like this computer to get me at least 4 years of use. I will be majoring in software engineering. My question is how much ram would I need in a Macbook Pro f

  • CD designing after burning a CD

    I have an HP Pavillion dv6000 and it came with a program called "Lightscribe" Sometime down the road when the laptop I have now, dies on me I would love to get an Apple. Does Apple have anything like Lightscribe? I really love that program and it wou

  • COPA value field not getting complete SD condition value

    Hi Gurus, I find a strange issue when a billing document is transferred to COPA (well basically, after a billing document is released to accounting, all the controlling docs and COPA docs are generated). The issue is, I have a SD pricing condition wh

  • Gaming with 24" iMac

    I just got a new 24"iMac and like to try to play some games I was thinking the new Bioshock for Mac and like to get a gamepad for it as well.Anybody has experience with these two items?I know that the game is new but the gamepad I am thinking of some

  • Transparent Background Won't Export

    I've created an After Effects project using the Keylight plugin exactly as described in this video, http://www.adobe.com/designcenter/video_workshop/?id=vid0229. However, the Flash Video contains a white background and is not transparent. I've gone b