Adobe Acrobat XI Form Help

Hello experts,
I need javascript to calculate the following:
"Discount_Subtotal" + "Sales_Tax" + Shipping_Handling" - "Deposit_Received" = "Invoice_Total"
Can anyone help me?

This is what the debugger says:
Acrobat EScript Built-in Functions Version 11.0
Acrobat SOAP 11.0
Acrobat EScript Built-in Functions Version 11.0
Acrobat SOAP 11.0
TypeError: getField("IF") is null
1:Field:Calculate
TypeError: getField("IF") is null
1:Field:Calculate
TypeError: getField("IF") is null
1:Field:Calculate
TypeError: getField("IF") is null
1:Field:Calculate
TypeError: getField("IF") is null
1:Field:Calculate
TypeError: getField("\"VA\"") is null
1:Field:Calculate
TypeError: getField("\"VA\"") is null
1:Field:Calculate
TypeError: getField("\"VA\"") is null
1:Field:Calculate
ReferenceError: Customer_State is not defined
1:Field:Calculate
ReferenceError: Customer_State is not defined
1:Field:Calculate
ReferenceError: Customer_State is not defined
1:Field:Calculate
ReferenceError: Customer_State is not defined
1:Field:Calculate
ReferenceError: Customer_State is not defined
1:Field:Calculate
ReferenceError: Sales_Tax is not defined
1:Field:Calculate
ReferenceError: Sales_Tax is not defined
1:Field:Calculate
ReferenceError: Sales_Tax is not defined
1:Field:Calculate
ReferenceError: Sales_Tax is not defined
1:Field:Calculate
ReferenceError: Sales_Tax is not defined
1:Field:Calculate
TypeError: this.getField("Subtotal") is null
2:Field:Calculate
TypeError: this.getField("Subtotal") is null
2:Field:Calculate
TypeError: this.getField("Subtotal") is null
2:Field:Calculate
TypeError: this.getField("Subtotal") is null
2:Field:Calculate
TypeError: getField("Tier_Divisor") is null
1:Field:Calculate
TypeError: getField("Tier_Divisor") is null
1:Field:Calculate
SyntaxError: missing ; before statement
2:
SyntaxError: unterminated string literal
2:
SyntaxError: unterminated string literal
2:
SyntaxError: unterminated string literal
2:
ReferenceError: Invoice_Subtotal is not defined
1:Field:Calculate
TypeError: getField("Discount_Subtotal") is null
1:Field:Calculate
TypeError: getField("Discount_Subtotal") is null
1:Field:Calculate
TypeError: getField("Discount_Subtotal") is null
1:Field:Calculate
TypeError: getField("Discount_Subtotal") is null
1:Field:Calculate
TypeError: getField("Discount_Subtotal") is null
1:Field:Calculate
TypeError: getField("Discount_Subtotal") is null
1:Field:Calculate
TypeError: getField("Discount_Subtotal") is null
1:Field:Calculate
TypeError: getField("Discount_Subtotal") is null
1:Field:Calculate
TypeError: getField("Discount_Subtotal") is null
1:Field:Calculate
TypeError: getField("Discount_Subtotal") is null
1:Field:Calculate
TypeError: getField("Discount_Subtotal") is null
1:Field:Calculate
TypeError: getField("Discount_Subtotal") is null
1:Field:Calculate
TypeError: getField("Discount_Subtotal") is null
1:Field:Calculate

