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;

Similar Messages

  • 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;

  • Pass a value from a PL/SQL function to a javascript (html header) ? ?

    Hey Guys,
    Have a question regarding how to pass a value from a PL/SQL function to a javascript in the HTML Header.
    I have created a PL/SQL function in my database, which does looping.
    The reason for this is:  On my apex page when the user selects a code, it should display(or highlight buttons) the different project id's present for that particular code.
    example= code 1
    has project id's = 5, 6, 7
    code 2
    has project id's = 7,8
    Thank you for your Help or Suggestions
    Jesh
    The PL/SQL function :
    CREATE OR REPLACE FUNCTION contact_details(ACT_CODE1 IN NUMBER) RETURN VARCHAR2 IS
    Project_codes varchar2(10);
    CURSOR contact_cur IS
    SELECT ACT_CODE,PROJECT_ID
    FROM ACTASQ.ASQ_CONTACT where ACT_CODE = ACT_CODE1;
    currec contact_cur%rowtype;
    NAME: contact_details
    PURPOSE:
    REVISIONS:
    Ver Date Author Description
    1.0 6/25/2009 1. Created this function.
    BEGIN
    FOR currec in contact_cur LOOP
         dbms_output.put_line(currec.PROJECT_ID || '|');
         Project_codes := currec.PROJECT_ID|| '|' ||Project_codes;
    END LOOP;
    RETURN Project_codes;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    NULL;
    WHEN OTHERS THEN
    -- Consider logging the error and then re-raise
    RAISE;
    END contact_details;
    /

    Jesh:
    I have made the following modifications to your app to get it to work as I thing you need it to.
    1) Changed the source for the HTML Buttons Region(note use of id vs name for the Buttons)
    <script>
    function hilitebtn(val) {
    //gray buttons
    $x('graduate').style.backgroundColor='gray'
    $x('distance').style.backgroundColor='gray'
    $x('career').style.backgroundColor='gray'
    $x('photo').style.backgroundColor='gray'
    //AJAX call to get project-ids
    var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=GETPROJECTS',0);
    get.addParam('x01',val)
    gReturn = get.get();
    var arr=gReturn.split(':');  //dump into array
    get = null;
    for (i=0;i<arr.length;i++) {
    // alert('val=' + arr);
    if ( arr[i]==5)
    $x('graduate').style.backgroundColor='red';
    if ( arr[i]==6)
    $x('distance').style.backgroundColor='red';
    if ( arr[i]==7)
    $x('career').style.backgroundColor='red';
    if ( arr[i]==8)
    $x('photo').style.backgroundColor='red';
    </script>
    <table cellpadding='0' cellspacing='0' border='0'>
    <tr><td>
    <input type='button' id='graduate' value='Graduate'>
    </td>
    <td>
    <input type='button' id='distance' value='Distance'>
    </td>
    <td>
    <input type='button' id='career' value='Career/Tech'>
    </td>
    <td>
    <input type='button' id='photo' value='Photos'>
    </td>
    </tr></table>
    2) Defined the application process  GETPROJECTS as DECLARE
    IDS varchar2(1000);
    l_act_code varchar2(100) :=4;
    begin
    IDS:='';
    l_act_code := wwv_flow.g_x01;
    for x in(
    SELECT ACT_CODE,PROJECT_ID
    FROM ASQ_CONTACT
    where ACT_CODE = l_act_code)
    LOOP
    IDS := IDS || X.PROJECT_ID|| ':' ;
    END LOOP;
    HTP.PRN(IDS);
    END;
    3) Changed the 'onchange' event-handler on p1_act_code to be 'onchange=hilitebtn(this.value)'
    4) Added the JS to the HTML Page Footer <script>
    hilitebtn($v('P1_ACT_CODE'));
    </SCRIPT>

  • 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

  • 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

  • How to read .html file and store values into oracle table  from html file

    Hi all ,
    How to read .html file and store values into oracle table from html file using pl/sql
    Please Help.....

    Hi,
    Kindly find following sample html code ,i want to store every value in different column in database .
    <html><body><p/>
    <div style="position:absolute;top:47px;left:37px;font-family:'Times New Roman';font-size:10pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:47px;left:680px;font-family:'Times New Roman';font-size:10pt;white-space:nowrap;">  
    </div>
    <div style="position:absolute;top:94px;left:151px;font-family:'Times New Roman';font-size:1pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:1080px;left:115px;font-family:'Times New Roman';font-size:8pt;white-space:nowrap;">4497743
    </div>
    <div style="position:absolute;top:1079px;left:442px;font-family:'Times New Roman';font-size:9pt;white-space:nowrap;"> Miclyn Express Offshore Pre-Quotation Disclosure
    </div>
    <div style="position:absolute;top:1079px;left:680px;font-family:'Times New Roman';font-size:9pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:1079px;left:723px;font-family:'Times New Roman';font-size:9pt;white-space:nowrap;">page 5
    </div>
    <div style="position:absolute;top:1083px;left:151px;font-family:'Times New Roman';font-size:1pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:107px;left:151px;font-family:'Times New Roman';font-size:10pt;white-space:nowrap;"><b>Attachment 2 ¿ indicative statement of 20 largest shareholders </b>
    </div>
    <div style="position:absolute;top:139px;left:262px;font-family:'Times New Roman';font-size:10pt;white-space:nowrap;"><b>Name </b>
    </div>
    <div style="position:absolute;top:131px;left:415px;font-family:'Times New Roman';font-size:10pt;white-space:nowrap;"><b>Number of Shares </b>
    </div>
    <div style="position:absolute;top:147px;left:458px;font-family:'Times New Roman';font-size:10pt;white-space:nowrap;"><b>Held </b>
    </div>
    <div style="position:absolute;top:131px;left:560px;font-family:'Times New Roman';font-size:10pt;white-space:nowrap;"><b>Percentage of </b>
    </div>
    <div style="position:absolute;top:147px;left:567px;font-family:'Times New Roman';font-size:10pt;white-space:nowrap;"><b>shares held </b>
    </div>
    <div style="position:absolute;top:179px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Macquarie Capital Group Limited 92,378,000
    </div>
    <div style="position:absolute;top:179px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:179px;left:618px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">34.00%r
    </div>
    <div style="position:absolute;top:179px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:212px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">HSBC Custody Nominees (Australia)
    </div>
    <div style="position:absolute;top:227px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Limited
    </div>
    <div style="position:absolute;top:220px;left:464px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">36,458,220
    </div>
    <div style="position:absolute;top:220px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:220px;left:618px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">13.42%
    </div>
    <div style="position:absolute;top:220px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:260px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Ray Rider Limited 27,170,000
    </div>
    <div style="position:absolute;top:260px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:260px;left:618px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">10.00%
    </div>
    <div style="position:absolute;top:260px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:300px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:300px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">7.96%
    </div>
    <div style="position:absolute;top:300px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:333px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">National Australia Bank Custodian
    </div>
    <div style="position:absolute;top:348px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Services
    </div>
    <div style="position:absolute;top:341px;left:464px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">12,866,550
    </div>
    <div style="position:absolute;top:341px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:341px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">4.74%
    </div>
    <div style="position:absolute;top:341px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:381px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Citigroup Nominees Pty Ltd 6,942,541
    </div>
    <div style="position:absolute;top:381px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:381px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">2.56%r
    </div>
    <div style="position:absolute;top:381px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:421px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:421px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">2.14%r
    </div>
    <div style="position:absolute;top:421px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:462px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">UBS Securities Australia Ltd 4,806,760
    </div>
    <div style="position:absolute;top:462px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:462px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">1.77%
    </div>
    <div style="position:absolute;top:462px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:494px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Merrill Lynch Equities (Australia)
    </div>
    <div style="position:absolute;top:510px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Limited
    </div>
    <div style="position:absolute;top:502px;left:472px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">4,325,000
    </div>
    <div style="position:absolute;top:502px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:502px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">1.59%
    </div>
    <div style="position:absolute;top:502px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:550px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Equities Ltd
    </div>
    <div style="position:absolute;top:542px;left:472px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">4,150,000
    </div>
    <div style="position:absolute;top:542px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:542px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">1.53%
    </div>
    <div style="position:absolute;top:542px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:575px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Bond Street Custodians Limited - A/C
    </div>
    <div style="position:absolute;top:590px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Institutional
    </div>
    <div style="position:absolute;top:583px;left:472px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">2,750,000
    </div>
    <div style="position:absolute;top:583px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:583px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">1.01%
    </div>
    <div style="position:absolute;top:583px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:623px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Cogent Investment Operations Pty Ltd 2,599,321
    </div>
    <div style="position:absolute;top:623px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:623px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">0.96%
    </div>
    <div style="position:absolute;top:623px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:663px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Skeet Nominees Pty Ltd 2,276,736
    </div>
    <div style="position:absolute;top:663px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:663px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">0.84%
    </div>
    <div style="position:absolute;top:663px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:704px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Diederik de Boer 1,917,561
    </div>
    <div style="position:absolute;top:704px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:704px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">0.71%
    </div>
    <div style="position:absolute;top:704px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:744px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Ecapital Nominees Pty Limited 1,594,736
    </div>
    <div style="position:absolute;top:744px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:744px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">0.59%
    </div>
    <div style="position:absolute;top:744px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:777px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Neweconomy Com Au Nominees Pty 9
    </div>
    <div style="position:absolute;top:792px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Limited &#60;900 Account&#62;
    </div>
    <div style="position:absolute;top:784px;left:472px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">1,594,7360
    </div>
    <div style="position:absolute;top:784px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:784px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">0.59%
    </div>
    <div style="position:absolute;top:784px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:825px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Sonray Capital Markets Pty Ltd 1,236,842
    </div>
    <div style="position:absolute;top:825px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:825px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">0.46%
    </div>
    <div style="position:absolute;top:825px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:865px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Argo Investments Limited 1,050,000
    </div>
    <div style="position:absolute;top:865px;left:531px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:865px;left:625px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">0.39%
    </div>
    <div style="position:absolute;top:865px;left:663px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;"> 
    </div>
    <div style="position:absolute;top:905px;left:161px;font-family:'Times New Roman';font-size:11pt;white-space:nowrap;">Idameno (No 79) Nominees Pty Limited 724,210</div>
    <div style="position:absolute;top:1103px;">
    </body></html>
    Thanks..........................

  • 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.

  • 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

  • Unable to capture the parameter values from a PL/SQL procedure

    hi.
    i'm trying to capture the parameter values of a PL/SQL procedure by calling inside a anonymous block but i'm getting a "reference to uninitialized collection error" ORA-06531.
    Please help me regarding.
    i'm using following block for calling the procedure.
    declare
    err_cd varchar2(1000);
    err_txt VARCHAR2(5000);
    no_of_recs number;
    out_sign_tab search_sign_tab_type:=search_sign_tab_type(search_sign_type(NULL,NULL,NULL,NULL,NULL));
    cntr_var number:=0;
    begin
         rt843pq('DWS','3000552485',out_sign_tab,no_of_recs,err_cd,err_txt);
         dbms_output.put_line('The error is ' ||err_cd);
         dbms_output.put_line('The error is ' ||err_txt);
         dbms_output.put_line('The cntr is ' ||cntr_var);
         for incr in 1 .. OUT_SIGN_TAB.count
         loop
         cntr_var := cntr_var + 1 ;
    Dbms_output.put_line(OUT_SIGN_TAB(incr).ref_no||','||OUT_SIGN_TAB(incr).ciref_no||','||OUT_SIGN_TAB(incr).ac_no||','||OUT_SIGN_TAB(incr).txn_type||','||OUT_SIGN_TAB(incr).objid);
    end loop;
    end;
    Error is thrown on "for incr in 1 .. OUT_SIGN_TAB.count" this line
    Following is some related information.
    the 3rd parameter of the procedure is a out parameter. it is a type of a PL/SQL table (SEARCH_SIGN_TAB_TYPE) which is available in database as follows.
    TYPE "SEARCH_SIGN_TAB_TYPE" IS TABLE OF SEARCH_SIGN_TYPE
    TYPE "SEARCH_SIGN_TYPE" AS OBJECT
    (ref_no VARCHAR2(22),
    ciref_no VARCHAR2(352),
    ac_no VARCHAR2(22),
    txn_type VARCHAR2(301),
    objid VARCHAR2(1024))............

    We don't have your rt843pq procedure, but when commenting that line out, everything works:
    SQL> create TYPE "SEARCH_SIGN_TYPE" AS OBJECT
      2  (ref_no VARCHAR2(22),
      3  ciref_no VARCHAR2(352),
      4  ac_no VARCHAR2(22),
      5  txn_type VARCHAR2(301),
      6  objid VARCHAR2(1024))
      7  /
    Type is aangemaakt.
    SQL> create type "SEARCH_SIGN_TAB_TYPE" IS TABLE OF SEARCH_SIGN_TYPE
      2  /
    Type is aangemaakt.
    SQL> declare
      2    err_cd varchar2(1000);
      3    err_txt VARCHAR2(5000);
      4    no_of_recs number;
      5    out_sign_tab search_sign_tab_type:=search_sign_tab_type(search_sign_type(NULL,NULL,NULL,NULL,NULL));
      6    cntr_var number:=0;
      7  begin
      8    -- rt843pq('DWS','3000552485',out_sign_tab,no_of_recs,err_cd,err_txt);
      9    dbms_output.put_line('The error is ' ||err_cd);
    10    dbms_output.put_line('The error is ' ||err_txt);
    11    dbms_output.put_line('The cntr is ' ||cntr_var);
    12    for incr in 1 .. OUT_SIGN_TAB.count
    13    loop
    14      cntr_var := cntr_var + 1 ;
    15      Dbms_output.put_line(OUT_SIGN_TAB(incr).ref_no||','||OUT_SIGN_TAB(incr).ciref_no||','||OUT_SIGN_TAB(incr).ac_no||','||OUT_SIGN
    TAB(incr).txntype||','||OUT_SIGN_TAB(incr).objid);
    16    end loop;
    17  end;
    18  /
    The error is
    The error is
    The cntr is 0
    PL/SQL-procedure is geslaagd.Regards,
    Rob.

Maybe you are looking for

  • How can I add credit to my Apple ID?

    I have a free iCloud account and now I want to charge it with more credits but how?

  • How to create PDF Merging Template with Buttons & javascript?

    I am trying to create a PDF template that has buttons that request a file or email be inserted as you progress through the document. There will be a drop down menu that has options for different types of "customers", each type of customer will show a

  • I tunes wont run and quicktime gives me an error help please!

    So, iTunes was running great a couple days ago and now all of a sudden everytime i try and run it it gives me this pop up that says " iTunes has encountered a probelm and needs to close. and asks me to send error report or dont send. I tried uninstal

  • How many pages can my iphoto photo album be?

    My photo album is freezing me out at a certain number of pages.  I think that perhaps I can only have 100 pages per photo album.  My album is not, yet, 100 pages.  But, I am being prevented from adding more pages.  AND, I would like to have more than

  • LabView 8.6 Software installation error code -32

    Hi, I have at this time Labview 8.5 on my computer and I'm trying to install 8.6 upgrade from DVDs. When the installation is beginning, I have the following error: Error: A file, directory, or other piece of data could not be found (Error code -32).