Dependent values in pl/sql HTML portlet

I have a simple html form that shows records to be updated with a submit button. One of the field shows multiple cycles from a table with radiobutton. Different amounts have to be shown for different values of cycles. This amount should be dynamically picked from a table.
Will anyone have ideas on how to show different amounts for different cycles? I thought of using onclick on cycle but cannot make it work.
htp.p('<form action=http://hostname/pls/portal/genutil.pkg_call_perform_ana.pr_call_form_update method="get">');
LOOP
fetch c1 into val1, val2, cnt, val3;
     exit when c1%NOTFOUND;
--i := i+1;
-- vivtest1.PKG_APP_ANA.tab_msg(i) := val1;
--PKG_CALL_APP_ANA.my_msg(i) := val1;
htp.p('<td align="left">');
htp.p('<font face="Arial" size=1 color=#000000">');
htp.p(val1|| '</font>');
htp.p('</td>');
htp.p('</tr>');
END LOOP;
htp.p('<tr>'); htp.p('<tr>');
-- cycle query begins here
VIVTEST1.pkg_perform_ana.PR_CYCLE_QUERY(c2);
htp.p('<TR>');
htp.p('<TR>');
htp.p('<td colspan=4>');
htp.p('<font face="Arial" size="1" color=#000000">');
htp.p('<b><center>Enter Distributed Amount </b></center>');
htp.p('<TR>');
LOOP
     fetch c2 into p_var;
     exit when c2%NOTFOUND;
          htp.p('<td align="center">');
          htp.p('<font face="Arial" size=1 color=#000000">');
          --htp.p(' <input type="hidden" name="p_cycle">');
          htp.p(' <input type="radio" name="p_cycle" ');
          htp.p(' value = ' || p_var );
htp.p(' onclick="this.form.action=genutil.pkg_call_perform_ana.pr_call_form_update;" ');
htp.p('CHECKED >'||p_var||'</font>');
          htp.p('</td>');
END LOOP;
-- cycle query ENDS here, Ask for pool amount
htp.p('<td align="left">');
htp.p('<font face="Arial" size=1 color=#000000">');
htp.p('Amt: <input type="text" name="poolamt" ');
htp.p( '</font>');
htp.p('</td>');
htp.p('<tr>');
-- Here's the submit button. Note that the value shows up in the button but
-- is not passed to the procedure because there's no "name=" defined.
htp.p(' <td colspan=4><input type="submit" value="Analyze"></td>');
htp.p('</tr>');
htp.p('</form></center>');
htp.p('</table>');
--htp.p(FootText);
CLOSE C1;

I have a simple html form that shows records to be updated with a submit button. One of the field shows multiple cycles from a table with radiobutton. Different amounts have to be shown for different values of cycles. This amount should be dynamically picked from a table.
Will anyone have ideas on how to show different amounts for different cycles? I thought of using onclick on cycle but cannot make it work.
htp.p('<form action=http://hostname/pls/portal/genutil.pkg_call_perform_ana.pr_call_form_update method="get">');
LOOP
fetch c1 into val1, val2, cnt, val3;
     exit when c1%NOTFOUND;
--i := i+1;
-- vivtest1.PKG_APP_ANA.tab_msg(i) := val1;
--PKG_CALL_APP_ANA.my_msg(i) := val1;
htp.p('<td align="left">');
htp.p('<font face="Arial" size=1 color=#000000">');
htp.p(val1|| '</font>');
htp.p('</td>');
htp.p('</tr>');
END LOOP;
htp.p('<tr>'); htp.p('<tr>');
-- cycle query begins here
VIVTEST1.pkg_perform_ana.PR_CYCLE_QUERY(c2);
htp.p('<TR>');
htp.p('<TR>');
htp.p('<td colspan=4>');
htp.p('<font face="Arial" size="1" color=#000000">');
htp.p('<b><center>Enter Distributed Amount </b></center>');
htp.p('<TR>');
LOOP
     fetch c2 into p_var;
     exit when c2%NOTFOUND;
          htp.p('<td align="center">');
          htp.p('<font face="Arial" size=1 color=#000000">');
          --htp.p(' <input type="hidden" name="p_cycle">');
          htp.p(' <input type="radio" name="p_cycle" ');
          htp.p(' value = ' || p_var );
