Automatic submit

Hi there,
I have include a javascript sentence to activate my submit page, but it does not working, can anyone take alook to my program and help me to solve this problem
just I need activate the submit ones the Scan Barcode Number field has been scaned
e isErrorPage="true" %>
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
<%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql_rt" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt_rt" %>
<%@ taglib prefix="x" uri="http://java.sun.com/jstl/xml" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%--
The taglib directive below imports the JSTL library. If you uncomment it,
you must also add the JSTL library to the project. The Add Library... action
on Libraries node in Projects view can be used to add the JSTL 1.1 library.
--%>
<%--
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
--%>
<jsp:useBean id="now" class="java.util.Date" />
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%--<%
response.setHeader("Pragma", "No-cache");
response.setDateHeader("Expires", 0);
response.setHeader("Cache-Control", "no-store");
%>--%>
<c:if test="${param.sub77}">
<%-- validate empty fields--%>
<c:if test="${empty param.moveTNumber}" var="emptymoveTNumber"/>
<c:if test="${empty param.Opencut}" var="emptyOpencut"/>
<c:if test="${empty param.OPCUT}" var="emptyOPCUT"/>
<%--validate Move ticket number--%>
<c:if test="${!empty param.moveTNumber && !empty param.Opencut && !empty param.OPCUT}">
<c:catch var="parsingError1">
    <fmt:parseNumber var="fav" value="${param.moveTNumber}"/>
</c:catch>
<c:if test="${not empty parsingError1}" var="badMoveTNumber" />
    <%--validate Open Cut number--%>
    <c:set var="someString" value="${param.Opencut}" scope="application"/>
    <%-- this rutine will validate OPEN CUT field--%>
    <c:set var="After" value="${fn:substring(someString,1,8 )}" scope="application"/>
    <sql:query  var="RecordUP" dataSource="${datasource}">
        SELECT CPY056,DIV056,AUT056,CO#056,UC#056 FROM RLMOEF.LLTH056C WHERE UC#056=?
        <sql:param value="${After}"/>
    </sql:query>
    <c:forEach  items="${RecordUP.rowsByIndex}" var="row">   
        <c:set var="LOC46" value="${0} " scope="session" />
        <c:set var="WCP46" value="${1} " scope="session" />
        <c:set var="CPY46" value="${row[0]} " scope="session" />
        <c:set var="DIV46" value="${row[1]} " scope="session" /> 
        <c:set var="AUT46" value="${row[2]} " scope="session" />
        <c:set var="COU46" value="${row[3]} " scope="session" />
    </c:forEach   >
    <c:if test="${RecordUP.rowCount == 0}">
        <c:set var="InvalidCutCode" value="${'Invalid Open CUT Number'}" scope="session" />
    </c:if>
    <%--validate Scan Barcode NUmber--%>
    <c:if test="${empty InvalidCutCode}">
        <c:catch var="parsingError3">
            <fmt:parseNumber var="fav" value="${param.OPCUT}"/>
        </c:catch>
        <c:if test="${!empty parsingError3}" var="badOPCUT" />
            <c:if test="${empty parsingError3}" >
                <sql:query var="RecordUP2" dataSource="${datasource}">
                    SELECT CAS020,LOC020,WCP020 FROM RLMSLF.LSL020S WHERE
                    WCP020=? AND LOC020=? AND CAS020=?
                    <sql:param value="${After}"/>
                    <sql:param value="${1}" />
                    <sql:param value="${98}" />
                </sql:query>
                <c:if test="${RecordUP2.rowCount > 0}">
                    <c:set var="InvalidCASE" value="${'Invalid Case Number'}" scope="session" />
                </c:if>
                <c:if test="${RecordUP2.rowCount == 0}">
                    <c:set var="someString1" value="${param.OPCUT}" scope="application"/>
                    <c:set var="After1" value="${fn:substring(someString1,10,20 )}" scope="session"/>
                    <fmt:parseNumber var="DIV46N" value="${DIV46}" />
                    <fmt:parseNumber var="CPY46N" value="${CPY46}" />
                    <sql:query var="RecordUP3" dataSource="${datasource}">
                        SELECT SCPY46,SDIV46,AUT046,CUO046,CAS046,UCD346,EXT446 
                        FROM ESRIOSJ.LFG046G1
                        WHERE SCPY46=? AND SDIV46=?
                        AND AUT046=? AND CUO046=? AND CAS046=?
                        <sql:param value="${CPY46N}" />
                        <sql:param value="${DIV46N}" />
                        <sql:param value="${AUT46}" />
                        <sql:param value="${COU46}" />
                        <sql:param value="${After1}" />
                    </sql:query>
                    <c:forEach items="${RecordUP3.rows}" var="row">
                        <c:set  var="UCD346" value="${row.UCD346} " scope="request" />
                        <c:set var="EXT446" value="${row.EXT446} " scope="session" /> 
                    </c:forEach> 
                    <c:if test="${RecordUP3.rowCount == 0}">
                        <c:set var="ScanCodeNotFound" value="${'Scan Code Not found'}" scope="session" />
                    </c:if>
                    <c:if test="${fn:trim(UCD346) eq 'B'}">   
                        <c:set var="scanedBarcode" value="${'BHBS'}" scope="request" />
                    </c:if>   
                </c:if>
            </c:if>
        </c:if>
    </c:if>