Similar Messages

  • Adobe Acrobat 8 Form Duplicate text error

    Hello World!
    I work for a school with 200+ computers installed with **. The problem I'm having is when a user downloads a PDF form from our web page and goes to start inserting data in the fields the text just duplicates in all the boxes. If you try and delete the text from any of the boxes it delets everything. I've tried repairing the install by running the original installer file. I've even reinstalled a test system and still duplicate this error. Please let me know if there is any other information I can provide that will help you help me.
    Windows XP SP3
    Office 2007
    Adobe Acrobat 8

    Hi,
    This forum is not for Acrobat product.
    Plaese post your question again in http://forums.adobe.com/community/acrobat if you haven't.
    Thanks,
    -- Hiroshi

  • Adobe Acrobat - PDF Forms Comparison

    Dear Acrobat Users,
    I desperatly need your help on that one... We are using PDF Forms (created using Adobe LiveCycle), these forms are injected with XML Date using LiveCycle servers.
    We need to compare to these forms between each other, but the built-in compare tool in Acrobat X does not seem to handle PDF forms comparison.
    Do you know how we could proceed to compare the data entered in these forms ?
    We even tried using some software to do a Diff comparison on the XML data, but the problem with this scenario is that we cannot find a way to highlight the changes in the PDF form, once reinjected with the XML data (no way to control the formating from the data itsel e.g. using HTML code...)
    Thanks for your help...
    Thibault

    Why not? It's open to everyone here:
    http://forums.adobe.com/community/livecycle/livecycle_es/livecycle_designer_es?view=discus sions

  • PDF without full version of ADOBE Acrobat (Smart Forms)

    Hello,
    I try to generate a smart forms document as pdf-file by successfully using the otf-converter and afterwards the pdf-viewer.
    Because of company rules only ADOBE Acrobat 7.0 Elements and ADOBE Acrobat 7.0 Reader are installed and we are not allowed to install the full version of ADOBE Acrobat.
    Now the pdf-viewer methods generate error "did not find ADOBE application to display PDF documents".
    Can anybody help?
    Kirstin
    Coding for pdf-viewer:
    DATA: my_pdf_viewer     TYPE REF TO cl_gui_pdfviewer,
          my_main_container TYPE REF TO cl_gui_custom_container.
        IF my_main_container IS INITIAL.
          CREATE OBJECT my_main_container
            EXPORTING
              container_name = 'CUSTOM_CNTL'
            EXCEPTIONS
              cntl_error     = 1
              OTHERS         = 2.
          IF sy-subrc <> 0.
            EXIT.
          ELSE.
       " create PDF Viewer object
            CREATE OBJECT my_pdf_viewer
              EXPORTING
                parent              = my_main_container
              EXCEPTIONS
                cntl_error          = 1
                cntl_system_error   = 2
                OTHERS              = 3.

    You can do like this :
    PARAMETERS file LIKE rlgrap-filename.
    DATA       v_url TYPE char255.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR file.
      REFRESH: it_tab[].
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title      = 'Select File'
          default_filename  = '*.pdf'
          file_filter       = '*.pdf'
          initial_directory = 'C'
          multiselection    = 'X'
        CHANGING
          file_table        = it_tab
          rc                = gd_subrc.
      READ TABLE it_tab INTO wa_tab INDEX 1.
      IF NOT wa_tab IS INITIAL.
        file = wa_tab-filename.
      ELSE.
        MESSAGE s000(0k) WITH 'Please enter valid file name'(001).
        STOP.
      ENDIF.
    *now open the pdf
    *Open the PDF document
        IF NOT my_pdf_viewer->html_viewer IS INITIAL.
          CLEAR v_url.
          v_url = file.
          CALL METHOD my_pdf_viewer->open_document
            EXPORTING
              url = v_url.
        ENDIF.

  • Adobe acrobat pro 9 help button shows no table of contents

    When I open adobe acrobat pro 9 and select the help button the help window opens but there is no table of contents and if I try to search for a topic nothing happens... Any help here?

    Have you tired Adobe Acrobat 9 Pro ?
    If there are Icons in the upper left of the screen, try some of them.

  • Problem with adobe acrobat/reader - please help!

    Hello,
    My acrobat reader was fine and I was able to open the pdf files sent to me, then suddenly it just wouldn't open anything at all.  It went into open mode and just stayed there, and wouldn't let me close it.  Then I got a message saying "there is a problem with adobe acrobat/reader.  Please exit and try again".  I've done this lots of times and it still isn't working.
    I would be very grateful for any help or suggestions.  I have windows 7, and as I said its all been fine up until now.
    Thanks.
    mspryce.

    This is the Acrobat forum, not the Reader forum. You should check the reader forum. In the meantime, if you are not running AR9.3 or so, you should update. Prior versions before 9 are not designed for Win7 and that might be your issue -- you gave no indication of version.

  • Adobe Acrobat Text Field Help.

    How do you change the justification of text in a text field box created in Adobe Acrobat 9 Pro
    The default setting is left centered, I currently want it to be left top justified, how do I achieve this?
    Thanks in advance.
    st333vo
    PS heres a screenshot of the text box
    http://img156.imageshack.us/img156/6047/picture10u.png

    st333vo wrote:
    How do you change the justification of text in a text field box created in Adobe Acrobat 9 Pro
    The default setting is left centered, I currently want it to be left top justified, how do I achieve this?
    Thanks in advance.
    st333vo
    PS heres a screenshot of the text box
    http://img156.imageshack.us/img156/6047/picture10u.png
    Looks like a Fillout box for a Form. If that is what it is, click on Edit form  under Forms menu. Click on the box while holding down control key  choose Properties when Properties box open look for Justification for side to side and top to bottom should be under Text Tab.

  • Adobe Acrobat X Form doesn't distribute

    I created a pdf into an interactive form in Life Cycle Designer.  I can't get it to distribute.  When I click Distribute, then I select how I want to handle it, which is manually, then on the next dialoge box I enter the email, name, title and company, but the Next button doesn't work and I can't go forward from there.  I tried to distribute from the Adobe Acrobat software too, and I get the same results - the Next button doesn't work.  What can I do to correct this?  When people share, there is no email address in the 'to' section.
    Carolyne

    Carolyne, I am going to move this post to another forum so it can be addressed. This is the sharing and storage forum for Ps.com and Revel.
    Pattie

  • Any Adobe Acrobat X Forms Books for Beginners

    I'm wondering if there is any good books for a beginner who doesn't know
    nothing about scripting.  I have Adobe Acrobat X Professional and I'm creating forms
    and would like to learn how to do calculation using scripts to do things.  Does anyone know of any books out there?
    --Gilbert

    It's not a book, but the best resource by far for learning about Acrobat JavaScript programming and working with forms is: http://pdfscripting.com  Also, see what's available at: http://www.math.uakron.edu/dpstory/pdfblog.html  #12-25 in particular.

  • Acrobat PFD Forms Help

    Hello ,
    Im having some problems submitting a pdf forms
    can someone tell me how to
    - tell adobe acrobat to send the form to a certain email
    address. I created a submit button with the parameters i thought
    would work , but it doesnt .
    -tell acrobat to put a subject in the the email thats sending
    the form out. ?
    - tell me how to send the pdf form looking axactly like a pdf
    file via email>?
    below is the 2 email servers ive been testing this on using
    the form mail generator string from my web host. but i cant figure
    out how to make it work.
    <FORM METHOD="POST" ACTION="
    http://medishealth.com//cgi-bin/cgiemail/mailtemp.txt">
    the other host goes something likethis
    <form method="POST" action="
    http://www.webhost4life.com/cgi-bin/ultra/ultra-mail.pl">
    cgi-bin/cgiemail/mailtemp.txt

    Hi there
    You might have better luck asking over in the Acrobat forums. The forum you posted in is where we discuss Adobe Captivate.
    Click here to visit the main forums page. Then locate the Acrobat forums from there.
    Best of luck to you in solving your problem! Rick

  • Sharing an Adobe Acrobat XI Form on Shared Drive

    What type of notification will a user get if they go to open an Adobe Acrobat XI fillable form, which is on a shared network drive, and someone else is using it? Is it similar to what one would see with a Word document...that the document is "read only" and you have the option of being notified when the form is available?
    thank you

    Ah I see what you mean. By "without prior warning" I mean there is no warning when opening or at any time prior to the message from failing to save.

  • Adobe Acrobat - rename form field

    I'm a newbie to Automator but it seems like this should work. I need to automate the renaming of lots and lots of fields in a form. I started a workflow that opens the PDF. Then I used the "Record" button in Automator to watch me click on the Form menu bar item in Acrobat and select "Edit Form in Acrobat". I ran the workflow up to this point and it works fine. Then I use the "Record" button again and it watches me select a field in the form by clicking it. Again no problems. Finally I attempt to use the "Record" button to rename the field. It breaks every time. I try "Control Clicking" the field and selecting "Properties" from the contextual menu. Then renaming the field and clicking the close button. It breaks. I try selecting the Field and then clicking the Form menu bar item and selecting "Show Field Properties", renaming the field and clicking the close button. It breaks. I try double clicking the Field, which causes the Properties window to open, renaming the Field and clicking the close button. It breaks. What gives? If I can do this manually it seems like the Record functionality in Automator ought to be able to do it???? I'm running Snow Leopard and using Adobe Acrobat Professional 8 on a MacBook.

    OK it appears that selecting the field is what breaks the automation. If I set up the automation to click on the field or drag to select it the automation breaks. If I let the automation run and then move the mouse, the field that I selected in the automation gets dragged around the page. It's like I clicked on the field and held the button down so I could drag it. Same thing happens if I double click the field. Strange....

  • Adobe Acrobat 8.1 help with language switching

    We are a diversified company with English and Japanese users..
    I am currently testing the Japanese version which allows a user to choose English or Japanese the first time they run Adobe Acrobat.
    Is there a way to reset the choice, so that the next time someone launches Adobe Acrobat it asks if you want to use the Japanese or English version.
    The reason is if someone accidentally chooses the wrong one or if a tech needs to switch back to english for some testing
    Thanks

    Thank you so much....
    I compeletely overlooked the settings in the preference section...
    Thanks again
    Dave

  • Cannot uninstall Adobe Acrobat XI Pro: Help Please

    Cannot uninstall Adobe Acrobat XI Pro.  Gone to programs and tried to uninstall then message says it is going to do it. Then message prompts come up asking if it can update my software. If I say no action it stops uninstalling. Then if I say yes it goes no further either.
    Regret every taken up the trial offer for this programme as I tried using it and message repeatedly appears saying "Acrobat failed to send a DDE command".
    Please can someone offer some advice. Thank you.

    Try launching acrobat in safe mode, to do so follow the steps:
    a.       Press and hold down shift and double click the acrobat icon and then open a pdf file.
    b.      If it opens without crashing after about 15 seconds, then you have a faulty plug in, locate and remove it from your plug-ins folder.
    c.       To remove plug-ins, you may contact Acrobat Support

  • Adobe Acrobat Pro 9 HELP!

    I have created a fill-able form to be submitted by e-mail to my organization. However, when the form is sent out, the recipients are not able to submit. What is wrong with the form?
    Please help!

    If you have the submit action set up so that the entire PDF is submitted, then the document has to be Reader-enabled for it to work with Reader versions prior to 11. To do this with Acrobat 9, select: Advanced > Extend Features in Adobe Reader
    Note that this is not sufficient for it to work in all cases since some people may not have working email clients set up or properly configured. Submitting to a web server is more reliable and potentially secure.