htp.p(' onclick="this.form.action=genutil.pkg_call_perform_ana.pr_call_form_update;" ');
htp.p('CHECKED >'||p_var||'</font>');
          htp.p('</td>');
END LOOP;
-- cycle query ENDS here, Ask for pool amount
htp.p('<td align="left">');
htp.p('<font face="Arial" size=1 color=#000000">');
htp.p('Amt: <input type="text" name="poolamt" ');
htp.p( '</font>');
htp.p('</td>');
htp.p('<tr>');
-- Here's the submit button. Note that the value shows up in the button but
-- is not passed to the procedure because there's no "name=" defined.
htp.p(' <td colspan=4><input type="submit" value="Analyze"></td>');
htp.p('</tr>');
htp.p('</form></center>');
htp.p('</table>');
--htp.p(FootText);
CLOSE C1;

Similar Messages

  • Dependant values in a pl/sql html portlet

    I have a simple html form that shows records to be updated with a submit button. One of the field shows multiple cycles from a table with radiobutton. Different amounts have to be shown for different values of cycles. This amount should be dynamically picked from a table.
    Will anyone have ideas on how to show different amounts for different cycles? I thought of using onclick on cycle but cannot make it work.
    htp.p('<form action=http://hostname/pls/portal/genutil.pkg_call_perform_ana.pr_call_form_update method="get">');
    LOOP
    fetch c1 into val1, val2, cnt, val3;
         exit when c1%NOTFOUND;
    --i := i+1;
    -- vivtest1.PKG_APP_ANA.tab_msg(i) := val1;
    --PKG_CALL_APP_ANA.my_msg(i) := val1;
    htp.p('<td align="left">');
    htp.p('<font face="Arial" size=1 color=#000000">');
    htp.p(val1|| '</font>');
    htp.p('</td>');
    htp.p('</tr>');
    END LOOP;
    htp.p('<tr>'); htp.p('<tr>');
    -- cycle query begins here
    VIVTEST1.pkg_perform_ana.PR_CYCLE_QUERY(c2);
    htp.p('<TR>');
    htp.p('<TR>');
    htp.p('<td colspan=4>');
    htp.p('<font face="Arial" size="1" color=#000000">');
    htp.p('<b><center>Enter Distributed Amount </b></center>');
    htp.p('<TR>');
    LOOP
         fetch c2 into p_var;
         exit when c2%NOTFOUND;
              htp.p('<td align="center">');
              htp.p('<font face="Arial" size=1 color=#000000">');
              --htp.p(' <input type="hidden" name="p_cycle">');
              htp.p(' <input type="radio" name="p_cycle" ');
              htp.p(' value = ' || p_var );
    htp.p(' onclick="this.form.action=genutil.pkg_call_perform_ana.pr_call_form_update;" ');
    htp.p('CHECKED >'||p_var||'</font>');
              htp.p('</td>');
    END LOOP;
    -- cycle query ENDS here, Ask for pool amount
    htp.p('<td align="left">');
    htp.p('<font face="Arial" size=1 color=#000000">');
    htp.p('Amt: <input type="text" name="poolamt" ');
    htp.p( '</font>');
    htp.p('</td>');
    htp.p('<tr>');
    -- Here's the submit button. Note that the value shows up in the button but
    -- is not passed to the procedure because there's no "name=" defined.
    htp.p(' <td colspan=4><input type="submit" value="Analyze"></td>');
    htp.p('</tr>');
    htp.p('</form></center>');
    htp.p('</table>');
    --htp.p(FootText);
    CLOSE C1;

    I have a simple html form that shows records to be updated with a submit button. One of the field shows multiple cycles from a table with radiobutton. Different amounts have to be shown for different values of cycles. This amount should be dynamically picked from a table.
    Will anyone have ideas on how to show different amounts for different cycles? I thought of using onclick on cycle but cannot make it work.
    htp.p('<form action=http://hostname/pls/portal/genutil.pkg_call_perform_ana.pr_call_form_update method="get">');
    LOOP
    fetch c1 into val1, val2, cnt, val3;
         exit when c1%NOTFOUND;
    --i := i+1;
    -- vivtest1.PKG_APP_ANA.tab_msg(i) := val1;
    --PKG_CALL_APP_ANA.my_msg(i) := val1;
    htp.p('<td align="left">');
    htp.p('<font face="Arial" size=1 color=#000000">');
    htp.p(val1|| '</font>');
    htp.p('</td>');
    htp.p('</tr>');
    END LOOP;
    htp.p('<tr>'); htp.p('<tr>');
    -- cycle query begins here
    VIVTEST1.pkg_perform_ana.PR_CYCLE_QUERY(c2);
    htp.p('<TR>');
    htp.p('<TR>');
    htp.p('<td colspan=4>');
    htp.p('<font face="Arial" size="1" color=#000000">');
    htp.p('<b><center>Enter Distributed Amount </b></center>');
    htp.p('<TR>');
    LOOP
         fetch c2 into p_var;
         exit when c2%NOTFOUND;
              htp.p('<td align="center">');
              htp.p('<font face="Arial" size=1 color=#000000">');
              --htp.p(' <input type="hidden" name="p_cycle">');
              htp.p(' <input type="radio" name="p_cycle" ');
              htp.p(' value = ' || p_var );
    htp.p(' onclick="this.form.action=genutil.pkg_call_perform_ana.pr_call_form_update;" ');
    htp.p('CHECKED >'||p_var||'</font>');
              htp.p('</td>');
    END LOOP;
    -- cycle query ENDS here, Ask for pool amount
    htp.p('<td align="left">');
    htp.p('<font face="Arial" size=1 color=#000000">');
    htp.p('Amt: <input type="text" name="poolamt" ');
    htp.p( '</font>');
    htp.p('</td>');
    htp.p('<tr>');
    -- Here's the submit button. Note that the value shows up in the button but
    -- is not passed to the procedure because there's no "name=" defined.
    htp.p(' <td colspan=4><input type="submit" value="Analyze"></td>');
    htp.p('</tr>');
    htp.p('</form></center>');
    htp.p('</table>');
    --htp.p(FootText);
    CLOSE C1;

  • Dynamic List of Values in HTML Portlet

    I need to create a dynamic lov that selects the emp name and id from the emp table. This needs to be placed in a HTML portlet. I tried creating a LOV from the applications in portal but I think it needs to be tied to a form/report. I tried creating manually (code below) but it doesn't seem to grab the info from the cursor.
    Any ideas on how to do this or what is wrong with the code?
    <table width="145" border="0" cellspacing="0" cellpadding="4">
    <tr><td><b><FONT class="PortletText1"> View Child Information:</font></b>
    <table width="135" border="0" cellspacing="0" cellpadding="1">
    <form method="post" action="../utilities/switchschools.asp?ci=yy" name="childInfo">
    <tr>
    <td align="left" valign="bottom"><!-- Width set for sake of nav bar. -->
    <select name="student" style="width:137px" onChange="SubmitChildList()">
    <ORACLE>
    declare
    CURSOR get_emp IS
    select A.ename empname, A.empno id
    from emp
    order by 1;
    begin
    FOR emp_loop in get_emp LOOP
    htp.p('<option value= ' || emp_loop.id || '>';
    htp.p(emp_loop.empname || '</option>';
    END LOOP;
    end;
    </ORACLE>
    </select>
    </td>
    <td align="right" valign="bottom">
    <input type="image" title="Go" name="go" id="go" src="/images/go.gif" width="22" height="16" border="0" alt="Go" onclick="return childCheck();">
    </td>
    </tr>
    </form>
    </table>
    </td></tr>
    </table>

    Hi,
    You could make use of the application build tools avail .You could create a LOV based on the query and then use if while creating a form.You also create dynamic lovs within oracle form.
    or you could create a dynamic page with the lov and write a javascript function which on change of the lov would be redirected to some page.
    Thanks,
    Anu

  • SQL dependent Value Set

    hi experts
    I want to make value set ( single value column) dependent upon select statement. How can i do that . i know how to make table dependent value set but i dont know how to make value set dependent upon select .
    Please help me out of this ..
    regards
    Anwer

    Hi Anwar
    Go to Value Set creation screen.
    Go to Value Validation Region
    Select validation type as Table
    Click Edit information and enter your table details as follows
    Name of the table
    ID and name combination ( Like if you want to create a value set in person table in LOV you would like to show Full Name but while passing parameter or storing value you will store person_id)
    Add your where clause and order by clause in the where/order by clause.
    See a seeded value set of this type (BEN_ACTN_TYP) for reference.
    For more details go through flexfield guide at following location
    http://download.oracle.com/docs/cd/B34956_01/current/acrobat/120flexug.pdf
    Regards
    Gaurav

  • How can I set a variable number of values in a SQL IN clause?

    Hi,
    How can I set a variable number of values in a SQL IN clause without having to change the text of the SQL statement each time?
    I read the link http://radio.weblogs.com/0118231/2003/06/18.html. as steve wrote.
    SELECT *
    FROM EMP
    WHERE ENAME IN (?)
    But we need the steps not to create type in the system and would there be any other solution if we would like to use variable number of values in a SQL IN clause ?
    We are using JDeveloper 10.1.3.2 with Oracle Database 10.1.3.2
    Thanks
    Raj

    Hi,
    can you please explain why the solution from steve is not the right solution for you.
    regards
    Peter

  • Dependent Values read only or all possible values

    Hello
    I have read the following instructions.
    [How to Configure Predefined Properties with Dependent Values (NW7.0)]|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30b1ec90-0201-0010-6192-d3de721f8ae4?quicklink=index&overridelayout=true]
    I need this scenario in the Portal search.
    So my question is:
    Is it possible, if Country is empty, that the field City is read only.
    In the How to guide you can see , if no city is selected the property city is a text field(not Dropdown) and you can enter a sting.
    Or it is possible, if no country is selected that the field city shows all possible cities, not restricted by countries.
    For example no country is selected and the field city shows all cities.
    or no country is selected and the field city is read only.
    The html code of dropdown list country is
    <option value="&lt;empty&gt;"><option value="Germany">Germany<option value="France">France
    Value of no selection
    &lt;empty&gt = <empty>
    If no country is selected the selected value is &lt;empty&gt or <empty>.
    I tried this:
    "dependon=Country,*=allcities,Germany=GermanyCity,France=FrenchCity" and so on.
    "dependon=Country,<empty>=allcities,Germany=GermanyCity,France=FrenchCity" and so on.
    "dependon=Country,&lt;empty&gt=allcities,Germany=GermanyCity,France=FrenchCity" and so on.
    without success
    Can some one help?
    Edited by: Dirk Wiegele on Jan 23, 2011 12:21 PM
    Edited by: Dirk Wiegele on Jan 23, 2011 12:22 PM

    Hi
    Yes, it is possible to generate an excel file in SAP. You can use any of the following FM's for the same:
    1. EXCEL_OLE_STANDARD_DAT
    2. GUI_DOWNLOAD
    3. XXL_FULL_API
    Hope it will help.
    Regards,
    Nikita

  • JSP + MYSQL question: input form value into a SQL table

    Hello,
    I am writing some JSP code to read input information from a input form to write this information into a SQL field.
    My problems are:
    - how can i pass the input form information to other jsp file ? (like Getproperty of something like this)
    - how can i move the content of any input information into a variable ? I mean something like this:
    String a1;
    username.value.of.the.input.field.in.forum_jsp = a1.in.addmessage_jsp;and then:
    int rowsAffected = stmt.executeUpdate("INSERT INTO forummessages (messagecode, " +  " usercode, " + " messagedate,  " + " message) VALUES(6,3,06/07/2007,'" + a1 + "')");------
    The SQL table looks like this:
    stmt.executeUpdate("CREATE TABLE forummessages (messagecode int AUTO_INCREMENT PRIMARY KEY, usercode int, messagedate date, message char(255) not null)");My codes are:
    forum.jsp - this one should pass the input information to addmessage.jsp
    <%@ page contentType="text/html; charset=iso-8859-2" %>
    <%@ page import="java.sql.*" %>
    <%
    Connection con = null;
    Statement stmt = null;
    try {
      Class.forName("com.mysql.jdbc.Driver");
      String url =  "jdbc:mysql://localhost:3306/mysql";
      con =  DriverManager.getConnection(url,"root", "");
      stmt = con.createStatement();
      String sql = "SELECT * FROM forummessages,users,bmwecode WHERE (forummessages.usercode=users.usercode) AND (users.bmwcode=bmwecode.bmwcode)";
      ResultSet rs = stmt.executeQuery(sql);
    %>
    <html>
    <head>
    <title>JSP + MYSQL Teszt</title>
    </head>
    <body>
    <a href="forum.jsp">Forum / Uj hozzaszolas</a>
    <a href="userlist.jsp">Felhasznalok kilistazasa</a>
    <a href="adduser.jsp">Felhasznalo hozzadasa</a>
    <a href="deletemessage.jsp">Hozzaszolas torlese</a>
    <br><br>
    <form action="addmessage.jsp" method=post">
    Felhasznalo:
    <input type="text" name="username">
    <br><br>
    Hozzaszolas:
    <input type="text" name="message">
    <br><br>
    <input type="submit" value="Uj hozzaszolas">
    <br><br>
    <table border="0">
    <tr>
    <th>messagecode</th>
    <th>user</th>
    <th>car type</th>
    <th>message</th>
    </tr>
    <%
      while(rs.next()){
    %>
    <tr>
    <td><%=rs.getInt("messagecode") %></td>
    <td><%=rs.getString("username") %></td>
    <td><%=rs.getString("bmwtype") %></td>
    <td><%=rs.getString("message") %></td>
    </tr>
    <%
      } // end while
    %>
    </table>
    </body>
    </html>
    <%
    } catch (Exception e) {
      out.println("<font color=red><h3>Error:</h3></font>" + e);
      e.printStackTrace();
    } finally {
      try {
        if (stmt!=null) {
          stmt.close();
        if (con!=null) {
          con.close();
      } catch (Exception e) {
        e.printStackTrace();
    %> ----
    addmessage.jsp
    <%@ page contentType="text/html; charset=iso-8859-2" %>
    <%@ page import="java.sql.*" %>
    <%
    Connection con = null;
    Statement stmt = null;
    try {
      Class.forName("com.mysql.jdbc.Driver");
      String url =  "jdbc:mysql://localhost:3306/mysql";
      con =  DriverManager.getConnection(url,"root", "");
      stmt = con.createStatement();
    int rowsAffected = stmt.executeUpdate("INSERT INTO forummessages (messagecode, " +  " usercode, " + " messagedate,  " + " message) VALUES(6,3,06/07/2007,'" + a1 + "')");
    } catch (Exception e) {
      out.println("<font color=red><h3>Hiba:</h3></font>" + e);
      e.printStackTrace();
    } finally {
      try {
        if (stmt!=null) {
          stmt.close();
        if (con!=null) {
          con.close();
      } catch (Exception e) {
        e.printStackTrace();
    %>
    <a href="forum.jsp">Forum / Uj hozzaszolas</a>
    <a href="userlist.jsp">Felhasznalok kilistazasa</a>
    <a href="adduser.jsp">Felhasznalo hozzadasa</a>
    <a href="deletemessage.jsp">Hozzaszolas torlese</a>
    <br><br>---
    Thank you for your help in advance.

    SELECT DISTINCT
    hou.name
    ,poh.segment1 po_num
    ,pol.line_num po_line_num
    ,poh.currency_code
    --,trunc(poh.creation_date) po_creation_date
    ,pol.cancel_flag
    ,msi.segment1 item_num
    ,pol.unit_price
    ,round(cost.item_cost,5)
    ,round((&p_rate * pol.unit_price),5) "CONVERSION"
    ,(cost.item_cost - round((&p_rate * pol.unit_price),5)) difference
    ,pov.vendor_name
    FROM
    po.po_headers_all poh
    ,po.po_lines_all pol
    ,po.po_vendors pov
    ,hr.hr_all_organization_units hou
    ,inv.mtl_system_items_b msi
    ,bom.cst_item_costs cost
    WHERE
    poh.po_header_id = pol.po_header_id
    and pov.vendor_id = poh.vendor_id
    and poh.org_id = hou.organization_id
    and hou.organization_id = :p_operating_unit
    and poh.currency_code = :p_currency
    and poh.creation_date between :po_creation_date_from and :po_creation_date_to
    and poh.type_lookup_code = 'BLANKET'
    and msi.inventory_item_id = pol.item_id
    and cost.INVENTORY_ITEM_ID = pol.ITEM_ID
    --and (cost.item_cost - pol.unit_price) <> 0
    and (cost.item_cost - round((&p_rate * pol.unit_price),5)) <> 0
    and cost.organization_id = 1
    and msi.organization_id = 1
    and cost.cost_type_id = 3 --- Pending cost type
    and nvl(upper (pol.closed_code),'OPEN') not in('CANCELLED', 'CLOSED', 'FINALLY CLOSED', 'REJECTED')
    and nvl(upper (poh.closed_code),'OPEN') not in('CANCELLED', 'CLOSED', 'FINALLY CLOSED', 'REJECTED')
    and nvl(pol.cancel_flag, 'N') = 'N'
    and &p_rate user parameter
    I want this p_rate to be passed as a user parameter.

  • Html Portlet links displaying in another portlet on the same page

    I have seen similar posts but no detailed explaination of how this is done.
    I have an html portlet with links whose content I would like to display in an inline rendering portlet on the same portal page. How can I pass the link url from the html portlet to the inline rendering portlet?
    Thanks,
    Robyn

    If your environment is fairly static, you can handle this easily.
    The link in your HTML portlet must refer to the page URL of the portal page on which the HTML portlet resides (which changes from portal page to portal page), to which you need to append the parameter that your "inline" portlet (under which I'm not sure what you mean) reads:
    <a href="http://<portal_page_url>&my_param=value">click here</a>Is this close to what you're willing to do?

  • Oracle tag in HTML Portlet

    I am trying to create a dynamic List of Values (using a Cursor) that is used in a HTML portlet. It does not seem to work. Is this possible within the ORACLE tags?
    <select name="student" style="width:137px" onChange="SubmitChildList()">
    <ORACLE>
    declare
    CURSOR get_students IS
    select A.first_name || ' ' || A.middle_name || ' ' || A.last_name stu_name, A.student_id id
    from sbase
    order by 1;
    begin
    FOR stu_loop in get_students LOOP
    htp.p('<OPTION>' || stu_loop.id);
    END LOOP;
    end;
    </ORACLE>
                                  </select>
                                  </td>

    I had the form tag already (didn't include in the questions). It doesn't seem to execute the cursor and populate the emps in the list box.
    Here is the complete HTML portlet.
              <table width="145" border="0" cellspacing="0" cellpadding="4">
              <tr><td><b><FONT class="PortletText1"> View Child Information:</font></b>
              <table width="135" border="0" cellspacing="0" cellpadding="1">
              <form method="post" action="../utilities/switchschools.asp?ci=yy" name="childInfo">
                             <tr>
                                  <td align="left" valign="bottom"><!-- Width set for sake of nav bar. -->
                                       <select name="student" style="width:137px" onChange="SubmitChildList()">
    <ORACLE>
    declare
    CURSOR get_emp IS
    select A.ename empname, A.empno id
    from emp
    order by 1;
    begin
    FOR emp_loop in get_emp LOOP
    htp.p('<option value= ' || emp_loop.id || '>';
    htp.p(emp_loop.empname || '</option>';
    END LOOP;
    end;
    </ORACLE>
                                  </select>
                                  </td>
                                  <td align="right" valign="bottom">
                                       <input type="image" title="Go" name="go" id="go" src="/images/go.gif" width="22" height="16" border="0" alt="Go" onclick="return childCheck();">
                                  </td>
                             </tr>
                             </form>
              </table>
                   </td></tr>
              </table>

  • Html portlet to display Flash  -  Problem

    Hi
    I have created a HTML Portlet ,and the html consists of one flash (swf file).
    Iam running that portlet on weblogic 9.2.
    But the flash is not displaying in the browser.
    Please Suggest
    Srinivas

    Thanks for your help. I am trying to do it but it's still not working.
    Check this out, just by glancing at the below code, do you think that flash is able to read it? I read in the help that it's only capable of a few tags. Basically I am trying to put this code into a page to display:
    <object type="application/x-shockwave-flash" width="400" height="300" data="http://vimeo.com/hubnut/?user_id=matttstubbs&color=00adef&background=000000&fullscreen=1&s lideshow=0&stream=videos&id=&server=vimeo.com">    <param name="quality" value="best" />        <param name="allowfullscreen" value="true" />        <param name="allowscriptaccess" value="always" />    <param name="scale" value="showAll" />    <param name="movie" value="http://vimeo.com/hubnut/?user_id=matttstubbs&color=00adef&background=000000&fullscreen=1&s lideshow=0&stream=videos&id=&server=vimeo.com" /></object><br /><br />I put <a href="http://vimeo.com/matttstubbs/videos">videos I create</a> on Vimeo. You can see <a href="http://vimeo.com/matttstubbs">my profile</a>.
    Thanks.
    -Mattt.

  • Pass Page 0 TextBox item value to populate SQL Report on another page.

    Hi,
    I have created one textbox and one Template Based Button on page 0.
    And i have coded (On Button Display Attributes)
    I want to pass Page 0 TextBox value into the SQL Report on Page100.
    For this i planed to pass the value entered on Page 0 (TextBox) by coping the entered value into clipboard and assign this value to a hidden textbox(P100_SEARCH), which is on page 100. so that i can pass this value to the SQL Report.
    I have coded (On Button Display Attributes) in Page 0.
    onclick="javascript:window.clipboardData.setData('Text', document.getElementById('P0_SEARCH').value);redirect('f?p=229:100:&APP_SESSION.::NO:::');"
    So its copying the entered value into clipboard and redirecting to page 100.
    But here i am facing the problem
    how to assign the save clipboard value into Hidden TextBox(P100_SEARCH) on page 100, so that data is
    populated on page100 according to the enterd value from page 0.
    Please help me . Its urgent.
    Thanks
    --PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi,
    I think it is the button templates that are causing the problem as they a normally designed to submit the page and you need to do a redirect.
    I would suggest doing the following:
    1 - Go to Shared Components, Templates
    2 - Click Create
    3 - Select Button
    4 - Select "As a Copy of an Existing Template"
    5 - Click Next until you get to a list of existing button templates
    6 - Change the name of the "Copy of ..." for the template that you are using (to something like "Button for javascript") and select Yes in Copy?
    7 - Click Copy Button Template
    8 - When it has been created, you are returned to the templates list - click the edit link for your new button
    9 - Update the "Template" setting. How you change this depends on your Theme and the Button Template you are using. But, as an example, in Theme 19 and using the Button button template, change:
    &lt;input onclick="#LINK#" class="t19Button" value="#LABEL#" type="button" /&gt;to:
    &lt;input #BUTTON_ATTRIBUTES# class="t19Button" value="#LABEL#" type="button" /&gt;So, the onclick="#LINK#" setting is removed and the #BUTTON_ATTRIBUTES# one is added in instead.
    Now, go back to Page 0 and change your button to use this new template.
    Change the Button Attributes setting to:
    href="javascript:void(0);" onclick="javascript:redirect('f?p=&APP_ID.:100:&SESSION.::NO::P100_SEARCH:' + $v('P0_SEARCH'));"and Apply Changes
    Now try your page again
    Andy

  • Oracle PL/SQL & HTML developers with Oracle Portal experience for UK

    Dear Oracle Portal Developer ,
    This is Rajesh Krishnan from Athreya Consulting Services. My
    firm is into executive search and recruitment targetted at
    Ebusiness and IT Consulting firms . One of my clients which is a
    53 million US$ company ( projected at 85 mn US $ for 2001) is
    currently recruiting for following positions based at UK :
    Oracle Portal Developers for UK : 3- 6 months contract at UK
    (extendable) for Oracle Portal developers with 3-4 years
    experience on PL/SQL & HTML & hands-on experience on Oracle
    Portal. After completion of the assignment at UK , developers
    (holding Indian citizenship) will have the option of joining the
    development centers in India at Mumbai / Bangalore.
    Brief profile :
    Consistent delivery on their commitment to providing the best
    value has been key to their explosive growth since incorporation
    in June 1996. They received awards for the fastest growing
    private company in Pittsburgh, at the Pittsburgh Business Times -
    1999 Pittsburgh 100 Awards, and for the Fastest growing
    technology company in Western Pennsylvania ($ 10-25 M category),
    at the Pittsburgh Technology Council's 1999 Pittsburgh
    Technology 50 Awards. Their headcount as on December 2000 stood
    at 1050 .They have been growing at a scorching pace; doubling
    their turnover consistently for the past three years.
    Interested members may send their resumes across at
    [email protected]
    Warm Regards,
    Rajesh Krishnan,
    Athreya Consulting Services.
    Email: [email protected]

    Please do not use this forum for advertising employment or
    anything else. There are other vehicles that are more
    appropriate for this purpose.
    Thanks,
    Jerry

  • Conditional display HTML Portlet

    Hi all, how can I conditionally display HTML portlet? I have a couple of html portlets on the page, but I want to use the page para to control the display of them. For Java/plsql portlets, it's fine. I don't know how to do that for html portlets. Any advice or suggestion is appreciated.

    we want to embed the part of html in to portlet at run time. portlet has a single navigation parameter defined (for run time)
    so for example, i write a jsr portlet and then I drag the portlet from resource catalog (composer) on to the webcenter page during run time. and then we would pass
    www.xyz.com/index.html as a value of navigation parameter to the portlet. and portlet would consume this index.html.
    problem is what is the attribute within portlet which would get binded and finally consume the index.html at run time ? is it
    src = .......... ???
    is it file = ......... ??
    is it url = ........... ??
    what is it ?
    we are not using UCM so entire Content Presenter taskflows is useless for us
    if it is say src = ... attribute, then we were not able to PASS the index.html TO src attribute as Navig Param at run time.
    remember, even if we able to pass index.html to portlet .............. then we do not want portlet to show index.html URL but rather would want to show the content of index.html (which is "Hello There, Greetings from the server") to show.

  • Html portlet

    hi,
    on the Home Page of our site, in the area of the news(html portlet), the message differs from one user to another; all these messages were put on line at different moments of life of the site but were replaced. it seems that the message depends on the date of inscription of a user.
    how removed these messages already creates?
    please answer me quickly.
    null

    You need to get to the customize page without going through the link on the portlet header. The easiest way to do this is to copy the customize link location while logged in as another user (such as the portal admin). Then log in as the end user, paste this link in your browser and you can change the customization.
    Hope this helps,
    Hsiu

  • Remove border from HTML portlet

    Hii,
    When i am adding HTML portlet then a border is coming automatically. How to remove this border.

    Hi,
    The Rendering of the Portlet depends on the Region too - you can have a look at the "Edit Defaults" ( the Pencil Icon ) link for the Region where the Portlet is located. You can uncheck the " Show Portlet Borders " ( or, even " Show Portlet Headers " ).
    Regards,
    Sandeep

Maybe you are looking for

  • 5.0 removing images

    I have several previously created Pages files with images (pictures) in the header section.  When I view the "quick view" of the file the image is there.  When I open the file in the new Pages 5, the image is missing.  If I edit anything in the file

  • Photoshop files won't open in an way but inside Photoshop

    I just set up a new Intel Mac Pro and installed Photoshop CS4 on it. Now when I try to open Photoshop files by just clicking on them none of them will open in anything but Preview. The only way I can get any to open is through the "file - open" windo

  • How do I save tabs to a folder is there a shortcut?

    Hi, Suppose you have 4 web pages open, each in a separate tab in Safari. You have all these tabs open and you would like to put all of them in a folder. Is there a shortcut or technique - besides dragging each url individually into the bookmark manag

  • Apple tv video problem

    Just bought atv yesterday and synced content overnight. Using HDMI connection to tv. My cable box is HDMI1 and atv is HDMI2. When I tried to watch something today, the picture kept flipping between "no signal" and the atv menu. I finally had to reboo

  • How to hard reset an iphone 4s

    i HAD CHANGED PHONES TO A GALAXY NOTE 3 AND KEEP MY IPHONE 4S AS BACKUP. I RECENTLY DROPPED MY NOTE 3 AND BROKE IT. SO NOW I AM HAVING TO GO BACK TO THE IPHONE TEMPORARILY. HOWEVER I CANT ACCESS IT BECAUSE I HAVE FORGOTTEN THE PASSCODE. IS THERE A WA