Unable Submit Form Value to Action when running struts-portlet in OracleAS

Hi,I have develop a portlet using struts & pdk, after that deploy it by OC4J and register the
provider at Oracle Application Server 10g 10.1.2.2.
However the formbean value is unable passing to action after clicking submit button,this problem
doesn't comeout when i run my code as stand alone application.
here is my application code:
1. Action Class:
public class ZoneAction
  extends DispatchAction
  public ActionForward display(ActionMapping mapping, ActionForm form,
                               HttpServletRequest request,
                               HttpServletResponse response)
    throws IOException, ServletException
    ZoneHibernate zh = new ZoneHibernate();
    List list = zh.retrieveAllZone();
    ZoneForms zf = new ZoneForms();
    ZoneForm blankForm = new ZoneForm();
    list.add(blankForm);
    zf.setZoneForms(list);
    request.setAttribute("zoneForms", zf);
    return mapping.findForward("success");
2.Provider.xml:
<provider class="oracle.portal.provider.v2.DefaultProviderDefinition">
   <session>true</session>
   <passAllUrlParams>true</passAllUrlParams>
   <portlet class="oracle.portal.provider.v2.DefaultPortletDefinition">
      <id>1</id>
      <name>irmsPortlet</name>
      <title>iRMS Portlet</title>
      <description></description>
      <timeout>40</timeout>
      <showEditToPublic>false</showEditToPublic>
      <hasAbout>false</hasAbout>
      <showEdit>false</showEdit>
      <hasHelp>false</hasHelp>
      <showEditDefault>false</showEditDefault>
      <showDetails>false</showDetails>
      <renderer class="oracle.portal.provider.v2.render.RenderManager">
         <renderContainer>true</renderContainer>
         <renderCustomize>true</renderCustomize>
         <autoRedirect>true</autoRedirect>
         <contentType>text/html</contentType>
         <showPage class="oracle.portal.provider.v2.render.http.StrutsRenderer">
         <defaultAction>/jsp/zone_maintenance.jsp</defaultAction>
         </showPage>
      </renderer>
   </portlet>
</provider>
3. Action Mapping in struts-cofig.xml:
  <action-mappings>
    <action path="/ZoneMaintenance"
            type="my.com.irms.action.ZoneAction"
            name="zoneForms"
            scope="request"
            parameter="action"
            input="/jsp/zone_maintenance.jsp">
      <forward name="success" path="/jsp/zone_maintenance.jsp"/>
    </action>
  </action-mappings>
4.jsp:
<pdk-html:form action="/ZoneMaintenance.do">
-div id="action"-<pdk-html:hidden name="zoneForms" property="action"/>-/div-
<logic:notEmpty name="zoneForms" property="zoneForms">
<table border="1">
<thead>
            <tr>
                <th><bean:message key="zone.zone"/></th>
                <th><bean:message key="zone.disc"/></th>
           </tr>
</thead>
<tbody>
<logic:iterate id="zone" name="zoneForms" property="zoneForms" indexId="i">
            <tr id="tr${i}">   
                <td>
                  <pdk-html:hidden name="zoneForms"
                                  property="zoneForms[${i}].rowStatus" value=""/>
                  <pdk-html:hidden name="zoneForms" property="zoneForms[${i}].id"/>
                  <input type="checkbox" onclick="update()">
                </td>
                <td><pdk-html:text name="zoneForms"
                                       property="zoneForms[${i}].zone" size="10"       
                                       onchange="rowDataChanged('tb1',${i})"/></td>
                <td><pdk-html:text name="zoneForms"
                                       property="zoneForms[${i}].disc" size="30" 
                                       onchange="rowDataChanged('tb1',${i})"/></td>
            </tr>
</logic:iterate>
</tbody>
</table>
<input type="button" value="Submit" onclick="submitForm('save')"/>
</logic:notEmpty>
<input type="button" value="Display" onclick="submitForm('display')"/>
</pdk-html:form>
5.javascript for submitForm():
  function submitForm(param)
        document.getElementById("action")
       .getElementsByTagName("input")[0].value = param;
        document.forms[0].submit();
