Submit button behaviour based on signature reason.

I have a form where the signature requires two reasons (Approved/not approved).  On submit I want the data to be forwarded if approved but sent back to the sender if rejected.
Any assistance appreciated.

Hi Niall,
Like the neat scripting.  However I was trying to avoid the extra radio button click.  In the signature block I have mandated the signatee to choose an option in the signature reason message box.  That doesn't seem to save anywhere and the script I used fails to find a result.  I may have to resort to tried and true.
Paul Donaldson
RN PNC BHlthSc(Nurs) MSchMgmt AFCHSM
Director Of Nursing
Julia Creek Hospital
1 Burke Street, Julia Creek, Qld 4823
Member IT 14-02 Clinical Terminologies and 14-09 EHR Interoperability Committees
Phone: (07) 47464000
Fax: (07) 47467508
Mob: 0417 766 061
"Change is disturbing when it is done to us, exhilarating when it is done by us." Rosabeth Moss Kanter - Harvard Business School
>>> "Niall O'Donovan" <[email protected]> 08/11/2011 5:34 pm >>>
Re: Submit button behaviour based on signature reason. created by Niall O'Donovan ( http://forums.adobe.com/people/Niall+O%27Donovan ) in LiveCycle Designer ES - View the full discussion ( http://forums.adobe.com/message/4013110#4013110 )
Hi,
Are the options for approved or not approved set up as radio buttons? If so then you could specify the values of the radio buttons as the appropriate email addresses (see the Object > Binding palette). See an example here: https://acrobat.com/#d=qE1IszHcL6589QQYB7ceGg.
Then a custom email button could use the rawValue of the radio button exclusion group, as the To email address. See examples here (third button is a custom email submit button): http://assure.ly/fiTm2i.
Hope that helps,
Niall
Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4013110#4013110
To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4013110#4013110. In the Actions box on the right, click the Stop Email Notifications link.
Start a new discussion in LiveCycle Designer ES by email ( mailto:discussions-community-livecycle-livecycle_es-livecycle_designer_es@mail.forums.adobe.com ) or at Adobe Forums ( http://forums.adobe.com/choose-container!input.jspa?contentType=1&containerType=14&contain er=3318 )
For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.
This email, including any attachments sent with it, is confidential and for the sole use of the intended recipient(s). This confidentiality is not waived or lost, if you receive it and you are not the intended recipient(s), or if it is transmitted/received in error.
Any unauthorised use, alteration, disclosure, distribution or review of this email is strictly prohibited.  The information contained in this email, including any attachment sent with it, may be subject to a statutory duty of confidentiality if it relates to health service matters.
If you are not the intended recipient(s), or if you have received this email in error, you are asked to immediately notify the sender by telephone collect on Australia +61 1800 198 175 or by return email.  You should also delete this email, and any copies, from your computer system network and destroy any hard copies produced.
If not an intended recipient of this email, you must not copy, distribute or take any action(s) that relies on it; any form of disclosure, modification, distribution and/or publication of this email is also prohibited.
Although Queensland Health takes all reasonable steps to ensure this email does not contain malicious software, Queensland Health does not accept responsibility for the consequences if any person's computer inadvertently suffers any disruption to services, loss of information, harm or is infected with a virus, other malicious computer programme or code that may occur as a consequence of receiving this email.
Unless stated otherwise, this email represents only the views of the sender and not the views of the Queensland Government.

Similar Messages

  • How to open a new window from submit button &dialog page in current window?

    We have a requirement, wherein we have a OAF search page for PO lines with search criteria, Go button to search ,result region (table layout) and a submit button(Create new expedite).
    1. Now user can select some lines from result region and click on Submit button.
    2. On click of submit button we need to pop up a window or may be a dialog page asking that " Do you want open supplier web link portal or not?".
    3. If user clicks yes(in Dialog page) then first fetch the URL from a look up maintained in Oracle EBS on the basis of supplier of the lines selected and then open that URL in a new window and side by side we need to open a dialog page in search page asking "whether user has updated the expedite info in supplier portal or not?". On basis of this we need to updated some count in custom tables.
    So in step 3 i am facing problem, that how to open an URL in a new window through a submit button and side by side want to open a dialog page in the current window also.
    Hope a quick response from you all.
    Note:- To open a custom page we can have a link or button(button of type button and not submit button) on base page with destination url property as following javascript:
    javascript:var a = window.open('OA.jsp?page=/XXX/oracle/apps/xxx/......&retainAM=Y', 'a','height=500,width=900,status=yes,toolbar=no,menubar=no,location=no'); a.focus();
    So the question is how to do the same for submit button on OAF page???

    Antriksh,
    You just need to attach a submit action in button bean and not submit button bean, based on the output of confirm type of alert in javascript.
    Here is code u need to put in destination url of the button:
    //replace <confirm message> by message you want to show.
    javascript:input=confirm('<confirm message>');if(input==true){submitForm('DefaultFormName',0,{XXX:' abc'});}" Now in the process request of the base page CO, u can get parametre 'XXX' from the pagecontext....so
    if((("abc").equals(pageContext.getParameter("XXX"))))
    {/// custom LOGIC }
    The same i have replied in your mail. I hope this resolves the issue.
    --Mukul

  • Populating textbox in jsf on clicking submit button

    I am having inputText box, dropdownlist , outputText box and a submit button in my jsp page.
    I am pre populating the dropdown list from my managed bean. Also setting the values using setter methods that is input in inputText box and dropdownlist using managed bean.
    On clicking the submit button and based on selected item from the drop down list, I need to perform populating outputText box with return string from getter method from bean.
    But I am not sure how to handle this. Please find few lines of code below...
    <h:inputText id= "mnNum" value="#{UserBean.mnNum}" size="18" maxlength="17" styleClass="TxtSz12 LH18" tabindex="1" title="Man Number"/>
    <h:selectOneMenu id="lstService" value="#{UserBean.serviceType}" tabindex="3">
       <f:selectItems value="#{UserBean.getServiceItems}"/>
    </h:selectOneMenu>
    <h:commandButton  action="#{UserBean.submit}" id="submitButton" value="Generate"/>
    <h:outputText value="#{UserBean.getRequest}" />
    public class UserBean extends FacesBean {
    public String submit() {...}
    public void setServiceType(String serviceType) {...}
    public String getRequest() {
    if(serviceType.toString()=="SearchService")
    return "abc";
    else if (serviceType.toString()=="basicService")
    return "xyz";
    else
    return null;
    }Please assist how to do it when submit button is clicked. I can redirect to different jsp file on click of the submit button. But I dont want to do that and I need to populate the output textbox in the same page !
    If anything is not clear please let me know. Thanks in advance.
    Edited by: 901007 on Jan 13, 2012 4:11 AM
    Edited by: 901007 on Jan 13, 2012 4:13 AM

    Page is coming up but lstService dropdown box is not displayed at all. But mnNum inputText and submitButton is showing properly.
    Also after pressing submit button, "abc" text must be displayed in outputText box. But its also not displayed. Instead, the below error is shown,
    Error opening /portlets/tools/webservicehelper/webservicehelper.faces.
    The source of this error is:
    java.util.MissingResourceException: Can't find bundle for base name resources.bundles.ValidationMessages, locale en at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:1521) at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1260) at java.util.ResourceBundle.getBundle(ResourceBundle.java:962) at javax.faces.component.MessageFactory.getMessage(MessageFactory.java:102) at javax.faces.component.MessageFactory.getMessage(MessageFactory.java:175) at javax.faces.component.UIInput.validateValue(UIInput.java:1001) at javax.faces.component.UISelectOne.validateValue(UISelectOne.java:130) at javax.faces.component.UIInput.validate(UIInput.java:868) at
    Any problems in below code?
    My entire code below for UserBean.java and webservicehelper.jsp.
    package net.verizon.portlet.bean;
    import javax.faces.application.FacesMessage;
    import javax.faces.component.UIComponent;
    import javax.faces.component.UIInput;
    import javax.faces.context.FacesContext;
    import java.io.Serializable;
    import java.util.LinkedHashMap;
    import java.util.Map;
    import javax.faces.*;
    import javax.faces.model.*;
    import java.util.*;
    public class UserBean extends FacesBean {
         private static final long serialVersionUID = 1L;
         private String mnNum;
         private String serviceType;
         private String txtVal;
         public String getmnNum() {
              return mnNum;
         public void setmnNum(String mnNum) {
              this.mnNum = mnNum.toUpperCase();
         public String getServiceType() {
              return serviceType;
         public void setServiceType(String serviceType) {
              this.serviceType = serviceType;
         private ArrayList<SelectItem> serviceItems = null;
         public ArrayList<SelectItem> getServiceItems() {
              serviceItems = new ArrayList<SelectItem>();
              serviceItems.add(new SelectItem(null,"select one..."));
              serviceItems.add(new SelectItem("SearchService","SearchService"));
              serviceItems.add(new SelectItem("basicService","basicService"));
              return serviceItems;
         public String submit() {
              try {                    
                         txtVal = "abc";
              catch(Exception e) {
                            logger.error("error in submit method" + e);
              return null;
         public String getRequesttxt() {
                   return txtVal;
    --webservicehelper.jsp
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="http://bea.com/faces/adapter/tags-naming" prefix="netuix" %>
    <%@ taglib uri="http://www.bea.com/servers/portal/tags/netuix/render" prefix="render" %>
    <f:view>
         <h:form id="wnInputForm" onsubmit="return validateLoginForm();">
             <h:messages layout="table" globalOnly="true" style="color: red"/>
             <h:panelGrid columns = "2" width="100%">
                  <h:panelGroup>
                       <h:panelGrid columns="1" cellpadding="6" width="400">
                       <h:panelGroup style="white-space: nowrap;">
                            <h:outputLabel value="Man Number" for="mnNum" escape="false"/>
                       </h:panelGroup>
                  <h:panelGroup>
                       <h:inputText id= "mnNum" value="#{UserBean.mnNum}" size="18" maxlength="17" tabindex="1" title="Man Number"/>
                  </h:panelGroup>
                       </h:panelGrid>
                  </h:panelGroup>
                  <h:panelGroup>
                       <h:panelGrid width="700">
                       <h:panelGroup>
                                      <h:outputText value="#{UserBean.requesttxt}" />
                            </h:panelGroup>
                       </h:panelGrid>
                  </h:panelGroup>     
                  <h:panelGroup>
                       <h:selectOneMenu id="lstService" value="#{UserBean.serviceType}" tabindex="3">
                            <f:selectItems value="#{UserBean.serviceItems}"/>
                       </h:selectOneMenu> <br>
                                <h:commandButton action="#{UserBean.submit}" id="submitButton" value="Generate"/>
                  </h:panelGroup>
             </h:panelGrid>
               </h:form>
    </f:view>Edited by: 901007 on Jan 16, 2012 8:07 AM

  • Help with submit button, signatures and locking fields

    https://acrobat.com/#d=sCcToPsLqquP0uePmVL1pQhttp://https://acrobat.com/#d=ZsRL5CeME*4iV3VHnvUFXw
    Well here's a doozy for ya. I have no idea what I'm doing as you will be able to see when you look at my form.
    What I want to happen is to have the user fill out the form, choose the operations manager and select submit button associated with the drop down box. All other dropdown boxes and submit buttons should be hidden. I need the form to lock so there are no edits except the signature field, the next dropdown box and submit button. I'd like to customize the email with a specific subject line and specify the email address based on the person selected from the drop down box. I'd like this to repeat itself until there are no more signature fields left. It is very important that this document follow the order specified.
    I tried to use an example Niall put out there to use regular buttons as submit buttons with script. I changed a couple things and it worked to submit the form based on the person selected but I still do not know how to lock the fields. Long story short, I broke what did work and don't know how to do what I really want to do or fix what had once worked. I don't understand javascript so please, if you're willing to help teach me, be patient and spell it out like i'm speaking a foreign language.
    Oh boy, even I don't want to do this. What a mess!

    I believe that you should re-post this in either the Forms or the Designer forum.  You are more likely to get the right folks to look at it there.
    Generally this forum is for building custom Document Service Component (DSC) plugins that extend the LiveCycle ES server side product.

  • Can not keep drawable signature option in reader on a form with a mailto: submit button added.

    I hope someone has run into this.  I have acrobat 11.0.10 to create fill-able forms and reader 11.0.10 to view and fill them.  Do to the nature of the forms a drawn signature is required and is available right up until I add a submit button with a mailto: action.  Then all that is available in the reader is the digital certificate.  I should add that I save the form without reader extensions.  Is there a way to add the auto-adressed mailto function for the person filling the form and still keep the drawable signature option for signing?

    - is it possible to have more than one form on the page. If so how do
    I determine which form is submitted isDefined('form1'),
    isDefined('form2') does not seem to work,
    /quote
    Yes.
    - if there are two buttons in the form how can I tell which one was
    preses as both seem to return true when tested with isDefined()
    /quote
    Give the buttons different name attributes. On your action page check
    with StructKeyExists(Form, "name_of_first_button") and
    StructKeyExists(Form, "name_of_second_button") which one was pressed.
    Mack

  • Signature with Submit Button

    Hi,
    I was wondering if it was possible to include an EchoSign signature as a replacement for the submit button within my survey.
    Thanks,
    Alex

    Hi,
    This is not something we currently support but you can add or vote on feature ideas:
    http://forums.adobe.com/community/formscentral?view=idea
    If you need to add a new idea click "Create an idea" under "Actions" in the top right.
    Thanks

  • RESOLVED - iExpense: Disable Submit Button based on checkbox not working

    Hi,
    We have a requirement for a checkbox in iExpense Review form(FinalReviewPG) where there should be a checkbox stating the terms and policies are met etc. Unless the user checks the checkbox the SUBMIT button shouldnt be enabled. I am creating the custom checkbox using personalisation in the page with initial/unchecked value as N and checked value as Y. This is created at SITE level.
    Now I have also created a custom controller extension xxButtonCO to extend the standard ButtonsCO controller which should do the disable/enable of the button OIESubmit. I ported this controller to the custom top and have extended the controller to both OIE Expenses Entry Flow function and Internet Expenses responsibility. But the checkbox though visible is not affecting the SUBMIT button. Also funnily, I save the controller class as xx.oracle.apps.ap.oie.webui.xxlcButtonCO and click apply only to see this concatenated to apps.ap.oie.webui.xxlcButtonCO / Function.
    Is that causing an issue? Also, sometimes I just run into an arbitrary NULL pointer exception and other times it says oracle.apps.fnd.framework.OAException: Could not create Java class. I have verified the class file not java file is in correct directory and has right permissions.
    What could possibly be wrong here?
    Edited by: 865082 on Jun 15, 2011 5:33 AM
    Edited by: 865082 on 20/06/2011 22:21

    Hi Kali,
    Many thanks for your response. I have quit trying to run this page directly from the instance and am now trying to do this firsly from the JDeveloper. The same issue is occuring from that end as well. My checkbox value is not getting recognised in the code. The checkbox is added to the Business Expenses tab and the intial/unchecked value is N while the checked value is Y. I am trying to control the submit button in the buttonbar based on the checkbox value using the following command
    OAMessageCheckBoxBean cbbean = (OAMessageCheckBoxBean)webBean.findChildRecursive("XXReviewCheck");
    where XXReviewCheck is the checkbox ID. However the print statements show that the cbbean is null. It is definitely calling the controller and trying to figure out the value. The value is just not coming to this section. Any ideas?

  • Using script in a dummy submit button to check for digital signature

    Is it possible to add script to a dummy submit button to stop it from submitting if a signature field is not signed?  Perhaps adding something like what I have below.  I know the syntax isn't right.  I just haven't been able to get it to work.  Thanks.
    if (SignatureField1 == null)
         xfa.host.messageBox("Please digitally sign before clicking Submit!");

    Thanks, I took a look at that.  I couldn't make that solution work for me because there are four submit buttons in my form, as it passes through several reviewers.  So what I had to do is enter the code below into the Click event for each section's Submit button, so that it at least gives a reminder to sign before submitting.  It doesn't stop the e-mail from popping up, though, unfortunately.
    var oState = event.target.getField("form1[0].Page4[0].DeptReview[0].EA_Signature[0]").signatureValidat e()
    if (oState == 0)
      xfa.host.messageBox("You have not signed the form. \n\nPlease click OK and then click the signature field to sign the form. \n\nThank you!");

  • When i placed a AccessKey to Submit Button (Eg: AccessKey="S"), and pressed Shift + Alt + S, the focus is going to Submit button and as well as Submit operation is also performed. Is this the expected behaviour in FireFox for AccessKeys

    When i placed a AccessKey to Submit Button (Eg: AccessKey="S"), and pressed Shift + Alt + S, the focus is going to Submit button and as well as Submit operation is also performed. Is this the expected behaviour in FireFox for AccessKeys

    What were you expecting when using an accesskey?
    I use that also on this forum to submit my posts:
    <pre><nowiki><input accesskey="s" class="btn btn-important" value="Post Reply" type="submit">
    </nowiki></pre>

  • How to get  current row(Based on Radio button check)  submit button Click

    Hi i hava Query Region Search(Based On Auto Customization Criteria).
    For Showing Results iam Using Table Region.
    Using Radio button How we get the row reference value using Submit button Click.
    Please Help on this .
    Thanks & Regards
    San

    Hi san ,
    Try this
    if ("EventID".equals(pageContext.getParameter(EVENT_PARAM)))
    String rowRef = pageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
    OARow row = (OARow)am.findRowByRef(rowRef);
    VORowImpl lineRow = (YourVORowImpl)findRowByRef(rowRef); // Replace your vo name .
    Please refer this link , Let me know if its not clear .
    Single Selection in table Region in OAF .
    Keerthi

  • How do i add and email based submit button to a form

    how do i add and email based submit button to a form

    See this: http://help.adobe.com/en_US/acrobat/using/WSBB6EF75F-BC3D-4094-B787-FB76DAE1EBDC.w.html

  • Signature field and submit button not working

    I recently upgraded to LiveCycle Designer ES2 and am having problems with some functionality.  I created a form with 3 signature fields and a submit button for the final signator to email the form back.  None of the signature fields work; neither does the submit button.  I did everything the same as I had in the previous version of the software.  However, it appears that there have been some changes that I'm unaware of.  I read about locking objects, but got a little confused.  Can someone tell me (in very lay terms) what I need to do to get these functions to work? 

    George,
    Then, I guess I don’t know what I’m looking at.   When I look at the document properties, it shows that rights have been granted.  See the screen shot below.
    Would you tell me how I should enable Reader?
    Gloria
    Gloria Díaz
    Gloria Díaz

  • Re windows based Acs-4.2.1.15.3 Submit button does not show up

    Interface Configuration>Tacacs+ submit button page shows error page cannot be displayed i am not able to submit it
    Anyone has any idea this is after the upgrade to Acs-4.2.1.15.3. I have tried with almost all the browsers and different java version. Also tried to install it on different machines but same problem. Please refer the screen shot

    Manish,
        I just installed 4.2.1.15 patch 3 on server and refer to the attached screenshot, submit button did show up and it worked fined. Please also make sure you meet the requirements for ACS 4.2.1 as per the link below
    http://www.cisco.com/en/US/docs/net_mgmt/cisco_secure_access_control_server_for_windows/4.2.1/Installation_Guide/windows/install.html#wp1041324
    Verify Java using this link
    http://www.java.com/en/download/installed.jsp
    Make sure Windows server meet the requirement as per url
    Note: Please do rate the answer

  • Email-based submit button not working

    I'm using a Mac. I'm taking an illustrator CS3 file saving it as a PDF opening it in PDF Pro. 8 making the form fields. I make a submit button with a mailto: and place it on my site. For macs it works flawlessly. When I hit the email submit button on a PC running Vista I get an error "this operation is not permitted". Has anyone run across this? Please help.

    Dennis,<br /><br />Click on the Email button then go to the XML tab. You should see the below XML (wherever you are clicked on the form, adobe will take you to that in XML): <br /><field h="6mm" name="EmailSubmitButton1" relevant="-print" w="34.925mm" x="150.6524mm" y="5.7664mm"><br /><br />            ......<br /><br />               <submit format="xml" target="mailto:[email protected]?subject=IPS Customer Submission Form" textEncoding="UTF-8"/><br /><br />Notice the <submit format='xml' change that to 'pdf', and your document will then email in a pdf format. <br /><br />Email me if you need more explation. [email protected]

  • I am filling out an application and when it gets to the signature portion my reader pulls it up but won't let me hit the submit button. Why is this happening?

    I am filling out an application and when it gets to the portion my reader pulls it up but won't let me hit the submit button. Why is this happening to me?

    Hello, kcanole. 
    Thank you for visiting Apple Support Communities. 
    Here are a couple troubleshooting articles that I would recommend going through when experiencing this issue. 
    Resetting iPod shuffle
    http://support.apple.com/kb/ht1655
    iPod not recognized in My Computer and in iTunes for Windows
    http://support.apple.com/kb/ts1369
    Restoring iPod shuffle to factory settings
    http://support.apple.com/kb/ht1481
    Cheers,
    Jason H. 

Maybe you are looking for

  • How to get an early upgrade on a phone?

    Hello Verizon community. I have an iPhone 4S right now and for some reason my upgrade is on 9/28/12. I really want the iPhone 5 (4SS, whatever it will be called haha) which should be announced and the preorders should go out on the 12/13th. I know ve

  • Sourcefire - Malware cloud lookup fails with 'cloud lookup timeout'

    Hi, I am performing malware clould lookup using FirePOWER on ASA. I see the file event when I transfer the file, but the FireSIGHT is unable to  submit the file SHA-256 for cloud lookup. It times out. The FireSIGHT management IP is able to access the

  • Where is the fod schema

    can someone point me to the fod schema install scripts used for the storefront demo? a found a link that said http://st-curriculum.oracle.com/obe/jdev/obe11jdev/11/common/files/FOD_11.zip but that is giving me a 404 error

  • Opening different file with iWeb

    Hard drive went....I have aback up copy of My iWeb site. With newly reinstalled iweb I am not able to open my old site...I tried renaming the folder to Domain as suggested by one of the support articles...but to no avail, Any advice? Devin

  • Passing properties file to portal

    Hi experts, I have one application which was built on PDK. I have one properties file which holds connection information of backend. now how can i pass these properties file to portal. In webdynpro java, we can achieve this using application paramete