Acrobat Form not calculating values

I've created an expense report for our company using Acrobat's form tools. Everything works fine except for one line.
The first line of the form includes a cell that calculates mileage and how much an employee is owed which shows up in that line's total cell and then should carry down to the total cell for that section and the total cell for the entire form. If an employee only fills out that first line and nothing else in the form the total will not carry down to the total for the entire form.
Can anyone help me figure out why that one line is totaling anywhere else and how I can fix it?
Thanks!

Hi. I am having problems creating my form. It is for ordering wine. The user enters in the amount of bottles they wish to purchase, and the form calculates the price based on a default value for the wine. All OK there. Problem is, I have two columns, one for Wine Club price and one for Recommended Retail price. I have the form set up to SUM both these prices (so it doesn't matter which is entered) and put the result in a Total field. This calculation is almost always incorrect, as if it keeps a prior input value in cache and pops it in the calculation when it isn't supposed to be there. I feel like I want to hit the refresh button! Actually, if I delete the value in the Total field and hit the return key it then does the calculation correctly, however this is no good to me as the user won't do this and therefore they will write a cheque out for the incorrect amount!
Is there was a way to upload my form? It's so hard to explain...

Similar Messages

  • BED is not calculating values after enter Excise Invoice number in MIGO

    Hi,
    We are doing a process of MB01 --> J1IEX --> MIGO.
    At the time of J1IEX, we entered the Excise Invoice number and date. After that when we change the quantity, then BED is automatically change.
    But at the time of MIGO, when we enter the Excise Invoice number, then BED is not calculating as calculated in J1IEX earlier.
    This was working fine before apply the Patch. I think this is due to Patch because in our Development system still working fine but we have apply the Patch in Quality Server..there this problem comes..
    Please guide what should be configuration changes has been done after apply the patch.
    Applied Patch is: - SAPKH60015 & SAPKH60016..
    Plz guide..

    hi
    i think your doing something wrong
    i think first when u did j1iex then in MIGo u have to go for ONLY REFER INVOICE option
    better you go for other process
    DO GR for required quantity say 5 out of 10 without excise
    then do J1iex  with reference to GR number
    regards
    kunal
    Edited by: Kunal Ingale on Jul 28, 2010 9:15 AM

  • Acrobat 9 Pro - Forms Not Calculating on any MAC platform?

    Neither basic calculations (multipying the value of two fields) or javascripted fields function on any MAC platform (so far tested MAC 10x and IPad).  Everything runs flawlessly on every PC tested.  Form is accurate, no javascript errors.  Replicating fields does work on the MAC (typing "NAME" into the field on page 1 correctly replicates the NAME field on page 2 & 3.)  Only the math seems to be an issue.  Help!!!

    Wow, you are indeed correct.  Here is what we just discovered:
    Snow Leopard (10.6.8)
    If you open the file in READER it works fine.
    If you open the file in PREVIEW nothing happens when you enter values in any QTY field.  When you close the file in PREVIEW you are presented with the option to save.  If you save the file it gets corrupted and will not display in READER.  If you do not save the file you can open it in READER and it works fine.
    Lion (10.7.2)
    If you open the file in READER it works fine.
    If you open the file in PREVIEW nothing happens when you enter values in the QTY field.  When you close the file in PREVIEW you are NOT presented with the option to save.  The file somehow gets corrupted and will not display in READER.
    I guess the bottom line is that interactive PDF forms are real challenges for MAC users.  At this point the only way to assure MAC users get a working file is to point them to a non-interactive form that they must print, manually fill out then scan or fax back to us.
    Thank you so much for your help George.  This has been by far the quickest and smoothest problem resolution process I have experienced with literally any software manufacturer!  I'm less than pleased about the outcome, but your part worked beautifully and we all now know exactly what the problem is.

  • Mobile form not calculating on Android Tablet

    I have a Time Sheet with Javascript that adds the times up, and it works perfect with the PC version of Adobe Reader, but when I try to use it on a nexus 7 tablet the calculations don't work.
    I have tried the official Adobe Reader for Android as well as about a dozen other readers.  If there is a reader that will work with this sheet as is, I don't mind paying for it, or perhaps part of my JavaScript is not supported on mobile, and I can change it with a workaround.
    Please Take a look and see what you can see:
    PR_Form_Tablet6.pdf - Google Drive
    I have 2 Functions in here:
    TimeDiff Function:
    function TimeDiff(cStartField, cEndField) {
    var sTimeFormat = 'hh:mm';
    var fDiff = 0;
    // get the start time
    var sStart = this.getField(cStartField).value;
    // get the end time
    var sEnd = this.getField(cEndField).value;
    // complete script only if we have data
    if(sStart != '' & sEnd != '') {
    // convert sStart string to seconds
    var fStart = Time2Num(sTimeFormat, sStart);
    // convert sEnd string to seconds
    var fEnd = Time2Num(sTimeFormat, sEnd);
    // compute difference in seconds
    fDiff += fEnd - fStart;
    return fDiff;
    Time2Num Function:
    function Time2Num(sFormat, sTime) {
    convert time string (sTime) with format of sFormat
    to the seconds since the start of the day
    if(sTime == '') return ''; // exit
    // get date time for Epoch date and sTime
    var oTime = util.scand('mm/dd/yyyy ' + sFormat, '01/01/1970 ' + sTime);
    // convert UTC Offset to milliseonds for adjustment
    var fTZOffset = oTime.getTimezoneOffset() * 1000 * 60
    // time since the start of the day in millseconds
    var fTime = oTime.valueOf() - fTZOffset;
    // convert to seconds and return value
    return Math.round(fTime / 1000);
    And here is a sample field with JavaScript in it:
    event.value = '';
    var fDiff = 0;
    // compute the difference for first pair of fields
    // get the start time
    var sStart = this.getField('Tech_2_Start').value;
    // get the end time
    var sEnd = this.getField('Tech_2_End').value;
    // complete script only if we have data
    if(sStart != '' & sEnd != '') {
    // convert sStart string to seconds
    var fStart = Time2Num('hh:mm', sStart);
    // convert sEnd string to seconds
    var fEnd = Time2Num('hh:mm', sEnd);
    // compute difference in seconds
    fDiff += fEnd - fStart;
    fDiff = TimeDiff('Tech_2_Start', 'Tech_2_End');
    // compute and add the difference for the second pair of fields
    // get the start time
    var sStart = this.getField('Tech_2_Start_2').value;
    // get the end time
    var sEnd = this.getField('Tech_2_End_2').value;
    // complete script only if we have data
    if(sStart != '' & sEnd != '') {
    // convert sStart string to seconds
    var fStart = Time2Num('hh:mm', sStart);
    // convert sEnd string to seconds
    var fEnd = Time2Num('hh:mm', sEnd);
    // compute difference in seconds
    fDiff += fEnd - fStart;
    fDiff += TimeDiff('Tech_2_Start_2', 'Tech_2_End_2');
    // convert to rounded minutes if not zero
    if (fDiff != 0) {
    fDiff = Math.round(fDiff / 60);
    // report decimal hours
    event.value = fDiff / 60;
    Thanks,
    Mike

    Hi Dennis,
    Thanks for the response. This is interesting because I went through the process of testing the LiveCycle generated form (ES2) on my personal Android device before my company invested in the Sony units. Since the update has happened, the form no longer works on my personal device or the Sony’s of course. I’ve tried the different export settings and each time, no luck. A refund would be greatly appreciated since I purchased the product to continue the work at home on my personal laptop. Please advise on what the process is for a refund.
    Thank you,
    Bryan Gonzales
    GIS Technician |RTS
    ASRC Energy Services Alaska, Inc.
    3900 C Street, Suite 700
    Anchorage, AK 99503
    Desk: 907-334-1502
    One Crew, One Journey
    Honoring the values of our founders as we develop the future.
      <http://www.asrcenergy.com/>

  • BUG :  FORMS not displaying values stored in FLOAT datatypes.

    APEX 2.2.1.
    Error occurs on both V9.2.0.4 and V10.2.
    I'm working on a "report with form" combination and have been fighting a problem where the data entered into a form will save correctly and show in the report, but when you choose to edit the record to update it, the value will not display in the form at all.
    I went round and round, and finally discovered that the problem had to do with the FLOAT datatype being used to store the data.
    When creating a default "Report with Edit form" on the following two example tables, the form works correctly with SLA_SCHEDULE2 but not with SLA_SCHEDULE1
    CREATE TABLE SLA_SCHEDULE1
    ID NUMBER NOT NULL,
    NAME VARCHAR2(128 BYTE) NOT NULL,
    TRACING_PERCENTAGE FLOAT(126),
    RUNS_PER_PERIOD NUMBER,
    SECONDS_PER_PERIOD NUMBER,
    SCHEDULE_TYPE VARCHAR2(16 BYTE) NOT NULL
    CREATE TABLE SLA_SCHEDULE2
    ID NUMBER NOT NULL,
    NAME VARCHAR2(128 BYTE) NOT NULL,
    TRACING_PERCENTAGE NUMBER,
    RUNS_PER_PERIOD NUMBER,
    SECONDS_PER_PERIOD NUMBER,
    SCHEDULE_TYPE VARCHAR2(16 BYTE) NOT NULL
    The only workaround I have so far is to change the datatype of the column.
    Doug

    Based on the advice Scott gave above, I've created this function...
    CREATE OR REPLACE FUNCTION Get_Float_Value
    p_table_name           VARCHAR2,
         p_float_column_name     VARCHAR2,
         p_key_id_name          VARCHAR2,
         p_key_id_value           VARCHAR2
    RETURN FLOAT IS
    TYPE FLOAT_CURSOR IS REF CURSOR;
    f_cur FLOAT_CURSOR;
    FLOAT_VALUE FLOAT(126);
    SQL_STMT VARCHAR2(500);
    BEGIN
         SQL_STMT := 'select :a from :b where :c = :d';
         SQL_STMT := REPLACE(SQL_STMT, ':a', p_float_column_name);
         SQL_STMT := REPLACE(SQL_STMT, ':b', p_table_name);
         SQL_STMT := REPLACE(SQL_STMT, ':c', p_key_id_name);
         SQL_STMT := REPLACE(SQL_STMT, ':d', p_key_id_value);
    OPEN f_cur FOR SQL_STMT;
         LOOP
         FETCH f_cur INTO FLOAT_VALUE;
         EXIT WHEN f_CUR%NOTFOUND;
         RETURN FLOAT_VALUE;
         END LOOP;
         RETURN NULL;
    END Get_Float_Value;
    This allows you to call the function ANYWHERE you use a FLOAT, without having to create one function per table/column you might need to use it against.
    I know that I could have used a 'USING' statement on the cursor to do the replacements, but I always find it easier to debug replacement values using the REPLACE function.
    Doug

  • WD application- Interactive form -Not bringing values to Onclick method

    Hi,
    I am working on Interactive form which has a submit button.
    Requirement is Form should be pre-filled with fields in Item column1 and then user fills in a field in Item column C2.Finally my submit button on form should take c1,c2 values and I will be using this in Click method for further processing.
    For this I have done following.
    1- created a structure ZILAB( which has COLUMN 1 & COLUMN 2 FIELDS) and created a node adobe_data with cardinality 1.1, and then under it created another node called ITEM CARDINALITY 1..N).This is mapped to ZILAB.
    2- Created  job number as parameter and button1 .This button1 brings up the pre-filled item Column1 fields to form.
    3- There is new column C2 in the output form which user will input.
    4- When I click final submit button it is stopping in Onclick method.my code is bringing up C1 values but not bringing of C2 values(which is user input) in my Onclick event of SUbmit button-WDACTIVEX.
    Also I have checked enable option, Assigned pdfsource, change type to activeX.I even tried to change element item name but still not able to get entries in onclick method.
    What is wrong with my code/process?
    DATA lo_nd_adobe_data TYPE REF TO if_wd_context_node.
      DATA lo_nd_item TYPE REF TO if_wd_context_node.
      DATA lo_el_item TYPE REF TO if_wd_context_element.
      DATA ls_item1 TYPE IF_MAIN=>element_item.
    * navigate from <CONTEXT> to <ADOBE_DATA> via lead selection
      lo_nd_adobe_data = wd_context->get_child_node( name = IF_MAIN=>wdctx_adobe_data ).
    * navigate from <ADOBE_DATA> to <ITEM> via lead selection
      lo_nd_item = lo_nd_adobe_data->get_child_node( name = IF_MAIN=>wdctx_item ).
    * get element via lead selection
      lo_el_item = lo_nd_item->get_element(  ).
    * get all declared attributes
      lo_el_item->get_static_attributes(
        IMPORTING
          static_attributes = ls_item1 ).
    Rgds
    Vara

    Hi ravi,
    These are the function modules  which converts table to String and the String to Xstring.
             SOTR_SERV_TABLE_TO_STRING  "Table to String
             SCMS_STRING_TO_XSTRING "String to Xstring
    For triggering work flow is not a problem. But this pdf should be generated again at workitem attachment.
    For converting to PDF and attachming the pdf to workitem I already have a business object
    Can you tell me how you are attaching document to Workflow and how you are triggering workflow on click of Submit button and what is the businees object to send the attachements to workitems.

  • Why doesn't a Popup Key LOV (named LOV) in a tabular form not display values in the popup?

    I have a tabular form and I'm setting one of the fields to a Popup Key LOV (named LOV). The named LOV is a static LOV. When the popup is displayed there are no values displayed. The same thing happens if I use a Popup LOV (named LOV).
    I created a sample application http://apex.oracle.com/pls/apex/f?p=15762:1that shows what happens. When the job field popup is selected, no items are displayed. If I change the item to a Select List (named LOV) it works fine.
    Is this a bug?

    Hi
    I am also getting the same issue. Hope it could be a bug.
    Can anyone plz confirm this?
    Thanks
    Lakshmi

  • Obe Acrobat form not sending PDF file

    I created a fillable form in Acrobat X.
    Added a submit button
    on Actions - trigger- mouse up
    select action - "submit a form"
    I set the link to mailto:[email protected]
    The "PDF The complete document"
    The submit works - I receive the email, but the attachment is POSTDATA.ATT.
    I know I can rename the file to postdata.pdf, but my users find that unacceptable.   

    Here is teh form
    http://www.govst.edu/test/today2.pdf
    I have outlook 2010 and our exchange is 2010.
    We just upgraded to exchange 2010

  • Forms not calculating

    I seem to have this problem quite often. I create the form, calculate the fields and enable reader rights, then when I post it to the intranet, the fields won't calculate - whats the deal?

    Can you provide a link to a sample?
    George

  • Calculated Value in Infopath List Form only appears when editing.

    I have a InfoPath 2010 List Form running against SharePoint 2010 Enterprise. I've created a calculated value that returns data from a secondary list.  The returned value is correct but isn't being displayed in the display form.  It only appears
    when I click Edit.  Help!?!

    Hi dshupe,
    According to your description, my understanding is that you were using a Calculated Value control in InfoPath, and the contorl could not display in the list display form.
    I reproduced this issue, and it seem to be impossible to display the control in display form.
    For implementing your requirement, you can add a textbox control, and set default value using calculated  value(formula) for the textbox control, then set the control read-only. After that, the textbox control can not only work as well as a Calculated
    Value control, but also display in display form.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Acrobat Standard (9.4.6) - Issue: "Acrobat could not create a new PDF form"

    I have Adobe Acrobat Standard (version 9.4.6).  I am trying to create a form but when I start the form wizard, locate the document to convert and click next, I get an error message "Acrobat could not create a new PDF form."  What's wrong?  (I've used this feature before in Adobe Pro so I am familiar with the process but I am using Standard now).  It's not letting me upload my document (an MS Word 2003 document).  Please, someone, anyone, help!  I think I got a bad batch of software here.  Any suggestions?  If it's hopeless, who do I call for a replacement if that's the case?  Is this software under warranty?

    Hello Michael,
    Thank you for your email.  The file I am trying to convert to PDF and create a form with is a MS Office Word 2003 file.  It isn't any specific file; the issue happens every time.  I type my text in the Word doc and then proceed to open Adobe Acrobat Standard and use the wizard to create a form from an existing file.  I tried to repairing the software but it does not help.  Any other suggestions?  Is this version of software defective?  I really need this feature.  I look forward to your reply.  Thanks.
    Angela

  • Acrobat XI Pro will not activate when trying to convert to an Acrobat form from an existing Word document

    My version of  Acrobat XI Pro will not activate when trying to convert to an Acrobat form from an existing Word document.  Acrobat not responding.
    Please advise
    John B

    Hi johnb69345359,
    I am sorry for the inconvenience caused. Lets try to resolve this issue.
    I would require few details in order to diagnose the issue correctly :-
    1) Are you able to launch Acrobat XI pro ?
    If yes, please try Help -> Repair option to repair Acrobat XI pro. Then try to perform the covert operation.
    2) Let me know the Operating system installed on your computer.
    3) Is there any error code or error message?
    Regards,
    Aadesh

  • Octroi is not calculating on Freight value

    Hello,
    We are maintained  all the conditions in PO conditions tab. Inclucding of Frieght conditions.
    here Octroi is not calculating on Freight value.
    If suppose the frieght vendor is different then it is ok to calculted Octri without frieght,
    If suppose the Frieght vendor is same as Main vendor then Octri should calculte on including of fright value.
    Regards
    Mahesh Naik

    Hello,
    In pricing schema We have given the 361 as ALT CBV to octroi condition (JOCM), to calculate the octroi percentage on Octroi Base value that is basic Price excise dutysales tax.
    As per requirement 361, system should fetch the octroi base value from taxation procedure to pricing schema
    Regards
    Mahesh Naik.

  • Javascript in acrobat form field not working on IOS

    Can anyone help me with this script. I have found online. It works on MAC but not on iOS?
    its for an acrobat form field, to make cursor at end of text box jump to next.
    'if ( event.fieldFull || event.willCommit ) this.getField("Text1").setFocus();'
    I AM NOT A CODER!
    thanks
    KL

    in acrobat,

  • Excise Duty Values is not calculated in Po

    Hi,
    Even though we have maintained the Excise rates in J1ID the and the corresponding Tax Code in FTXP
    when we check the Pricing in the PO the Excise Values are not calculated.
    Can any body please help me.

    dear sir
    please check for you vendor , vendor excise details maintained in J1ID , and Excise tax indicator for vendor
    1 you have give or not check.
    also check excise indicator for the plant in J1ID. Excise tax indicator for company, give 1.
    then create the PO and check the excise amount.
    regards
    jrp

Maybe you are looking for

  • How to receive a xml CDATA in string element when OSB calling a webservice?

    How to receive a xml CDATA in string element when OSB calling a webservice? I have a business service (biz) that route to operation of a webservice. A example of response to this webservice legacy: <soapenv:Envelope xmlns:soapenv="http://schemas.xmls

  • Perl permissions

    For quite a time, I have a problem with perl on my system. I don't have the permissions to install or even execute perl scripts as a normal user. IMHO this shouldn't be the default behaviour, but I can't say when and where this changed on my computer

  • I have regisetred a EIT with multiple rows Yes, can we change it NO now.

    I have registered a EIT with multiple rows Yes, can we change it NO now.

  • TINTAS PLANAS ADOBE ILLUSTRATOR CS5 APARACE LA CONVERSION A LAB, MAC OS

    Hola compañeros estoy probando el  nuevo software Ai cs5,  cuando edito una tinta plana, me aparece por  defecto la conversión abajo en lab, lo cambio a cmyk y no me hace  la conversion correcta del cmyk de pantone se muestra en decimales. Se puede s

  • Delivery Priority not determine in STO

    Hello, While I am creating a STO, all the shipping data is determined, but not the Delivery Priority(LPRIO). I understand this should be taken from the Customer master (Shipping TAB), assigned to the Plant. Customer is properly maintained. If I creat