6.web.xml
<?xml version = '1.0' encoding = 'windows-1252'?>
<web-app>
  <description>Empty web.xml file for Web Application</description>
  <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>
          org.apache.struts.action.ActionServlet
    </servlet-class>
    <init-param>
      <param-name>config</param-name>
      <param-value>
           /WEB-INF/struts-config.xml
      </param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet>
    <description>Extended Portal
                 SOAP  Server</description>
    <servlet-name>SOAPServlet</servlet-name>
    <servlet-class>
           oracle.webdb.provider.v2.adapter.SOAPServlet
    </servlet-class>
    <init-param>
      <param-name>resourceServletMapping</param-name>
      <param-value>/pdkresource</param-value>
    </init-param>
  </servlet>
  <servlet>
    <description>Image resource server</description>
    <servlet-name>ResourceServlet</servlet-name>
    <servlet-class>
         oracle.webdb.provider.v2.adapter.ResourceServlet
    </servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>
  <servlet-mapping>
    <servlet-name>SOAPServlet</servlet-name>
    <url-pattern>/providers</url-pattern>
  </servlet-mapping>
  <servlet-mapping>
    <servlet-name>SOAPServlet</servlet-name>
    <url-pattern>/providers/*</url-pattern>
  </servlet-mapping>
  <servlet-mapping>
    <servlet-name>ResourceServlet</servlet-name>
    <url-pattern>/pdkresource/*</url-pattern>
  </servlet-mapping>
  <session-config>
    <session-timeout>35</session-timeout>
  </session-config>
  <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
  </mime-mapping>
  <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
  </mime-mapping>
</web-app>
Can anyone help me? thanks.

It is probably easier to do with with a standard tag than the <html:button> tag, as it means you can nest the
<input type="button" name="more" value="more" onclick="setID(<bean:write name="bloodbankList" property="id"/>)"/>or maybe like this:
<bean:define id="bbId" name="bloodbankList" property="id"/>
<html:button property="More" value="More" style="color: #00007D; text-transform: uppercase; letter-spacing: 2pt; background-color: #6B719C; border: 2 solid #00007D"   onclick="<%= "setID(" + id + ");" %>" />Cheers,
evnafets

Similar Messages

  • "Submit Form" button automatically created when opening form in non-adobe program

    I tried browsing the forum for a solution to getting rid of this annoying automatic button but got nothing. It gets generated on the body of the form (top right) when I publish for distribution using any method for collection. I'm using pdf expert 5 to fill and submit forms because adobe reader doesn't do what I need how I need it. Everything is perfect except for that annoying submit form button that specifies submitting by email because 'user is not using reader or acrobat version whatever'.
    Anyone know how to get rid of this button?
    Thanks!

    Yes, that is correct.
    I did not manually add this button, so I am assuming it was somehow automatically created.
    It worked great up until now that I need to change the "To:" email address.
    I've look through the XML code associated this this email address and changed it every where I could find it, but it still hasn't changed my results.  So, I have no idea how to change this and as stated above, if I create a new form it automatically sets it up to be sent to the wrong email address.  Not sure why or how to change it?
    Let me know if you need further info to help me out.
    Thanks again

  • Encounter problem when running test.fmx in Oracle form 11g

    I am new to Oracle form 11g and encounter a problem regarding testing the Form Services.
    I have Oracle form 11g (deployment mode) on my app server.  I opened 'Run a form on the web' and clicked 'Run form' to conduct a test with default values suggested by the screen.  Then I got the below screen showing 'An add-on for the website failed to run'.
    Is the problem in relation to IE setting? or is my set up of Oracle form 11g not OK?

    Hi ,
    This community is to discuss Weblogic Server specific issues, you can post this query Forms in for better response in the below link:-
    Oracle Forms (MOSC)
    Regards,
    Prakash.

  • Unable to interact with Flash content when running Firefox with restricted user

    When running Firefox with limited Windows user on Windows XP the Flash elements are displayed, the content that is set to auto-play does so even, but the flash area doesn't receive any mouse input: e.g. when I right click in the area instead of the flash context menu I get the browser context menu as if the flash plug-in wasn't even there. The exact same page on the exact same computer but with Administrator user works as expected: can press buttons, interact with flash controls and the context menu upon right-click is of course the flash one. This behavior occurs even if I disable all add-ons.

    Try uninstalling your sound card driver in Device Manager and reboot your PC.

  • Unable to load gpib-32.dll when running the visual basic 2008 program

    I installed NI-488.2 into my PC, window 7 64 bit OS.
    In the program >> project> add reference>.NET, I successfully add the NI.4882  into my visual basic  program.
    By the way, this program worked well in another window 7 32 bit PC.
    But when I run the program at ildev(BDINDEX,.........), error comes up as "unable load DLL gpib-32.dll".
    So when I looked at c:\windows\system32, I can not fine gpib-32.dll.
    Doesn't  NI-488.2 driver install gpib-32.dll?
    How can I install gpib-32.dll?

    SeongCho wrote:
    Nyc, thank you for your reply.
    By the way, I think I did all the link explained.
    So I have no problem in  adding  NI488.2 to my program's reference using "add reference".
    The problem is GPIB statement like ildev() looks for "gpib-32.dll".
    But there was no gpib-32.dll installed in "c:\windows\system32" so error comes up with "unable to load gpib-32.dll".
    I did the same procedure in my another PC(window 7 32 bit OS,my current PC is window 7 64 bit OS), and in that PC I can see the gpib-32.dll in that directory and program run without problem.
    I do not know how gpib-32.dll was installed in my previous PC.
    Thanks
    Seong
    Have you looked at the example programs for .NET that install with NI-488.2?
    You need to start thinking in terms of .NET 

  • Why an InfoObj. value shows up when running query but it's not in the ODS?

    We've got an ODS which has PO records, multiple PO records could contain the same contract number.  When we run a query based on this PO ODS, expend the list for the contract number field (0Contract), find a value listed, but it's not in this ODS. 
    We wonder how this value was from. 
    We check the defination of this InfoObject 0Contract, under Business Explorer tab, the Display field is "Key", the "Query Def. Filter Value Selection" field setting is "Only Values in InfoProvider", and the "Query Execution Filter Val. Selectn" field setting is "Only Posted Values for Navigation", sth wrong with these settings?
    Any idea where this value comes from?
    Thanks

    Hi Kevin,
    Please see this thread for a discussion we had on this 'property' when using an ODS:
    Re: ODS Object-Specific Properties BUG
    Hope this helps...

  • Form does not appear when run through Form Builder

    Hello,
    We are trying to get a new installation of Form Builder 10g to work. When we try to run the form, the Forms Service browser comes up, but the form does not. We are likely missing a setting in some config file. Can anyone help us?
    Thank you,

    Thanks for your efforts.
    I have searched the forum, but maybe have not hit the correct key words yet. If you can suggest better search parameters than I have used, I will try again.
    The popup blocker settings are the same as on other PCs that work correctly.
    Our tnsnames is also good, as we are connecting through Form Builder.
    I tried researching the error message that was requested, but the error code and message did not match up.
    I would appreciate any other suggestions.

  • Error when running struts application

    I get this error when i try to run my struts application.
    org.apache.jasper.JasperException: /JSP/Login.jsp(13,0) Attribute name invalid for tag form according to TLD
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:40)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:236)
         org.apache.jasper.compiler.Validator$ValidateVisitor.checkXmlAttributes(Validator.java:1200)
         org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:821)
         org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1512)
    Can anybody tell me why this is happening :-(

    org.apache.jasper.JasperException: /JSP/Login.jsp(13,0) Attribute name invalid for tag form according to TLDIt means the attribute(s) you have specified in the Custom tag(<html:form/> in your case) is an invalid one. Check here for valid attributes name.
    [http://struts.apache.org/1.2.x/userGuide/struts-html.html#form|http://struts.apache.org/1.2.x/userGuide/struts-html.html#form]

  • Precision Changes when running parallel queries in Oracle?

    I am trying to speed up our SQL queries and database draws by running parallel queries. However, we are noticing a slight difference in one of our queries. We have identified two possible reasons. One of those reasons is parallel queries for some reason have either less or more precision than what we were doing.
    Has this ever been reported before? Is it even possible? Thanks for any help.

    One of those reasons is parallel queries for some reason have either less or more precision than what we were doing.What do you mean? Show us an example of that happening and exactly what you mean.

  • Forms fails to reload a form when run locally

    When I'm working on a form in Forms Builder (9.0.4.0.19) I can log on to the database and run the form locally with OC4J running. When I run the form the first time I'm prompted to log on to the database and then it loads the form correctly in Internet Explorer. But, when I shut down that form instance and try to reload it (with or without any change to the form) it fails to load and I get the following error:
    <html> <head> ORACLE FORMS.</head>
    <body onload="document.pform.submit();" >
    <form name="pform" action="http://markc.cis.cuny.org:8889/forms90/f90servlet" method="POST">
    <input type="hidden" name="form" value="U:\mvcbh\ACE_Enrollment_form\ace_enrollment2.fmx">
    <input type="hidden" name="userid" value="ABCDEF/12345@database">
    <input type="hidden" name="obr" value="yes">
    <input type="hidden" name="array" value="YES">
    </form> </body></html>
    The error loads in an Internet Explorer window and references D:\documents and settings\mvcbh\Local Settings\Temp\s35o.1htm. The Oracle Client and Oracle Developer are installed on the C drive on this machine but our IT folks moved the default "documents and settings" folder to the D drive, so.... FWIW, I wasn't getting this error before I was given a new computer so whatever is causing this must be a configuration error--I just can't find it.
    Can anyone tell me what I need to do to have Forms Developer load a form more than once? Having to shut down and restart OC4J and Forms Developer every time I want to load a form is a real pain....
    Thanks,
    Mark

    This is not necessarily an error. This is the result of Microsoft adding new security to its browser. What you are looking at is the html code used to launch your form.
    To correct the problem (assuming you are using IE6) do the following:
    1. In the Builder, verify that in the Preferences > Runtime tab you have both the Application Server URL and Web Browser Location filled. Do not leave either blank.
    2. Close ALL open browsers except one.
    3. Select Tools > Internet Options > Advanced
    4. In the Security section near the bottom, CHECK the box labeled "Allow active content to run in files from My Computer.
    5. Click on OK and retest.
    You can also disable this creation of the temp files which actually cause this problem in the first place, but this will expose the complete URL when you run a form. In other words the username and password will be in plain text in the URL. If this is not a problem then you can add the following to the registry in the area which contains the Developer Suite information:
    FORMS90_HIDE_OBR_PARAMS
    Set the value to 0
    It also looks like you are running your forms from a network share. This is not really recommended. Try copying the form to the local machine while testing and developing.
    U:\mvcbh\ACE_Enrollment_form\ace_enrollment2.fmx

  • How to avoid IE pop-ups when running BIP reports(w/ SSO) from Oracle Forms?

    Hi all,
    We have an OID/SSO integrated Oracle Forms and BI Publisher environment in place. We/users expect the same behavior when running Oracle Reports or BIP reports from Oracle Forms... which means receiving no intermediate pop-ups and simply getting the report output to appear in the relevant target application(PDF, EXCEL, etc). Currently we get multiple security warnings when running BIP reports from Oracle Forms.
    Here's a list of Pop-ups contents:
    1. "File Download - Security Warning" Do you want to open or save this file? -> OPEN
    2. "File Download" Do you want to save this file? Name = ma01r500.pdf -> YES
    3. "Save AS" -> pick desktop and save.
    4. "Download Complete" -> OPEN
    We have experimented with setting various IE security settings to LOW/enabled and still get these pop-ups.
    Any suggestions is much appreciated.
    Thanks,
    Yahya

    FYI... Metalink Note 282996.1 has resolved the bigger issue with the extra pop-ups with SSO enabled environment.
    Cause:
    Internet Explorer (IE) has to cache PDF files in a temporary directory prior to opening the file. Without this IE cannot process PDF files. With SSO protected pages, the header cache settings are set to no-cache which prevents IE from downloading PDF files.
    Solution:
    In mod_osso.conf use the entry "OssoSendCacheHeaders off" which tells mod_osso to turn off all no-cache related headers, which the enables Internet Explorer to be cache the file in a temporary directory.
    Now I am not sure if anybody has any thoughts/suggestions as how we might be able to resolve this issue where Oracle Reports WEB.SHOW_DOCUMENT calls have no pop-ups so ideally BIP reports WEB.SHOW_DOCUMENT calls should behave the same as both are calls from Oracle Forms.
    But at least now our SSO enabled environment and un-secure DEV/UAT behave the same with a single pop-up. Ideally the users shouldn't have to come across this intermediate pop-up to open(save/cancel being the other options) the document(just like Oracle Reports calls).
    Yahya

  • Scrollbars problem when running a form with Sun Java instead of Jinitiator

    Hi All;
    Our forms are configured to run with the Sun Java instead of
    Jinitiator; functionality wise everything works fine, but when running
    the forms on the web there are 2 extra scrollbars
    (one vertical and one horizontal) in addition of the browser scrollbar.
    Note: This is does not happen when running the same form with Jinitiator (same configurations)
    Anyone encountered this situation or has an idea how to to get ride of the extra scrollbars ???
    Thanks.

    Thanks for your replay.
    I was able to make all forms working without scrollbars when running form developer at the desktop (windows os) without scrollbars
    but when I run them at the application server (Linux Red Hat 3 Enterprise), scrollbars are still there.
    I tried your suggestion but did not help
    here is the formsweb configuration
    [jdk15]
    baseHTML=base.htm
    jpi_classid=clsid:CAFEEFAC-0015-0000-FFFF-ABCDEFFEDCBA
    jpi_codebase=http://server_name:port/forms/jinitiator/jre15012.exe#Version=1,5,0,12
    jpi_mimetype=application/x-java-applet;jpi-version=1.5.0_12
    jpi_download_page=http://server_name:port/forms/jinitiator/jdk_download.htm
    baseHTMLJInitiator=basejpi_with_disableMDIScrollbars_param.htm
    archive=frmall.jar
    separateFrame=False
    splashScreen=no
    background=no
    width=975
    height=575
    form=xxxxx.fmx
    lookandfeel=Generic
    logo=no
    otherparams=useSDI=yes
    The window get maximized at when-new-form-instance.
    Does it has to do with the canvas or window height and width at the design time????
    Thanks.

  • Need submit form code

    I know almost nothing about coding and fear my eyes will be permanently crossed by all the solutions I've searched for and tried over the last week. What I need is (a) the php or perl code to tell the submit button to send the entire form and (b) instructions about exactly where to put it.
    Thank you in advance for anyone who can help.
    This is the page with the form
    http://www.newmeadowcamp.com/brochureask.html
    This is the dreamweaver cs5 code behind it
    <table width="888" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <th width="444" align="center" valign="middle" bgcolor="#FFFFFF" scope="col"><table width="392" align="center" cellpadding="0" cellspacing="0">
          <tr>
            <td width="390" align="left" valign="top" bgcolor="#FFFFFF"><p class="smsubhed"></p>
              <p class="smsubhed"> </p>
              <p class="smsubhed">
                <label for="Please send a New Meadow brochure to:"></label>
                <input name="Please send a New Meadow brochure to:" type="checkbox" id="Please send a New Meadow brochure to:" value="yes" />
                <label for="Please send a New Meadow brochure to:"></label>
                Please send a New Meadow brochure to: </p>
              <p class="xsmsubhed"><br />
                Parent's name</p>
              <p class="xsmsubhed">
                <label for="Parent's name"></label>
                <input name="Parent's name" type="text" id="Parent's name" size="50" />
                <label for="textfield2"></label>
                <label for="parentname"></label>
                <label for="parentname"></label>
                <label for="parent's name"></label>
                </p>
              <p class="xsmsubhed"> Child's name</p>
              <p class="xsmsubhed">
                <label for="Child's name"></label>
                <input name="Child's name" type="text" id="Child's name" size="50" />
                </p>
              <p class="xsmsubhed">Child's age</p>
              <p class="xsmsubhed">
                <input name="Child's age" type="text" id="Child's age" size="15" />
                </p>
              <p class="xsmsubhed">Address</p>
              <p class="xsmsubhed">
                <label for="Address"></label>
                <input name="Address" type="text" id="Address" size="50" />
                </p>
              <label for="textfield4"></label>
              <p class="xsmsubhed">City</p>
              <p class="xsmsubhed">
                <label for="City"></label>
                <input name="City" type="text" id="City" size="50" />
                </p>
              <label for="textfield5"></label>
              <p class="xsmsubhed">State</p>
              <p class="xsmsubhed">
                <label for="State"></label>
                <select name="State" id="State">
                  <option value="AL">Alabama</option>
                  <option value="AK">Alaska</option>
                  <option value="AZ">Arizona</option>
                  <option value="AR">Arkansas</option>
                  <option value="CA">California</option>
                  <option value="CO">Colorado</option>
                  <option value="CT">Connecticut</option>
                  <option value="DE">Delaware</option>
                  <option value="FL">Florida</option>
                  <option value="GA">Georgia</option>
                  <option value="HI">Hawaii</option>
                  <option value="ID">Idaho</option>
                  <option value="IL">Illinois</option>
                  <option value="IN">Indiana</option>
                  <option value="IA">Iowa</option>
                  <option value="KS">Kansas</option>
                  <option value="KY">Kentucky</option>
                  <option value="LA">Louisiana</option>
                  <option value="ME">Maine</option>
                  <option value="MD">Maryland</option>
                  <option value="MA">Massachusetts</option>
                  <option value="MI">Michigan</option>
                  <option value="MN">Minnesota</option>
                  <option value="MS">Mississippi</option>
                  <option value="MO">Missouri</option>
                  <option value="MT">Montana</option>
                  <option value="NE">Nebraska</option>
                  <option value="NV">Nevada</option>
                  <option value="NH">New Hampshire</option>
                  <option value="NJ">New Jersey</option>
                  <option value="NM">New Mexico</option>
                  <option value="NY">New York</option>
                  <option value="NC">North Carolina</option>
                  <option value="ND">North Dakota</option>
                  <option value="OH">Ohio</option>
                  <option value="OK">Oklahoma</option>
                  <option value="OR">Oregon</option>
                  <option value="PA" selected="selected">Pennsylvania</option>
                  <option value="RI">Rhode Island</option>
                  <option value="SC">South Carolina</option>
                  <option value="SD">South Dakota</option>
                  <option value="TN">Tennessee</option>
                  <option value="TX">Texas</option>
                  <option value="UT">Utah</option>
                  <option value="VT">Vermont</option>
                  <option value="VA">Virginia</option>
                  <option value="WA">Washington</option>
                  <option>Washington, D.C.</option>
                  <option value="WV">West Virginia</option>
                  <option value="WI">Wisconsin</option>
                  <option value="WY">Wyoming</option>
                  </select>
                </p>
              <label for="textfield6"></label>
              <p class="xsmsubhed">Zip</p>
              <p class="xsmsubhed">
                <label for="Zip"></label>
                <input name="Zip" type="text" id="Zip" size="50" />
                </p>
              <label for="email"></label>
              <p class="xsmsubhed">Email</p>
              <p>
                <label for="textfield8"></label>
                <label for="Email"></label>
                <input name="Email" type="text" id="Email" size="50" />
                </p>
              <p class="smsubhed"> </p>
              <p class="smsubhed">
                <label for="Please send a New Meadow brochure to:2"></label>
                <input name="Please send a New Meadow brochure to:2" type="checkbox" id="Please send a New Meadow brochure to:2" value="yes" />
                <span class="xsmsubhed">I also have a question for New Meadow:</span></p>
              <p class="smsubhed">
                <label for="I also have a question for New Meadow"></label>
                <textarea name="I also have a question for New Meadow" id="I also have a question for New Meadow" cols="50" rows="5"></textarea>
                </p>
              <p>  </p>
              <table width="170" height="46" cellpadding="0" cellspacing="0">
                <tr>
                  <td width="88" align="left"><form action="" name="form1" target="_top" id="form1">
                    <input type="submit" name="button" id="button" value="Submit" />
                  </form></td>
                  <td width="88" align="left"><input type="reset" /></td>
                  </tr>
              </table></td>
            </tr>
      </table></th>
      </tr>
    </table>

    Your form is not declared and doesn't do anything.
    When you create a form, you need to declare it.
    Then you need to say what the form does or what it calls.
    Here's an example:
    <form action="dothis.php" method="post">
      First name: <input type="text" name="fname"><br>
      Last name: <input type="text" name="lname"><br>
      <input type="submit" value="Submit">
    </form>
    Now, the action="" part should call server-side code that collects all of your data and sends it in an email to whomever you wish. But since you did not declare your form and did not give it an action or a method, you have the entry blanks but it's just going to sit there.
    -Mark

  • Link from QBE-report to form not working when published as portlets

    I've created a simple QBE-report where I've linked (using a LINK) keyvalues to a detail FORM. Query and linking and automatically display of selected record works fine in the App.builder, - but when I publish the elements as portlets and access the QBE-report as a portlet on a page, - the link fails, no keyvalues are passed to the detail form. It only shows up blank.
    What am I missing here?
    Thankful for any hint.
    Regards,
    Haakon Eide
    [email protected]

    This is strange, - made the same report again, this time as a sql-query (not QBE) - and linked the report and form together exactly as before - this time the link works when using the report as a portlet.
    The QBE-report generates empty parameterstrings (i.e. foo=&bar=&) when run as portlet on a page. Is this a bug?
    Running Portal 3.0.9 on iAS 1.0.2.2.
    -Haakon-

  • Pass form value to Destination URI

    Hi ,
    I have
    Form Value: (CtDetRN.PerId)
    Form Value: (CtDetRN.PPId)
    when viewed the page view source
    <input id="PerId" type="hidden" value="2886870" name="PerId">
    <input id="PPId" type="hidden" value="2886870" name="PPId">
    Now i need to pass the any of the above param in my url(personalization)
    URL : OA.jsp?page=/oracle/apps/imc/ocong/party/person/webui/ImcPerProfile&ImcPartyId={@ASPKey_NtsRPId}&ImcMainPartyId=2886870
    For ImcMainPartyId=2886870 i need to pass any of the form value(dynamically instead of hard coding the value).
    I tried ImcMainPartyId={@PerId} and {@PPId}.
    But it didnt work out.
    any one help me for the ways of passing param of form value to url
    thanks

    so if the required params are not on my page then what should be the solution?
    >>> You will have to get it somehow otherwise your solution is not feasible. Your approach or design is wrong. For going from one page to another, there should be some related data and if it is your custom pages, then there is something missing on your analysis.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Maybe you are looking for

  • How to Import Database user in oracle which have character set AL32UTF8?

    Hello All, I want export one database user which have character set in WE8MSWIN1252 and I want to Import that Database user in oracle which have character set AL32UTF8 without changing character set. is there any argument in import command?? thanks

  • Itune Credit card transaction problem

    I have a credit card which has billings on it     . i get a new credit card and insert the information and it tells please contact iTunes i don't now how to do it

  • Accessing External Drive Over Internet

    I have an Airport Extreme Base Station and have recently purchased a 1TB external hard drive which I have connected to it by USB. I can access the added disk fine when using my home nework. I also have a MobileMe account so I would also like to acces

  • What output formats support the play speed settings on a PC using windows media player?

    What output formats support the play speed settings on a PC using windows media player? Here is my need. I need to take my video clips with me on my small PC and view them at slow speed. My playback PC is small and a little slow, so I cant have a ver

  • Debugging Crash on device

    My app is very close to completion but it is crashing periodically. I finally was able to get remote debugging working from the device to my laptop but when the app crashed nothing was reported. How can I find out information on why the app is crashi