</c:if>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <link href="style.css" rel="stylesheet" type="text/css" />
    <title></title>
</head>
<form name="Scan"  method="post" >
    </p>
    <input type="hidden" name="sub77" value="true" />
    <p>
    <legend>Scan Packing Page</legend><br>
    <legend>Receiving Information</legend>
    <legend><fmt:formatDate value="${now}" dateStyle="default"/></legend>
    <jsp:useBean id="mycar" class="car.ClearField2" scope="page"/>
    <body  >
    <table  bgcolor="white" border="0" style="font-size:10pt" >
        <tbody >
            <td><c:out value="${param.now}" /></td></tr> <br>
            </tr>
            <tr> 
                <th>Move Ticket Number:</th>
                <td><input tabindex="0" type="text" name="moveTNumber" value="<c:out value="${param.moveTNumber}" />" />
                    <c:if test="${emptymoveTNumber==true}">
                        <font color="red">
                        Empty field!! 
                    </c:if>
                    <c:if test="${empty emptymoveTNumber && !empty badMoveTNumber  }">
                        <font color="red">
                        Invalid Number!
                    </c:if>
                </td>
            </tr>
            <tr><th>Open Cut Number:</th>
            <td><input tabindex="1"   type="text" name="Opencut" value="<c:out value="${param.Opencut}" />" />
                <c:if test="${emptyOpencut==true}">
                    <font color="red">
                    Empty field!! 
                </c:if>
                <c:if test="${empty emptyOpencut && badOpencut==true }">
                    <font color="red">
                    Invalid number!
                </c:if>
                <c:if test="${RecordUP.rowCount==0}">
                    <font color="red">
                    Invalid Open Cut Number!! 
                </c:if>
            </td>
            <tr>
                <th>Scan Barcode Number:</th>
                <c:set target="${mycar}" property="oPCUTCA" value="${param.OPCUT}" />
                <td><input     tabindex="2" maxlength="20"  type="text" size="20" name="OPCUT" value="<c:out value="${mycar.oPCUT}" />" onkeydown="return validateEnterKey()" />
                    <SCRIPT LANGUAGE="JavaScript">
                    function validateEnterKey(){
                     var KeyChar;
                     var status = false;
                     if(document.all){
                     keyChar=event.keyCode;
                     if(keyChar == 13){
                     document.Scan.submit();
                    </SCRIPT>
                    <c:if test="${emptyOPCUT==true}">
                        <font color="red">
                        Empty field!! 
                    </c:if>
                    <c:if test="${badOPCUT==true}">
                        <font color="red">                  
                        Invalid Barcode!
                    </c:if>
                    <c:if test="${RecordUP3.rowCount == 0 }">
                        <font color="red">    
                        Scaned code not found!!
                    </c:if>
                    <c:choose>
                        <c:when test="${fn:trim(UCD346) eq 'B'}">
                            <c:if test="${!empty  scanedBarcode }">
                                <font color="red">    
                                Barcode has been scaned!!
                            </c:if>
                        </c:when>
                        <c:when test="${fn:trim(UCD346) eq ' '}">
                            <c:set target="${mycar}" property="scanedBarcode" value="${ scanedBarcode} " />
                            <td>    </td>
                        </c:when>
                    </c:choose>
                </td>
            </tr>
            <tr>
                ${mycar.scanedBarcode}               
                <c:if test="${!empty param.moveTNumber && !empty param.Opencut && !empty param.OPCUT}">
                    <c:if test="${empty InvalidCutCode &&   empty ScanCodeNotFound &&  empty scanedBarcode}">  
                        <c:catch>
                            <sql:query  var="OPENCUT99" dataSource="${datasource}">
                                CALL ESRIOSJ.CALLAS18(?,?,?,?,?,?,?,?,?,?,?)
                                <sql:param value="${'1'}" />
                                <sql:param value="${'1'}" />
                                <sql:param value="${'98'}" />
                                <sql:param value="${' '}" />
                                <sql:param value="${' '}" />
                                <sql:param value="${'7'}" />
                                <sql:param value="${'22'}" />
                                <sql:param value="${'CASE#'}" />
                                <sql:param value="${param.moveTNumber}" />
                                <sql:param value="${param.Opencut}" />
                                <sql:param value="${param.OPCUT}" />
                            </sql:query >
                        </c:catch>
                    </c:if>
                </c:if>     
            <td><input   tabindex="4" type="submit" value="Validate" /></td>   </tr>
        </tbody>
    </table>
</form>
</body>
</html>Message was edited by:
RIMA33
Message was edited by:
RIMA33

A quick look to your code:
the <form> has no action attribute, so it is submitting the page... nowhere? ;-)
<form name="Scan" action="/some/servlet" method="post">Hope it helps

Similar Messages

  • Using JSP to set form data and automatically submit

    I am using JSP to extract the authentication details form the header, and then set these values and automatically submit them them to a javascript cookie function. I can extract the information, but setting and submitting to javascript seems to be a problem. I don't want to modify the original code because that may change, and if it does change, they can just copy the jsp block to the new page. Plus there may be more pages where I will need to do the same. Any suggestions?

    I am making this a JSP and hosting it in Tomcat since I already have the authentication extracted and base64 decoded with this at the top:
    <%@page language="java"%>
    <%@ page import="com.Ostermiller.util.Base64 " %>
    <%
    String auth = request.getHeader("Authorization");
         auth = auth.substring(auth.indexOf(" "));
         String decoded = new String(Base64.decode(auth));
         int i = decoded.indexOf(":");
         String username = decoded.substring(0,i);
         String pwd = decoded.substring(i+1,decoded.length());
    %>
    Then it has a form with a field checker and then login function:
    function do_login()
    if (is_ie)
    window.document.authenticate.submitbutton.click();
    else
    window.document.authenticate.submit();
    <form method="post" name="authenticate" onsubmit="return check_fields();">
    Log in
    I was wrong about the cookie. It doesn't set it in that html file, it just checks to see if a cookie exists, if it does, it passes the user through. Normally I would use a cookie bean to do this, but again I have to do this for multiple sites which have different values and encryption. I just want to pass the credentials through and then let the back end do the rest. Do you know of a better way? Thanks for replying.

  • Dynamic Action on change automatically submit

    Hi,
    I have a tabular form (manually handled) with a text item that can be changed (Apex 4.0.2.00.07).
    Each time the user changes the value of the text item, the changes automatically will be submitted.
    Therefore I defined a dynamic action:
    event:onchange
    selection type: region
    with javascriptcode: apex.submit({request:'SAVE'});
    When I leave changed text item with tab-key everything works fine.
    But when I leave changed text item through a button Click only the submit of dynamic action is performed and the button functionality is ignored.
    The button click initiates the onchange event at the changed text item and then ignores everything after this event.
    The enduser will not be able to understand the behavior of the application.
    I have less experience in Java and JavaScript.
    Is it possible to get the information if and which button was clicked, so I can decide at javascriptcode of the dynamic action what is to do?
    Thanks,
    Brigitte

    Region static id shouldn be in bracketsYou missed the '#' informt of the region id.
    why my original PL/SQL process did not work
    FOR i IN 1 .. apex_application.g_f08.COUNTThis works only when the application array has values and that happens only when the page is submitted.When you submit the dynamic action , it isn't.
    This script combined with script to detect changes makes apex page running very slowIf you use that PLSQL code(assuming it works as expected) , then its going to take a server request every-time you change a field in the tabular form and loop though all the array values(if they would be submitted before) and recalculate and compare the checksums . Isn't that going to be very inefficient.
    As for that JS code, it only runs at the client side. You can do all the server side checks on submit, when the user expects some delay due to processing.

  • Adobe 9 Forms Wizard automatic Submit Button - Change Email Address

    Hi,
    I was wondering if someone would be able to assist me with an issue I have.
    I am quite a new user with Adobe 9 Standard and have created an editable form using the Adobe 9 Form Wizard.  The form creates fine but when I create it for distribution it creates a submit button in the top right of the form that can be seen by users who would fill out the form and it puts an email address, subject and attachement details into the button but when I go to edit the form in Adobe 9 I am unable to see this button or edit the details as I wish to change the email address.
    When I first installed Adobe 9 and created an editable form I guess I was prompted for details for this but can not find where I can change these details.
    From investigating this further by opening the form in Adobe 8 then saving a copy and then opening it again in Adobe 9 I can see the button and that the button executes a Java Script, as a work around I tried to edit the Java Script but this does not appear to work.
    Ideally I would not like to use the work around to change it in the Java Script but would like to know what to change to make this work (just for future reference) I would like to find out how to get Adobe to prompt me for the email details again?
    Your assistance is appreciated.
    With Kindest Regards
    Laig007

    I had the same problem with the email address. Took forever to figure out, but fortunately the answer is simple. On the Acrobat menu, go to Edit > Preferences, thenin the Categories section click on "Identity". Whatever name and email address you put there will stay with the document.

  • Distributed form missing "automatic" Submit Form button

    I am going crazy and running out of time.
    I created a form in Acrobat.  I distributed the form using SharePoint.  It worked great.  For me and my test user.  I sent the distributed file to my boss so she could try it and there was no Submit Form button.  The purple forms bar was there; Highlight Fields was there; there was no Submit Form button.  I tried it on another user's computer and no Submit Form was there.  I tried it on our terminal server with a test user (set up like a standard user), and there was a Submit Form button.  I tried it on a computer outside our network and no Submit Form button was there.  I also had my boss try it in the terminal server (known working computer) and no Submit Form button was there.
    I have looked around the net and found a JavaScript reference that hid a Submit Form button, but that is a different, ugly, email-only button meant for backwards-compatibility.
    This is so effing frustrating.  I can't find a single reason the Submit Form button will show up for some and not others.
    I submitted it via e-mail.  I open it within Terminal Services, logged in as me, and the Submit button wasn't there.  I open it with my Test user (a standard user, not admin or anything) and the Submit button is there.  I open it on my local machine and the Submit button is there.  WTF IS GOING ON, ADOBE???  I am so frustrated right now.

    On this machine I only have AA5. I was able to open the first form, but saw no submit button anywhere. The second form would not open. I might try it with AA7 a bit later (the only versions I have at home).
    I was able to check the various radio buttons and type in the text boxes. The text boxes seem to wrap correctly.
    I assume folks will be fine with the exceeds expectations being on the left. In many surveys, the best is on the right and not on the left. However, I am not sure there is any standard for that and you have been consistent. I was wondering how you were going to take care of the signatures. It looks like you are going to do them by hand - I guess the advantage is that all the signers would see the entire evaluation before signing. The alternative would be to introduce digital signatures in some sense, possibly using the Acrobat route.
    Again, I see no submit button. Bill

  • How to automatic submit a page if a field is filled?

    Hello,
    still I have the problem to give my users a simple method for login. MOD_NTLM cannot be used because we have windows 2003.
    So I had another idea. I create 2 hidden items on the login-page (101). These fields I fill with the URL: http://bondbmstst01.eba.local:7777/pls/htmldb/f?p=101:101:::::P101_P1,P101_P2:Uxxyu],qopp€€
    The character at the end of the line are crypted the username and password. I fill the items P101_USERNAME with "select encrypt_auth(:P101_P1) from dual", the password is the same.
    Now I have only to press the LOGIN-Button to login. But I would have, that if the hidden item P101_P1 is filled, the button is hit by automatic or the page submitting is automatic.
    Is this possible?
    Regards,
    Mark

    Hello Mike,
    it is not exact this. In normal the login-page has 2 items, one for username, one for password. To login I have to fill out the both fields and press enter or click "Login". This is good so.
    Another way to login should be, that I write the username and password in the URL and fill two hidden items. If the page is loaded, I will check the both hidden fields and make a automatic login - without a user have to write anything.
    I can fill the items P101_USERNAME and P101_PASSWORD, but after that a user have to click on the button "LOGIN", but I dont want, that a user have to do anything to login.
    I hope, it is now a little bit clearer.
    Regards,
    Mark

  • Automatic submit button

    How can i remove the submit button when trying to distribute my form?

    Hi,
    To export a FormsCentral form as a PDF that is not submission-enabled, you should use the File | Save as PDF Form... menu item.
    Regards,
    Brian

  • How to automatically submit a form without clicking the button?

    Hi,
    Is there any way to submit a form without clicking the button? Any idea is greatly appreciated.
    -Joey

    well if you are filling some textfields you can do a onchange call so you can submit the form, or use any of the existing functions to do that.

  • Automatic submit when popuplovkey item changes

    good morning every body.
    In an updateable report, i have a popupkeylov item.
    i want the page to be submited when the user changes the value of the item.
    in the element attribue of the report item i set the following : onChange="javascript:doSubmit('POP');"
    and i have created an after submit process on a condition:
    request=POP, I do some operations in this process.
    and I have a redirect branch to the same page.
    Nothing is happening when the value of the item is changed?
    any idea for this issue ?

    Hi Tamas,
    you can do this by using a little bit javascript.
    Add onchange="javascript:doSubmit('SUBMIT');" to your item in section "Element => HTML Form Element Attributes".
    In Apex 4.x you should rather use: onchange="javascript:apex.submit('SUBMIT');" or - even better - configure a dynamic action!
    Regards,
    Jens

  • Automatically Submit Start Button on Worklfow Page

    Is there a way to force the "Initiation" form of a workflow to click the "Start" button?
    What I really want is to use a "Custom Action" on a list to start the workflow without having to go to the first page where the Start button is.
    David Jenkins

    Hi David,
    According to your description, my understanding is that you do not want to redirect to the workflow start page.
    Here are two ways for your reference:
    1. You can create a JavaScript function and call the function when clicking the button in the ribbon.
    function StartWorkflow(ItemURL, ItemID) {
    var loadingImage = ‘Loader’ + ItemID;
    var workflowDiv = ‘WorkflowDiv’ + ItemID;
    //Show our loading image
    document.getElementById(loadingImage).style.visibility = ‘visible’;
    $().SPServices({
    operation: "StartWorkflow",
    item: ItemURL,
    templateId: "{04ee1c93-f6b7-49b3-a79c-fa3142ecd688}",
    workflowParameters: "<root />",
    completefunc: function() {
    document.getElementById(workflowDiv).innerHTML = ‘Workflow Started’;
    Mor information, please refer to the link:
    http://spservices.codeplex.com/wikipage?title=StartWorkflow
    2. You can create a ribbon button using visual studio 2010 and start workflow using C# code.
    http://blogs.msdn.com/b/jfrost/archive/2009/11/06/adding-custom-button-to-the-sharepoint-2010-ribbon.aspx  
    http://jainnitin2411.wordpress.com/2012/07/06/programmaticallystartsharepointworkflow/
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Can I auto submit a WebApp Search form (with javascript) so the results show up automatically?

    Can I automatically submit a WebApp Search form (with javascript) so the results show up automatically?

    yes. I also interested in how to do it.

  • Automatically generate accruals for Parked Invoices

    Dear SAP Gurus,
    I am currently in the process of trying to improve our month end accrual process.
    We currently have a standard process where we issue a PO, book in the delivery and then process the invoice. Occasionally we have instances where the invoice is received before the GRN is completed (the goods havent actually arrived or a User has forgottent to book in the Goods Receipt).
    In this instance we park the invoice and then complete once the GRN has been booked in.
    My question is is it possible to automatically accrue these parked invoices at month end without having to download and then post via a journal?
    Is there some way of using the accrual engine to account for these parked invoices at month end?
    Thank you for you time.
    Regards
    John

    Hello.
    To initiate a new payment batch, enter criteria for the invoices you want to pay. Payables selects all invoices that match your invoice selection criteria and that are ready for payment.
    You can initiate payment batches from either the Payment Batches window or the Payment Batch Sets window. You can also schedule payment batch sets to automatically submit at regular intervals.
    And yes, the payment batches consist on standard concurrent requests. You can access payment batches by naviganting to Payments/Entry/Payment Batches.
    As you know, you can classify your suppliers in a Payment Group. Suppose you have, lets say, 150 suppliers, all belonging to the same Payment Group. All invoices from these suppliers can be paid on a single payment batch.
    Octavio

  • Radio Group with submit is clearing page in IE But not in Firefox

    I have an incompatibility issues in an app which works correctly in Firefox but does not work in Internet Explorer for myself and other users. I have an item (Yes or No) set as a Radiogroup with Submit with the source set as only when current value in session state is null. In Firefox the value is retained, If I select Yes or No, the page does an automatic submit and the value I selected is returned correctly. However in IE, when the auto submit is done the value is set as null. What could be causing this to work correctly in Firefox and not in IE?
    Edited by: Ed S on Sep 24, 2008 2:07 PM
    Edited by: Ed S on Sep 24, 2008 2:08 PM

    I found the problem. The items in question are in a SQL Region generated from the wizard as an SQL report. When I move these items into an HTML region it works correctly. This is an APEX bug. I also noticed Date Picker items within a report region do not work, you are unable to select the date.
    Edited by: Ed S on Sep 24, 2008 4:15 PM

  • Automatic row processing in a validation

    Hi,
    I have a form on a table (page11) with one process for automatic row processing and I have the buttons Submit and Create.
    I have another button f.e. BUTTON_NEW. I have a validation (function returning error text) with "BUTTON_NEW" as When-Button-pressed-Condition. In the validation I did an Insert into another table.
    I changed values of items on Page11 and don't press Submit. And then I press "BUTTON_NEW". The validation on BUTTON_NEW works fine. But the changed values are lost. Is there a possibility for an automatic "Submit" or "Create" when BUTTON_NEW is pressed?
    Thanks, Daniela

    Hi,
    these are the values I currently see:
    108 14 P14_SELECTEDSS Display as Text (escape special characters, does not save state) No
    108 14 P14_CHARACTERISTIC_ID Hidden and Protected Reset to Null No
    108 14 P14_SHAREDSERVICE_ID Text Field 30 Inserted No
    108 14 P14_CAPTION Text Field No
    108 14 P14_CATEGORY_ID Select List No
    108 14 P14_WEIGHING Text Field No
    108 14 P14_DESCRIPTION Textarea No
    I also have to say that I deleted the computations I created earlier again cause they did not work and I had the same values for these variables. I am trying to (pre)set P14_SHAREDSEVICE_ID to P13_SELSS when I click the create button on page 13.
    Thanks again,
    Henrik

  • NEWBIE: Submit Page to set session state

    I have a form that displays various items to include Popup LOVs (dynamic; based on session variables). If the user displays a page, the session state is not yet set so the Popup LOVs don't function correctly (until the user presses the Apply Changes button to submit the page). Can I automatically submit the page or set session state for those items used in the LOVs on page load? Note that I'm not too familiar with the use of javascript. I'm using Application Express version 2.0

    Yes, I discovered that! Thanks for responding, though. I basically run a process (PL/SQL) under page rendering section that looks like:
    begin
    htmldb_util.set_session_state('P10_MACHINE_TYPE','&P10_MACHINE_TYPE.');
    end;
    Thanks!

Maybe you are looking for

  • How to change Dunning Text in Adobe form

    Hi All, In Dunning Adobe form I need to replace standard dunning text with my custom text. I found the node for that, but in that text node I am not able to fond where from that text is coming. Please Help me out in this. Form Name :f150_Dunn_SF(Adob

  • Connect to broadband wireless, but not through Airport Extreme b/g

    I have had an Airport Extreme BS working as a Gateway to my Wireless Broadband service since last July. The AEBS has been providing internet to a WinXP laptop, and an iMac running OSX 10.5.2. This has been working well since installed. My Wireless Br

  • IPad 2 WiFi Range Issues (but not issues with connectivity when in range)

    Okay. I hate to start a new thread when there are bunches of threads on the iPad 2 having WiFi problems (particularly with 5Ghz networks and also related to 4.3). Nonetheless, I'm not seeing anyone talking about range in these forums. Issue: iPad 2 W

  • Problem while converting requasation to PO??

    Hi Friends,, I need some urgent help with this issue, we are unable to convert the req to a PO due to error SD 18024 on the MM side.  On the SD side the error message No pricing listed because PO was not selected" occurs.  The SO is complete, Credit

  • Mobileme login not working for Aperture

    Aperture never seems to believe that mobileme is logged in. If I try to publish a gallery, or look in the aperture prefs, it just sez that mobileme isn't logged in. It is. ??