Field values for text changes 'true' when I click on submit by e-mail button

I have a logic in my button send email to determine who should receive the form based on the information contained in the form.  Based on my sample code, when I click the submit by e-mail button and TextFiel4.rawValue's D781008CX03, it will really change the value in TextField4 to "true" when you submit the form.  What can I do to solve this problem?

If

(TextField4.rawValue = 'D781008CX03' & & CheckBox10.rawValue == true) { }

var myDoc = event.target;

() myDoc.mailDoc

false,

[email protected]

, "" , "" ,

"Add request of.

+ FuelRating.rawValue

"You have a new industrial request to add.

+ FuelRating.rawValue

);}

Hello

In your test for TextField4 you are missing a second equal sign:

if (TextField4.rawValue == "D781008CX03" && CheckBox10.rawValue == true) {
     // script
}

Hope that helps,

Niall

Tags: Adobe LiveCycle

Similar Questions

  • an error "file does not have a program associated with it for performing this action" when you click office and recent places.

    Original title:

    Win7 victory explrer click dsktop & mployment plces & get eror msg file is not a CDSA wth to prfrmin ths field prgrm. pls instl one prgrm so is alrdy instld Credit Union assc ltvds cntrl pnl prgrms

    I don't know how to fix. Help, please.    Win7 windows Explorer click

    Office & recent locations & grterror msg:
    This file does not have a program associated with it for performing this action. Please install a program or, if it is already installed. create an asssociationin the default programs control panel.
     
    Information given in the new thread:
    Error Msg When you try open office spaces & recent since the win Explorer

    when im in windows Explorer and click on the desktop or the recent places the link I get a msg of error and they will not open, but all others open. I posted pictures of error msg to skydrive yesterday.

    Hello

    Welcome to the Microsoft Community Forums.

    I see you've found an error "file does not have a program associated with it for performing this action" when you click office and recent places.

    1. Have you made changes on the computer before this problem?
    2. What is the full error message?

    I suggest you to report to us the screenshot of the Advanced window so that we can understand what exactly the situation.

    See:
    Use SkyDrive download collected files and post screen shot/image
    http://social.technet.Microsoft.com/forums/en-us/w7itproui/thread/4fc10639-02dB-4665-993a-08d865088d65

    The average while you can try the following steps and check if the error reappears.

    Method 1:

    Step 1:

    Start the computer in safe mode and check the number.

    Some options, including the mode safe mode, start Windows in a limited State, where only the essential is started. If a problem doesn't reappear when you start in safe mode, you can eliminate the default settings and basic device drivers and services as a possible cause.

    Follow this link provided below to start your computer in safe mode.

    http://Windows.Microsoft.com/en-us/Windows7/advanced-startup-options-including-safe-mode

    Step 2:

    Put the computer to boot and check if the problem persists.

    To help resolve the error and other messages, you can start Windows 7 by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/kb/929135

    Note: After troubleshooting, be sure to set the computer to start as usual as mentioned in step 3 of the KB article provided above.

    Method 2: I also suggest that you scan your computer with the Microsoft Security Scanner, which would help us to get rid of viruses, spyware and other malicious software.

    The Microsoft Security Scanner is a downloadable security tool for free which allows analysis at the application and helps remove viruses, spyware and other malware. It works with your current antivirus software.

    http://www.Microsoft.com/security/scanner/en-us/default.aspx

    Note: The Microsoft Safety Scanner ends 10 days after being downloaded. To restart a scan with the latest definitions of anti-malware, download and run the Microsoft Safety Scanner again.

    Important: During the scan of the hard drive if bad sectors are found, the scanner tries to repair this sector, all available on which data may be lost.

    It will be useful.

    Back with the details so that we can help you further. We also indicate the result of the suggested steps.

  • When I click on my Windows Live Mail

    When I click to open Windows Live Mail I get a messge: albun photo editing - and a slider to half way through (showing 1 photos 2 have removed). It doesn't answer what either now. I can't get rid of the notice. It will not finish loading and does not allow me to do SOMETHING. Whenever I try to open my email, I get this message and can't open any email or get rid of the notification.  What should I do?

    Stan

    New Thread Description:

    My Windows Live Essentials is stuck in a mode of loading. This I cannot do something. I can't open or use my email somehow. Please notify. Maria replied but couldn't do what it suggests.

    Stan

    Hello

    Thanks for the reply with the issuing State.

    In this case, it would be better to reinstall Windows Live Essentials and check if it helps.

    Step 1: See the following article to uninstall Windows Live Essentials.

    http://Windows.Microsoft.com/en-us/Windows/uninstall-change-program#uninstall-change-program=Windows-7

    Step 2: Download and install Windows Live Essentials from the following link.

    http://Windows.Microsoft.com/en-us/Windows-Live/Essentials

    Please reply with the status of the issue so that we can better help you.

  • Field values for replacement Case statement

    Hey,.
    I need assistance with a CASE statement to display some values of field based on another field value.
    This is data of table DEPT
    DEPTNO       DNAME              LOC
    10               ACCOUNTING     NEW YORK
    20               RESEARCH         DALLAS
    30               SALES               CHICAGO
    40               OPERATIONS     BOSTON
    It comes to my select statement.
    SELECT DEPTNO, DNAME,  
    (CASE LOC
        WHEN 'NEW YORK' THEN ''
      --WHEN LOC = 'NEW YORK' THEN DEPTNO = ''
      --WHEN LOC = 'NEW YORK' THEN DNAME = ''
    END) AS LOC
    FROM DEPT
    When I Uncomment the two lines I get an error message. The results are
    DEPTNO       DNAME              LOC
    10               ACCOUNTING     -
    20               RESEARCH         -
    30               SALES               -
    40               OPERATIONS     -
    I don't want to delete all the values for the LOC. I want to display a value for DEPTNO and DNAME If LOC = "NEW YORK". Has anyone ever done this before?
    Good results...
    DEPTNO       DNAME              LOC
    -                  -                      NEW YORK
    20               RESEARCH         DALLAS
    30               SALES               CHICAGO
    40               OPERATIONS     BOSTON

    Like this?

    SQL> ed
    Wrote file afiedt.buf
    
      1  SELECT CASE WHEN LOC != 'NEW YORK' THEN DEPTNO END AS DEPTNO
      2        ,CASE WHEN LOC != 'NEW YORK' THEN DNAME END AS DEPTNO
      3        ,LOC
      4* FROM DEPT
    SQL> /
    
        DEPTNO DEPTNO         LOC
    ---------- -------------- -------------
                              NEW YORK
            20 RESEARCH       DALLAS
            30 SALES          CHICAGO
            40 OPERATIONS     BOSTON
            50 IT SUPPORT     LONDON
    
    SQL>
    
  • How to enlarge the parts of a circle of get - have text pops up when you click on it?

    I'm working on an interactive infographic in edge animate CC. I use pieces of a circle and when you click on / hovered, I want the pieces to grow and also have the text pop up on the side. I am struggling with how to animate my circle pieces so that they move and are clickable. Can someone offers directions?

    I made a sample for you, but not using EC.  This used boxes, images and a text field which is change according to the box that is clicked. I hope this helps.

    PNG and info.zip - Box

  • Default text that disappears when you click on in to.

    Is it possible to include the default instruction text in a text field that disappears when the user clicks on the ground for their type information, and if so it may reappear if the person does not add data and click on the text field?

    Thank you.

    Hello

    Sample of BR001 captures the text of the ToolTip in the accessibility palette.

    The main part of the script is one that put you in the initialize event.

    this.execEvent ("exit");

    This.format.Picture.Value = "null {'}" + this.assist.toolTip.value + ""} "";

    Other scripts for text etc colors are optional.

  • How to set preferences for what happens / appears when you click the new tab

    I used to have seen my sites more used, but for some reason that I don't have more since I uninstalled a toolbar that has become the default search engine itself!
    So now, I want that, instead of having an error message; the new tab display a tab blank when I click on button ' + '!

    You can check the browser.newtab.url pref on the topic: config page and set this pref to your preferred the new tab page.

    • the new default tab with the tiles page is on: newtab
    • the default homepage is Subject: Home
    • to a blank page, you can use Subject: vacuum

    The pref browser.newtabpage.enabled must be set to true to use the page defined through browser.newtab.url like the new tab page.

    See this article on the page tab (topic: newtab):

  • I downloaded Firefox for the first time, when I click on the logo it says "zero KB available." What should I do?

    I am a first time user. I now have the logo display. When I click it it says, "2 points" and he says: "zero KB available." How can I start?

    where can I call to get a response?

  • Instagram widget for Muse - wrong instagram when you click on it!

    I see Snap Widget and Qoo Qee have widgets free Instagram and I the last work in my site.

    Only problem, is that when you click on one of the images in the feed, the user is sent to a version Qoo Qee Instagram account? It looks like a fake account Instagram!

    My client not want their customers to wear their real Instagram account the same as Facebook and Twitter, which have both work perfectly.

    How can this be achieved please?

    Thank you

    You can get a faster response, contact the developer of the widget itself rather than here. But if I had to guess there is probably a place in the properties of the widget to get into the details of the account Instagram.

  • Introduce the function - How to Pick up address of the contractor when you click on submit.

    Hi guys,.

    Currently, I work on the COMPUTER helpdesk at UWS and would like your help to change some of our existing Access IT forms.

    Currently, we have a function submit on our forms when you press will verify that some required fields are filled and sends an email in our ticketing system (just a mailto link: [email protected])


    The problem we are facing is requests come to us without approval so that we have to communicate with supervisors and check if the forms submitted by their staff are approved; a lot of your time

    I thought, this is:

    When the user clicks the Submit button, which picks up the e-mail address entered in the "E-mail address" under Details of the supervisor.

    The emails then the form of the master to work with text that reads:

    Dear supervisor,

    Could you please indicate if you agree with the Access IT form (attached). If you agree please send this message to [email protected] (wording is not serious I can play with it, more the coding behind the button)

    I was unable to find a way to reach our form in its current state. If you could let me know how to proceed, I will attach it (can only find contact picture or video)


    Can you please investigate if it is possible for me? I have little or no knowledge of Java code or whatever it is, that these things run on.

    Kind regards

    Rob

    [email protected]

    Thanks sidonie.

    I appreciate your efforts!

  • Any Web site I'll, will automatically switch to another Web browser when I click on a contact e-mail address link, even if firefox is my default?

    When I'm on a Web site, when I try to use the e-mail address provided in the contact section of the website whatever, I'm on, as soon as I click on the link to contact this person or persons, it will immediately move to Google Chrome, rather than continue to use Firefox, even though I have Firefox set as my default browser.

    Someone suggested that I go to my control panel and make sure that Firefox is selected, I went there to do this, set it as default and checked what it says under Chrome while I was there for. He said Chrome I have 1 default on 20. I went to see what it was. He has access to HTML, or whatever that one is (I can go back and get the full name if necessary) why would they automatically this default value assigned to them? I could not not - select this option for Chrome, it was not possible to for change, it is mandatory?

    Is this what can I do to configure Firefox for all the default settings?

    Check your setting mailto in Firefox.

    https://support.Mozilla.org/en-us/KB/change-program-used-open-email-links

  • When I click on answer the e-mail on hot mail, I just get a blank page! Help!

    When I click to reply to the e-mail on hot mail I just get a white page... This just started recently?

    How does this relate to the features of Windows Update?

    You will find support for Windows Live Hotmail in these forums: http://windowslivehelp.com/forums.aspx?productid=1

  • Yosemite MAC, when I open Firefox I get two windows, when I click on a link in mail, it opens a window not a tab.

    I place the FireFox icon in the dock. When I click to open FireFox it opens two windows both to the homepage. When you click on a link in the email, it will open a window behind the first window rather that open in a tab. There used to be a preference re: opening links, but given that it was useful, it seems that Apple has removed this option unless it's hidden somewhere I can't find.

    What you have is, in my view, two problems.

    • Homepage

    Type of topic: preferences #general< enter > in the address bar.

    There are two settings;

    • At the start of Firefox

    When the browser is started, what you want
    view. Many of us choose view my homepage.

    • Homepage

    When a new page opens up, what do you want displayed.

    1. Use current Page. Use the pages that are never open at this time.
    2. Use the bookmark
    3. Restore by default. topic: Home shows a home page of Mozilla with tools.

    You can use one of these as you want;

    topic: Home (Default Firefox homepage),
    on: newtab (displays the more visited sites),
    Subject: vacuum (a blank page),

    or you can enter any web page or Subject: page you want.

  • The Personalization property value forms continues to change true when set to false

    Hello

    I've implemented the following customization on my R12.1.3 in the Oracle E-Business Suite version:

    FORM - PERWSEAD

    The condition tab settings:

    Triggering event: A TIME NEW FORM INSTANCE

    The Trigger object: (empty)

    Condition: (white)

    Processing mode: both

    Framework

    Responsibility: Human resources operational

    Settings on the tab actions:

    SEQ: 1

    Type: property

    Description: Disable pattern

    Language: all the

    Activated: '' Yes. ''

    Object type: agenda

    Target the object: ABA. C_REASON_DESC

    Property name: ALTERABLE_PLUS

    Value: FALSE

    Select 'Validate' + 'Apply' + 'save '.

    When I re - access the form PERWSEAD the Description of the reason it is not grayed out.  Re-check the personalization settings (by pressing the button "Get the value") indicates the value of property to be returned to 'TRUE '.

    A reason why that may be?

    Try with the following text:

    Object type: agenda

    Target the object: ABA. C_REASON_DESC

    Name of the property: ENABLED

    Value: FALSE

    After having settng the rule above, reconnect or switch to responsibility and redone the test then the issue.

  • Form fields values level how chang

    Hi...........

    I want to change the values of the fields

    Here the name of the field-> mtl_eam_asset_attribute_values Depr_method (table name)

    Values-> DB, SLN (methods)

    I want to change DB to "Depreciation_method", another a SLN to 'Method of the Stright line' at the form level how
    Please give me a solution.
    Forms 10g


    Concerning
    Maha

    Hello
    I think that you posted the same question in another thread. Its best to maintain a single thread for the same topic.
    you have block db?
    If yes then you have two options
    1 item in the list as suggested earlier.
    2 control point. While in the post and when-validate-point of the iem, you can assign the corresponding description.
    If your block is not a db block, then you can use decode function when filling the data in blocks.

Maybe you are looking for