Maybe you are looking for

  • Render background black is not really black and white is not really white

    Goodday, I have problem when i try to render movies from Premiere Pro CS4 in Adobe Media Encoder. When it is has black background or a white background and i want to render it in Adobe Media Encoder the color shifts a little bit. Black gets really da

  • Color differences between Import preview and image in Library

    Hi folks, when I try to import photos from my D200, theys show up in the bnright colors they should during the import dialog. But once they have been imported into the Library, they are all pale - no matter if it's NEF or DNG. I do not apply Auto-Ton

  • Any way to convert CLOB to string in DB2?

    I'm trying to provide report names in audit reports. Is there any way to convert CLOB (AUDIT_DETAL.DETAIL_TEXT) to string? We use BO XI R3 on DB2 v.9. Thank you.

  • [svn:osmf:] 10860: Adding a readme file for NestedRegionsSample.

    Revision: 10860 Author:   [email protected] Date:     2009-10-03 21:24:37 -0700 (Sat, 03 Oct 2009) Log Message: Adding a readme file for NestedRegionsSample. Added Paths:     osmf/trunk/apps/samples/framework/NestedRegionsSample/readme.txt

  • RFC Sender configuration

    Trying to configure webservice(SOAP)-->XI->R/3(RFC) scenario. Created a z_fun_mod and made it remotely enabled in R/3. Trying to create a destination of type T in XI for R/3. As I need to specify 'ProgramID' for 'Registered Server Program', I specifi