How to reference HTML DB Environment Preferences

Hi,
In various applications I have emails that are sent to users from the HTMLDB "administrator"... Right now the email address is statically located in my pl/sql procedures.
I'm wondering if I can set the admin email address as a HTMLDB environment Preference and reference in my functions?
Thanks,
Marty

Marty - Doesn't look like it. This came up recently: Cannot get the value of SMTP_HOST_ADDRESS
Scott

Similar Messages

  • How to reference html form element in javascript ?

    Dear all,
    My DPK portlet is like this:
    I created a html form within it there a several textfields, a hidden field and a SUBMIT button.
    The application will call itself to insert a new record to database table on pressing the SUBMIT button.
    My problem is that since all the form textfields and the hidden field ara all the qualified names, and I want to set the hidden field to some value, say "ADD" on the onsubmit event in the form. How can I reference the hidden field in javascript ?
    Or can you suggest another strategy to do that ?
    Many thanks
    George (HK)
    Here are the code fragment:
    String portletParamSubmit = "mSubmit";
    String portletParamTitle = "mTitle";
    String portletParamURL = "mURL";
    String portletParamAction = "mAction";
    //Fully qualified URL.
    String fSubmit = HttpPortletRendererUtil.portletParameter(request, portletParamSubmit);
    String formName = UrlUtils.htmlFormName(pReq, null);
    String fTitle = HttpPortletRendererUtil.portletParameter(request, portletParamTitle);
    String fURL = HttpPortletRendererUtil.portletParameter(request, portletParamURL);
    String fAction = HttpPortletRendererUtil.portletParameter(request, portletParamAction);
    String vl_Title = "";
    String vl_URL = "";
    String vl_Action = "";
    String vl_result = "";
    if( pReq.getQualifiedParameter(portletParamAction) == "ADD")
    vl_Title = pReq.getQualifiedParameter(portletParamTitle);
    vl_URL = pReq.getQualifiedParameter(portletParamURL);
    //Add News.
    try{
    CallableStatement cs_2 = conn_erp03.prepareCall("{call XXCT_PORTAL_NEWS_PKG.P_ADD_NEWS(?,?,?,?,?,?)}");
    cs_2.setString(1, "ADD");
    cs_2.setString(2, pReq.getUser().getName());
    cs_2.setString(5, vl_Title);
    cs_2.setString(6, vl_URL);
    cs_2.registerOutParameter(10,Types.VARCHAR);
    cs_2.execute();
    vl_result = cs_2.getString(10);
    cs_2.close();
    catch (SQLException se) {
    sb.append("Query: SQL Exception: " + se.toString());
    System.out.println(sb);
    %>
    <head>
    <script language = "Javascript">
    <!--
    function SetAction() {
    document.<NAME THE OF HIDDEN FIELD>.value = 'ADD'; <====How to refer it ?
    return 1;
    // -->
    </script>
    </head>
    <body>
    <form name="<%=formName%>" method= "POST" action="<%=UrlUtils.htmlFormActionLink(pReq, UrlUtils.PAGE_LINK)%>" onSubmit="return SetAction()">
    <%= UrlUtils.htmlFormHiddenFields(pReq, UrlUtils.PAGE_LINK, formName)%>
    <table>
    <tr>
    <td>Title</td>
    <td><input type="text" length=100 name="<%=fTitle%>"></td>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td>URL</td>
    <td><input type="text" name="<%=fURL%>"></td>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td><INPUT type="submit" name="mysubmit" value="ADD NEWS"></td>
    <td><input type="hidden" name="<%=fAction%>"></td>
    <td> </td>
    <td> </td>
    </tr>
    </table>
    </body>

    hi Neeraj Sidhaye,
    After trying your suggest codings,
    I come to the problem of null pointer exception message captured in the application log file as:
    06/08/11 11:48:57 Prj_News: [instance=212602_PORTLET_NEWS_49519249, id=79187977878,4] ERROR: AbstractResourceRenderer.renderBody - recieved ServletException. Root cause is
    java.lang.NullPointerException
    What's wrong ?
    George (HK)
    Here is my coding:
    <%@page contentType="text/html; charset=Big5"
    import="javax.naming.*"
    import="javax.sql.*"
    import="java.sql.*"
    import="oracle.jdbc.*"
    import="java.sql.Date"
    import="java.util.*, oracle.portal.provider.v2.*"
    import="oracle.portal.provider.v2.http.HttpCommonConstants"
    import="oracle.portal.provider.v2.render.PortletRendererUtil"
    import="oracle.portal.provider.v2.render.PortletRenderRequest"
    import="oracle.portal.provider.v2.render.http.HttpPortletRendererUtil"
    import="oracle.portal.provider.v2.url.UrlUtils"
    %>
    <%
    StringBuffer sb = new StringBuffer();
    PortletRenderRequest pReq = (PortletRenderRequest)request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
    %>
    <%
    //Database connection.
    InitialContext ic = new InitialContext();
    DataSource ds_erp03 = null;
    Connection conn_erp03 = null;
    try {     
    ds_erp03 = (DataSource)ic.lookup("jdbc/ERP03_DS");
    conn_erp03 = ds_erp03.getConnection();
    catch (SQLException se) {
    sb.append("Connection: SQL Exception: " + se.toString());
    System.out.println(sb);
    catch (NamingException ne) {
    sb.append("Connection: Naming Exception: " + ne.toString());
    System.out.println(sb);
    %>
    <%
    //Self defined names.
    String portletParamSubmit = "mSubmit";
    String portletParamMainCat = "mMainCat";
    String portletParamSubCat = "mSubCat";
    String portletParamTitle = "mTitle";
    String portletParamURL = "mURL";
    String portletParamDescription = "mDescription";
    String portletParamEffDateFm = "mEffDateFm";
    String portletParamEffDateTo = "mEffDateTo";
    String portletParamAction = "myAction";
    //Fully qualified URL.
    String fSubmit = HttpPortletRendererUtil.portletParameter(request, portletParamSubmit);
    String formName = UrlUtils.htmlFormName(pReq, null);
    String fMainCat = HttpPortletRendererUtil.portletParameter(request, portletParamMainCat);
    String fSubCat = HttpPortletRendererUtil.portletParameter(request, portletParamSubCat);
    String fTitle = HttpPortletRendererUtil.portletParameter(request, portletParamTitle);
    String fURL = HttpPortletRendererUtil.portletParameter(request, portletParamURL);
    String fDescription = HttpPortletRendererUtil.portletParameter(request, portletParamDescription);
    String fEffDateFm = HttpPortletRendererUtil.portletParameter(request, portletParamEffDateFm);
    String fEffDateTo = HttpPortletRendererUtil.portletParameter(request, portletParamEffDateTo);
    // String fAction = HttpPortletRendererUtil.portletParameter(request, portletParamAction);
    String fAction="myAction";
    String vl_MainCat = "";
    String vl_SubCat = "";
    String vl_Title = "";
    String vl_URL = "";
    String vl_Description = "";
    String vl_EffDateFm = "";
    String vl_EffDateTo = "";
    String vl_Action = "";
    String vl_result = "";
    %>
    <%
    if( pReq.getQualifiedParameter(portletParamAction).equals("ADD")) <= This line cause the null pointer exception <<<<<<<<
    vl_MainCat = pReq.getQualifiedParameter(portletParamMainCat);
    vl_SubCat = pReq.getQualifiedParameter(portletParamSubCat);
    vl_Title = pReq.getQualifiedParameter(portletParamTitle);
    vl_URL = pReq.getQualifiedParameter(portletParamURL);
    vl_Description = pReq.getQualifiedParameter(portletParamDescription);
    vl_EffDateFm = pReq.getQualifiedParameter(portletParamEffDateFm);
    vl_EffDateTo = pReq.getQualifiedParameter(portletParamEffDateTo);
    //Add News.
    try{
    CallableStatement cs_2 = conn_erp03.prepareCall("{call XXCT_PORTAL_NEWS_PKG.P_ADD_NEWS(?,?,?,?,?,?,?,?,?,?)}");
    cs_2.setString(1, "ADD");
    cs_2.setString(2, pReq.getUser().getName());
    cs_2.setString(3, pReq.getQualifiedParameter(portletParamMainCat));
    cs_2.setString(4, pReq.getQualifiedParameter(portletParamSubCat));
    cs_2.setString(5, pReq.getQualifiedParameter(portletParamTitle));
    cs_2.setString(6, pReq.getQualifiedParameter(portletParamURL));
    cs_2.setString(7, pReq.getQualifiedParameter(portletParamDescription));
    cs_2.setString(8, pReq.getQualifiedParameter(portletParamEffDateFm));
    cs_2.setString(9, pReq.getQualifiedParameter(portletParamEffDateTo));
    cs_2.registerOutParameter(10,Types.VARCHAR);
    cs_2.execute();
    vl_result = cs_2.getString(10);
    cs_2.close();
    catch (SQLException se) {
    sb.append("Query: SQL Exception: " + se.toString());
    System.out.println(sb);
    %>
    <SCRIPT SRC="<%=HttpPortletRendererUtil.absoluteLink(pReq,"clock.js")%>"></SCRIPT>
    <LINK REL=stylesheet TYPE="text/css" HREF="<%=HttpPortletRendererUtil.absoluteLink(pReq,"tables_style.css")%>">
    <head>
    <script language = "Javascript">
    <!--
    function doSubmit(myAction)
    // alert(myAction);
    if(myAction == 'ADD')
    document.forms[0].<%=fAction%>.value="ADD";
    else if(myAction == 'DELETE')
    document.forms[0].<%=fAction%>.value="DELETE";
    document.forms[0].submit();
    // -->
    </script>
    </head>
    <body>
    <form name="<%=formName%>" method= "POST" action="<%=UrlUtils.htmlFormActionLink(pReq, UrlUtils.PAGE_LINK)%>">
    <%= UrlUtils.htmlFormHiddenFields(pReq, UrlUtils.PAGE_LINK, formName)%>
    <table>
    <tr>
    <td style="color:#fff;font-family:'Arial';font-size:14px;text-align:right;">Page</td>
    <td>
    <select name="<%=fMainCat%>">
    <option value="X">-- Please select --
    <option value="FAE">FAE
    <option value="PM">Product Marketing
    <option value="RD">R&D
    <option value="BU">Business Unit
    </select>
    </td>
    <td style="color:#fff;font-family:'Arial';font-size:14px;text-align:right;">Region</td>
    <td>
    <select name="<%=fSubCat%>">
    <option value="X">-- Please select --
    <option value="1">Region 1
    <option value="2">Region 2
    <option value="3">Region 3
    <option value="4">Region 4
    </select>
    </td>
    </tr>
    <tr>
    <td style="color:#fff;font-family:'Arial';font-size:14px;text-align:right;">Date From</td>
    <td><input type="text" size="6" maxlength="10" name="<%=fEffDateFm%>"></td>
    <td style="color:#fff;font-family:'Arial';font-size:14px;text-align:right;">Date To</td>
    <td><input type="text" size="6" maxlength="10" name="<%=fEffDateTo%>"></td>
    </tr>
    </table>
    <table>
    <tr>
    <td style="color:#fff;font-family:'Arial';font-size:14px;text-align:right;">Title</td>
    <td><input type="text" size="100" maxlength="100" name="<%=fTitle%>"></td>
    </tr>
    <tr>
    <td style="color:#fff;font-family:'Arial';font-size:14px;text-align:right;">URL</td>
    <td><input type="text" size="100" maxlength="200" name="<%=fURL%>"></td>
    </tr>
    <tr>
    <td style="color:#fff;font-family:'Arial';font-size:14px;text-align:right;">Description</td>
    <td><textarea id="description" rows="5" cols="76" maxlength="500" name="<%=fDescription%>"></textarea></td>
    </tr>
    <tr>
    <td><input type="hidden" id="<%=fAction%>" name="<%=HttpPortletRendererUtil.portletParameter(request, portletParamAction)%>"></td>
    <td><input type=button value="Add" onClick="doSubmit('ADD')"></td>
    </tr>
    </table>
    </form>
    </body>

  • Custom icon strip - how to reference it in the HHC?

    I could not get the custom icon strip to work for me. I think that I understood the overall concept but I do not know how to reference the bmp file in the HHC.Ricks Tips and Tricks file only states "make the reference inside the HHC file". Where exactly do I place the <param name="..." value="C:..BMP"> reference?
    Perhaps there is an example?

    Rick,
    thanks for your efforts despite my ignorance! My HHC file does not look like that, it has a different structure without an HTML list. After some fiddeling I got it to work now, even though I still did not find out why my TOC structure does not match yours (the binary TOC option is not active).
    Instead of using the <param name="ImageList" value="C:tocimages.bmp"> line, I inserted the reference into the properties tag. My HHC looks like this now and it works:
    <?xml version="1.0" encoding="utf-8"?>
    <toc version="1.0">
    <properties imagelist="C:tocimages.bmp">
    </properties>
    <item name=".." link="...html">
    (here the TOC items follow)
    </item>
    </toc>

  • How to reference the WindowListener in "class implements WindowListener"

    i need to remove a WindowListener but i dont know how to
    reference Listeners implented by classes.
    Thanks for any help in advance!
    public class MyClass implements WindowListener{
    public MyClass(){
    frame.addWindowListener(this);
    public static void RemoveIt(){
    frame.removeWindowListener( ??? )
    JFrame frame = new JFrame();
    }

    Looks like im just going to have to implement this
    all much differently -
    and maybe in a less lazy manner, haha.Hi! Sorry for my late reply.
    Let me help you a little;
    ===============================================================
    1.) You can create a class that will be shared by each of your frame.
    ===============================================================
    The shared class will contain the following:
    1.) The number of your alive frame.
    2.) The information of your alive frame. ie. name, if it is the main, etc.
    Then your frame should look at that shared class so that it will know when to
    invoke System.exit(int);
    ===============================================================
    2.) You can use java.util.prefs.Preferences
    ===============================================================
    Use preference to put and get information about your frame.
    ===============================================================
    3.) You can extends my class below.
    ===============================================================
    NOTE: This example may or may not help the OP. I'm sorry.
    * @(#)AbstractExitableJFrame.java     05/06/25
    * 2005 Tunay na pag-aari ni Ronillo Ang.
    package com.yahoo.ronilloang.cswingx;
    import java.awt.GraphicsConfiguration;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowFocusListener;
    import java.awt.event.WindowListener;
    import java.awt.event.WindowStateListener;
    import javax.swing.JFrame;
    * Use this at your own risks.
    * @version     1.4.2
    * @author     Ronillo Ang
    public abstract class AbstractExitableJFrame extends JFrame implements WindowFocusListener, WindowListener, WindowStateListener{
         private static int frameCount = 0; // how many are we?
          * @see          javax.swing.JFrame constructor.
         public AbstractExitableJFrame(){
              super();
              ++frameCount;
          * @see          javax.swing.JFrame constructor.
         public AbstractExitableJFrame(GraphicsConfiguration gc){
              super(gc);
              ++frameCount;
          * @see          javax.swing.JFrame constructor.
         public AbstractExitableJFrame(String title){
              super(title);
              ++frameCount;
          * @see          javax.swing.JFrame constructor.
         public AbstractExitableJFrame(String title, GraphicsConfiguration gc){
              super(title, gc);
              ++frameCount;
          * Called by the constructors to init the <code>AbstractExitableJFrame</code> properly.
         protected final void frameInit(){
              super.frameInit();
              addWindowFocusListener(this);
              addWindowListener(this);
              addWindowStateListener(this);
         public final void windowGainedFocus(WindowEvent we){
              exitableJFrameGainedFocus(we);
         public final void windowLostFocus(WindowEvent we){
              exitableJFrameLostFocus(we);
         public final void windowActivated(WindowEvent we){
              exitableJFrameActivated(we);
         public final void windowClosed(WindowEvent we){
              exitableJFrameClosed(we);
              --frameCount;
              if(frameCount <= 0 || isMain())
                   System.exit(0);
         public final void windowClosing(WindowEvent we){
              exitableJFrameClosing(we);
         public final void windowDeactivated(WindowEvent we){
              exitableJFrameDeactivated(we);
         public final void windowDeiconified(WindowEvent we){
              exitableJFrameDeiconified(we);
         public final void windowIconified(WindowEvent we){
              exitableJFrameIconified(we);
         public final void windowOpened(WindowEvent we){
              exitableJFrameOpened(we);
         public final void windowStateChanged(WindowEvent we){
              exitableJFrameStateChanged(we);
          * Invoked when {@link #windowGainedFocus(WindowEvent)} is invoked.
         public abstract void exitableJFrameGainedFocus(WindowEvent we);
          * Invoked when {@link #windowLostFocus(WindowEvent)} is invoked.
         public abstract void exitableJFrameLostFocus(WindowEvent we);
          * Invoked when {@link #windowActivated(WindowEvent)} is invoked.
         public abstract void exitableJFrameActivated(WindowEvent we);
          * Invoked when {@link #windowClosed(WindowEvent)} is invoked.
         public abstract void exitableJFrameClosed(WindowEvent we);
          * Invoked when {@link #windowClosing(WindowEvent)} is invoked.
         public abstract void exitableJFrameClosing(WindowEvent we);
          * Invoked when {@link #windowDeactivated(WindowEvent)} is invoked.
         public abstract void exitableJFrameDeactivated(WindowEvent we);
          * Invoked when {@link #windowDeiconified(WindowEvent)} is invoked.
         public abstract void exitableJFrameDeiconified(WindowEvent we);
          * Invoked when {@link #windowIconified(WindowEvent)} is invoked.
         public abstract void exitableJFrameIconified(WindowEvent we);
          * Invoked when {@link #windowOpened(WindowEvent)} is invoked.
         public abstract void exitableJFrameOpened(WindowEvent we);
          * Invoked when {@link #windowStateChanged(WindowEvent)} is invoked.
         public abstract void exitableJFrameStateChanged(WindowEvent we);
          * Tests if this frame is the main frame.
         public abstract boolean isMain();
    Take care and God bless you all. Thank you. -Ronillo

  • [AS] IDCS4 - How to reference tagged rectangle in layer

    Hi
    What I am trying to do is access a tagged rectangle called IMAGE, with a script label of IMAGE in a group on a locked layer, and replace that rectangles content with a new image, and have not had much success.
    When I unlock the layer and un-group the group, I can then access the tagged rectangle
    with the code below.
    (the code was cobbled together from here  http://www.macosxautomation.com/applescript/datapublish/index.html)
    Could someone please show me how to reference a tagged rectangle on a locked layer in a group please, if I need to unlock the layer then that's fine.
    tell application "Adobe InDesign CS4"
        tell the active document
            set the rectangle_list to every rectangle of every spread ¬
                whose label is not "" and content type is graphic type
            if the rectangle_list is {} then
                error "There are no tagged image rectangles."
            end if
            if the class of the rectangle_list is not list then
                set the rectangle_list to the rectangle_list as list
            end if
        end tell
        repeat with i from 1 to the count of the rectangle_list
            try
                set error_indicator to 1
                set this_rectangle to item i of the rectangle_list
                set this_tag to the label of this_rectangle
                set this_image to "PATH TO IMAGE" as alias --testing
                set error_indicator to 2
                tell this_rectangle
                    set this_image to place this_image
                    if the class of this_image is list then set this_image to item 1 of this_image
                    fit given content to frame
                    set image_h to the horizontal scale of this_image
                    set the image_v to the vertical scale of this_image
                    if the image_v is greater than or equal to image_h then
                        set horizontal scale of this_image to image_v
                    else
                        set the vertical scale of this_image to image_h
                    end if
                    fit given center content
                end tell
            on error error_message
                if the error_indicator is 1 then
                    set the error_message to "Image “" & this_tag & ¬
                        "” could not be found in the database."
                end if
                activate
                beep
                display dialog error_message buttons {"Cancel", "Continue"} default button 2
            end try
        end repeat
    end tell
    cheers
    Kev

    Something like this should get you started:
    tell application "Adobe InDesign CS4"
    tell document 1
    set theRects to every item of all page items whose class is rectangle and label is "IMAGE"
    repeat with i from 1 to count of theRects
    set oneRect to item i of theRects
    -- unlock layer if necessary
    if locked of item layer of oneRect is true then
    set lockFlag to true
    set locked of item layer of oneRect to false
    else
    set lockFlag to false
    end if
    set this_image to place this_image on oneRect
    -- do your stuff to the image
    if lockFlag is true then set locked of item layer of oneRect to true -- relock the layer
    end repeat
    end tell
    end tell

  • How to reference/play video from the MicroSD card

    I am developing an interactive video application using AIR on Android and need to store media on an external MicroSD card.  How do I access that file location in AIR?  I have tried:
    /mnt/Removable/MicroSD/
    /mnt/external1/
    etc. 
    Is there code similar to:
    var myFile:File = File.documentsDirectory.resolvePath("Test Folder/test.txt");
    That would allow me to reference the external storage?

    OK...I am highly confused.  And I think you are a bit confused too...adding to the confusion.
    Log and CAPTURE is for capturing from tape. If you aren't capturing from tape...but rather an SD card...do not use Log and CAPTURE.  Tapeless capture uses log and TRANFER.  That's what I mention in that tutorial. 
    >How do I set up the preferences so that I get the capture window that shows the clips that I can import (capture) from my SD card?
    Watch the video again. You open Log and Transfer...click on the folder icon on the upper left...and then navigate to the backup of the card you make.  The FIRST step is to back up that card.  Then you use L&T...and direct it to the root level of the backup folder.  You click OK and all the clips in that folder will appear in the Log and Transfer window.
    >I keep getting prompted with a message that my HDV deck is not connected.
    Because you are opening Log and CAPTURE.  Again...log and transfer is what you want.
    >I'm just trying to have my video be captured wirelessly from the SD card into FCP.
    Sorry, you can't do that. You cannot do this wirelessly. You need to connect the camera to the computer with a wire...typically USB.  OR...you take the SD card out and either use an SD card reader connected to the computer via a cable (USB), or if you have a laptop with an SD card slot...well then, that would be wireless. Just slap the card into the computer and watch it show up on the desktop.  Then back up the footage, then Log and Transfer.
    >It's got to do something with setting it up in wither Easy Setup menu or one of the others.
    No. You do not need to use the Easy Setups. That is for tape capture. You determine what codec you will be converting to in the Log and Transfer preferences. Watch the video again...I explain this thoroughly.

  • How to sync to different environment (Devlopment & Test)

    Hi,
    I would like to know more about, how to sync two different environment (includes metadata changes and data if applicable).
    using LCM of version 11.1.2.1 (for Planning, Essbase and FR).
    Regards
    Kumar

    There are so many posts and blogs on LCM, a little research and I am sure you will be able to get to grips with using LCM, for example - http://www.oracle.com/webfolder/technetwork/tutorials/obe/hyp/PLN11.1.2_LCM/index.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to reference the Parent view Object attribute in Child View object

    Hi , I have the requirememt to generate Tree like struture to display Salary from joining date to retirement date in yearly form.I have writtent two Pl/SQL function to return parent node and child nodes(based on selected year).
    1.First function --> Input paramter (employee id, retirement date , joining date) --> return parent node row with start_date and end_date
    2. 2nd function --> input paarmter(employee id, startDate, end_date) --> return child node based on selected parent node i.e. start date and end date
    I have created two ADF view object based on two function return
    Parent Node --> select * from Table( EUPS.FN_GET_CONTR_SAL_BY_YR(employeeId,retirement Date, dateOf joining)) ;
    Child Node --> select * FROM TABLE( EUPS.FN_GET_CONTR_SAL_FOR_YEAR( employeId,startDate, endDate) ) based on selected parent node.
    I am giving binding variable as input for 2nd function (child node) . I don't know how to reference the binding variable value in child view from parent view.
    Like I have to refernce employeId,startDate, endDate values in 2nd function from parent view object. some thing like parentNode.selectedStart_date parentNode.employeeId.
    I know we can achive this writing the code in backing bean.But i want to know how can we refernce parent view object attribute values in child view object using Groovy or otherway?
    I will appreciate your help.
    Thanks

    I have two view com.ContractualSalaryByYearlyView for Parent Node and com.ContractualSalaryByYearlyView for child Node.
    I have created view link(ContractualSalYearlyByYearViewLink) betweem two view by giving common field empId, stDate , endDate.(below is the view link xml file).
    I tried give the binding attribute values using parent object reference like below in com.ContractualSalaryByYearlyView xml file but getting error
    Variable ContractualSalaryByYearlyView not recognized.I think i am using groovy expression.
    Thanks for quick response.
    com.ContractualSalaryByYearlyView xml
    <ViewObject
    <DesignTime>
    <Attr Name="_isExpertMode" Value="true"/>
    </DesignTime>
    <Variable
    Name="empId"
    Kind="where"
    Type="java.lang.Integer">
    <TransientExpression><![CDATA[adf.object.ContractualSalaryByYearlyView.EmpId]]></TransientExpression>
    </Variable>
    ContractualSalYearlyByYearViewLink.xml file
    <ViewLinkDefEnd
    Name="ContractualSalaryByYearlyView"
    Cardinality="1"
    Owner="com.ContractualSalaryByYearlyView"
    Source="true">
    <DesignTime>
    <Attr Name="_finderName" Value="ContractualSalaryByYearlyView"/>
    <Attr Name="_isUpdateable" Value="true"/>
    </DesignTime>
    <AttrArray Name="Attributes">
    <Item
    Value="com.ContractualSalaryByYearlyView.EmpId"/>
    <Item
    Value="com.ContractualSalaryByYearlyView.StDate"/>
    <Item
    Value="com.ContractualSalaryByYearlyView.EndDate"/>
    </AttrArray>
    </ViewLinkDefEnd>
    <ViewLinkDefEnd
    Name="ContractualSalaryForYearView"
    Cardinality="-1"
    Owner="com.ContractualSalaryForYearView">
    <DesignTime>
    <Attr Name="_finderName" Value="ContractualSalaryForYearView"/>
    <Attr Name="_isUpdateable" Value="true"/>
    </DesignTime>
    <AttrArray Name="Attributes">
    <Item
    Value="com.ContractualSalaryForYearView.EmpId"/>
    <Item
    Value="com.ContractualSalaryForYearView.StDate"/>
    <Item
    Value="com.ContractualSalaryForYearView.EndDate"/>
    </AttrArray>
    </ViewLinkDefEnd>

  • How to Generate HTML Report Output in Excel

    Dear Experts,
    How to convert HTML report output in Excel.
    I have reports which output is coming in HTML format & the same I want to use in Excel.
    So tell me how I can covert the same in Excel.
    Thanks
    Sudhir

    hello,
    in your case, you might want to make the following :
    a) use DESFORMAT=HTML
    b) use MIMETYPE=application/vnd.msexcell (or whatever mimetype your excel application is bound to)
    i am nor sure if excel will understeand our HTMLCSS (which is actually HTML4.0 using layers for best possible rendering of the paper page in the browser).
    regards,
    the oracle reports team

  • How to use HTML Tags in Smartforms

    Hi,
    Can you please help me out in knowing how to use HTML tags in Smartforms,
    suppose i want to display some text in BOLD i should use the tag </b> as shown
    </b>  Header Information <b>
    regards
    Ranveer

    Hi Ranveer ,
        check this following links,
      hope this wil helps you
    <a href="http://sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap%20code%20samples/smartforms/smartform%20in%20abap.pdf">check this link,to know abt HTML in smartforms</a>
    rgds,
    shan

  • How to change html style titles of a JTabbedPne at run time??

    hi,
    how to change html style titles of a JTabbedPne at run time??
    setTitleAt is not working...

    You can't change the canvas at runtime. But you can put the scrollbar on a stacked canvas and then show or hide that stacked canvas on different canvases.

  • How old is test/dev environment?

    Hi,
    How can I check, How old is test/dev environment which was cloned from PROD in past.
    by the creation time of control file?
    Thanks

    Just for the pourpose of sharing knowledge, even if your regular backup strategy does not include rman, you can still issue this command. I have created a just recently cloned database out of the seed, it works too.
    [oracle@cursocfe log]$ rman target /
    Recovery Manager: Release 10.2.0.1.0 - Production on Tue Apr 24 14:03:49 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    connected to target database: DEMO (DBID=3364817245)
    RMAN> list incarnation of database;
    using target database control file instead of recovery catalog
    List of Database Incarnations
    DB Key Inc Key DB Name DB ID STATUS Reset SCN Reset Time
    1 1 DEMO 3364817245 PARENT 1 30-JUN-05
    2 2 DEMO 3364817245 CURRENT 446075 24-APR-07

  • How can I remove all my preferences and settings from mail and do a clean install of mail app?

    How can I remove all my preferences and settings from mail and do a clean install of mail app?

    Open mail > Preferences > Accounts
    Select the account and click the minus button at the bottom of the column.
    Quit mail
    ~/Library/Preferences/com.apple.mail.plist move this file to the trash and empty it.
    ~/Library/Mail/ and move all of the items in that folder to the trash and then empty it.

  • How can I change my safari preferences to save a file rather than download

    How can I change my safari preferences to save a file rather than it downloading

    danieladorotiak wrote:
    When I click on the 'save application file, it download's it and doesn't give me the option to save it.
    I can't be sure, but what probably happens is that the page doesn't give you a link to a downloadable file, but a button which activates a script. There's nothing you can do about that, because you don't control the script.
    it just downloads the transcripts not the document.
    It sounds like the downloaded file does not open or execute as it's supposed to (which, for instance, would happen if what you downloaded was a Java application, but you didn't have Java installed).
    If you are allowed to, give us the URL and we'll have a look. Also, you should add what version of Mac OS X and of Safari you are using, and you should correct your profile (which says "Mac Pro" -- this forum is for the MacBook Pro, which is a different computer from the Mac Pro).

  • I downloaded a widget from apple and was unable to open it because a window appeared telling me that the developer was unidentified. How do I change the security preferences that allow me to only install apps from the Mac App Store?

    I downloaded a widget from apple and was unable to open it because a window appeared telling me that the developer was unidentified. How do I change the security preferences that allow me to only install apps from the Mac App Store?

    go to system preferences - security and privacy - under allow applications downloaded from - click on anywhere.

Maybe you are looking for

  • How to physically hook up for extended dual display

    This was originally posted in another wrong topic section today, which was incorrect. I have a flat panal PC (windows XP) as well as my iMac G5. I would like to hookup the iMac to the PC so that I can extend my PC Desktop onto the iMac. I have a Appl

  • Adding a domain name to BC site results in Error. Cannot locate Adobe support.

    "Error. Domain name already exists..." Have 3 sites not working right now. Sorry to post multiple times, but Adobe support is non-existent, and Live Chat and Open a Ticket are both circular links that never go anywhere, nor let me contact Adobe. Past

  • Cursor Vs Select statement

    Hi, Please let me know what is the difference between using OPEN CURSOR and SELECT statement WITH PACAKGE additon. Praneeth

  • Query related to TRAY

    Dear Experts, I am new to Web Dynpro ABAP. In my view, I have a table certain information is displayed. Now if user selects any one row from the table, corresponding to that row I want to display some more information using a tray. Please suggest me

  • Having index stats updated causing the query to fail (not to complete)

    Hello, A query where condition has the same columns as in the index (say XYZ). With no stats on index XYZ, query executes with explain plan showing that it uses XYZ. Explain plan shows low cost and query completes successfully. However if we create t