Why isn't Calculate updating the Totals fields?

i have created a multipage document. each has a column with amounts, and a total row at the bottom of the page. the first page lists checks. the second page lists only cash.
the first page has two other fields "Total Checks" and Total Cash". each is set to sum the total of the appropriate page. finally there is a Grand Total field that sums the Total Checks and Total Cash.
The problem is, the entries update the column total as soon as they are entered, but the Totals don't.
I have checked to ensure no fields are locked, and all are number-formatted. i have rechecked the calculation tab many times but the problem remains.
also, does anyone have a manual in pdf form?
is it acceptable to attach the file?
one lemming

You just need to set the field calculation order (which is not the same thing as the tab order) to whatever makes sense for your form. Currently, it is not set correctly. Exactly how you change it depends on the version of Acrobat you're using. In Acrobat 9, go into form editing mode and select: Forms > Edit Fields > Set Field Calculation Order

Similar Messages

  • [JSF 2] Update the total of an editable column from a dataTable

    Hi,
    i am using JSF 2.
    I would like to update a field which is outside a dataTable and is the sum of a column from a dataTable.
    The fields of this column are editable, so the user can change the quantities.
    Then he clicks on a button and it should update the total.
    I have been thinking about working with the DataModel of the list i use to populate that dataTable but i am still trying to find out what the DataModel can do for me in that case.
    What about listeners ? events ?
    Any suggestion ?
    Thanks.

    Hi,
    i am using JSF 2.
    I would like to update a field which is outside a dataTable and is the sum of a column from a dataTable.
    The fields of this column are editable, so the user can change the quantities.
    Then he clicks on a button and it should update the total.
    I have been thinking about working with the DataModel of the list i use to populate that dataTable but i am still trying to find out what the DataModel can do for me in that case.
    What about listeners ? events ?
    Any suggestion ?
    Thanks.

  • Material Master: Update the Z fields using BAPI

    Hi to all,
    My requirement is simple. But I do not have much knowledge on BAPI. I have got some information that we can extend th BAPI and update the Z fields in material master. I have added the z fields in MARA. So when I call the bapi z fields has to get update.
    Which BAPI can i use? I have got one BAPI - BAPI_MATERIAL_SAVEDATA.   plz suggest me to do it.
    1. how do i enhance the BAPI or extend th BAPI.
    2. Is ther any approch to do it.
    thnks
    Yerukala Setty

    Hi,
    Append the z fields to BAPI_TE_MARA and BAPI_TE_MARAX structures using append structures.
    Populate two structures for the fields in BAPI_TE_MARA and BAPI_TE_MARAX.
    To BAPI_MATERIAL_SAVEDATA, under EXTENSIONIN parameters, pass structure name as BAPI_TE_MARA and Value Part1, 2, 3, 4 with the filled structure info.
    Similarly append X structure as well.
    Regards,
    Ganga

  • How to update the Customer field value of PO Item under the Delivery Address Tab?

    Hi Friends,
         i tried to update the Customer field Using Bapi_PO_change.I passed the PO Order no,POADDRDELIVERY data with Item no,Adrees no,Customer no.But i am getting no data changed message from return table.I attached the screen shots.So please suggest me the helpful information for resoving this issue.
    Thanks,
    Dinesh

    Thank you friends,
                My Problem was resolved.In my case i have passed the customer value in BAPI_PO_CHANGE POITEM Table with updated customer value.
    Thanks,
    Dinesh

  • Updating the Assignment Field (ZUONR) with Check No

    Hi
    Can anyone help me please?
    I would like to update the assignment field (ZUONR) in the Bank Payables Clearing Account with the cheque number from the payment run (PAYR-CHECF).
    1.  Firstly is this possible?; and
    2.  If so could you explain how I do this.
    Thanks in advance for your assistance on this issue.
    Regards
    Claire

    Hi
    I would but there is no sort key which contains this, nor can I create one :o(.
    If you are aware of how I can do this then please let me know.  Is there a user exit which will populate this field when a payment has been made?
    Regards
    Claire

  • Updating the description field on the CRM Service Order

    HI Experts,
    I want to update the description fied with the service order number on the service order.
    What is the procedure to update the screen field on the crm service order, is it by order_maintain.
    Thanks in Advance for your help,
    Praveen

    Hi Praveen,
    Changing the field label on the WebUI is discussed many a times. Before posting, it is always a best practice to search for the solution.
    here is the link
    Change Field name & make it optional
    Hope this solves your requirement.
    Best Regards
    Shiven

  • Update the Street field in ADRC table.

    Hello !! Please I need some help.
    I have to update the Street field in ADRC table.
    I have this list.
    Where I can put a Flag and an Update to do it.
    Im really newbie.  Im doing it in IDES, to test it first.
    Help !
    REPORT  Z_LIST_ADRC      LINE-SIZE 190
                             LINE-COUNT 65
                             NO STANDARD PAGE HEADING.
    TABLES: ADRC.
    DATA: BEGIN OF ITAB OCCURS 0,
               ADDRNUMBER LIKE ADRC-ADDRNUMBER,
               date_to like ADRC-date_to,
               NAME1 LIKE ADRC-NAME1,
               CITY1 LIKE ADRC-CITY1,
               CITY2 LIKE ADRC-CITY2,
               STREET LIKE ADRC-STREET,
               MC_NAME1 LIKE ADRC-MC_NAME1,
               MC_CITY1 LIKE ADRC-MC_CITY1,
               MC_STREET LIKE ADRC-MC_STREET,
    END OF ITAB.
    SELECT ADDRNUMBER DATE_TO NAME1 CITY1 CITY2 STREET MC_NAME1 MC_CITY1 MC_STREET
      FROM ADRC INTO TABLE ITAB.
    LOOP AT ITAB.
    WRITE : /001 ITAB-ADDRNUMBER,
                    007 ITAB-DATE_TO,
                    016 ITAB-NAME1,
                    040 ITAB-CITY1,
                    070 ITAB-CITY2,
                    090 ITAB-STREET,
                    120 ITAB-MC_NAME1,
                    150 ITAB-MC_CITY1,
                    170 ITAB-MC_STREET.
    ENDLOOP.
    TOP-OF-PAGE.
      ULINE.
        WRITE:         /001 'n-addr',
                        007 'date',
                        016 'name',
                        040 'city1',
                        070 'city2',
                        090 'street',
                        120 'name-s',
                        150 'city1-s',
                        170 'city2-s'.
      ULINE.

    HI,
    data : itab like standard table of adrc.
    select * from adrc into table itab.
    loop at itab.
    itab-street2 = 'New value'.
    modify itab index sy-tabix.
    endloop.
    if not itab[] is initial.
    modify adrc from table itab.
    endif.

  • Why isn't Premiere in the CC Desktop app?

    I purchased Premiere Pro CC, but it doesn't appear in the CC desktop app to download. The activation worked because the CC website shows "Download" for Premiere Pro instead of "Try Now". Why isn't Premiere in the CC Desktop app? Super frustrating.

    Hi bgdmarketing,
    Please refer to the help document below to check if the OS supports it:
    System requirements | Adobe Premiere Pro
    Regards,
    Sheena

  • How can i update the REMARK field in ADRT database table

    Hi all,
    How can i update the REMARK field in ADRT database table
    By using Function modules or BAPI’s
    Please reply me fast

    Hi,
    you can try this code:
        SELECT SINGLE * FROM KNA1 WHERE KUNNR = wa_kunnr.
        IF sy-subrc = 0.
          CLEAR adrct.
          SELECT SINGLE * FROM adrct WHERE addrnumber = kna1-adrnr.
          IF sy-subrc = 0.
            adrct-remark = wa_remark.
            MODIFY adrct.
          ENDIF.
        ENDIF
    best regards,
    Thangesh

  • HT4972 why can't i update the software on my ipad model MB292LL?

    Why can't I update the software for my IPad model MB292LL? The ios is 5.1.1 and I have seen newer ios versions come out. Also, many apps aren't available for my Ipad because of the ios. Is this Apple's way of forcing you to buy a new IPad? If so, that *****!

    The 1st generation iPad can not be upgraded beyond 5.1.1

  • HT5848 Why isn't Angie Miller, the 3rd place winner on American Idol 12 on I tunes radio.  You have another Angie Miller but not this one.  She has a huge following.

    Why isn't Angie Miller, the 3rd place winner on American Idol 12 on I tunes radio.  You have another Angie Miller but not this one.  She has a huge following.

    I don't know much about samba, but I have had very similar problems with netbios in windows, I find it to be very unreliable and I think you would be better off with ftp, but that's just my opinion. Apart from that, are you sure you have the necessary ports opened, and so do they? And you might need a line in /etc/hosts.allow
    Last edited by calef13 (2008-04-21 10:28:45)

  • Why can't i update the ios for my ipod? I'm stuck at 3.1.3. Please help.

    Why can't i update the ios for my ipod? I'm stuck at 3.1.3. Please help.
    I have itunes updated but it doesn't show that an update is available for the ipod.

    Probably because yu have a 1G iPod that can only go as high as 3.1.3. To identify your iPod:
    Identifying iPod models
    If you have a later iPod, what version of iTunes do you have on your computer and what computer OS and version?

  • The GB used in the level bar isn't equal to the total GB of songs in iPod:

    Hello!
    When I try to update the songs on iTunes, I get a message saying that my iPod is nearly full, with a a level bar saying that 5.65GB is already used. However, all the playlists, including my podcasts, only amount to 2.38GB. I have tried resetting it several times to no avail, and I am not using my iPod to store non-music files.
    Why is it telling me that I am using more GB than the maximum total of my music files, and how can I allieviate this?
    Thank you!
    2G iPod 6GB   Windows XP  

    Welcome to Apple Discussions.
    I suggest you try to restore the iPod, then resync again.

  • Who Updated the Memo field

    I am trying to determine if it is possible to find out who updated a column field like the function ColumnHistory() shows the history.  I would like to see which user made the changes in the ColumnHistory().  Is it possible to do this?

    Routines to log changes to data tend to make use of the AfterUpdate event.  However, this does not in itself mean that any change has been made to the values of the data.  You'll find an example of one which does so, however, as ChangedRecord.zip
    in my public databases folder at:
    https://onedrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
    If you have difficulty opening the link copy its text (NB, not the link location) and paste it into your browser's address bar.
    This little demo file calls the Windows API GetUserName function to return the current user's Windows login-in name, and includes code in two modules which determines (a) if data in a record has actually changed rather than simply been updated and (b) if data
    will change, in order to get user confirmation to save a record.  The former would apply in your case.
    In my demo it is the whole record which is examined for changes, not just a particular field, so some small modification of the code would be required to limit it to one field.  I can confirm that it does work with a memo field per se, though whether this
    will be true in the case of fields containing very large amounts of text I can't honestly say without testing it.  You can easily do so by adding a memo field to the Contact table in my demo, and including a control bound to this in the form.  Then
    paste in a very large block of text into one record via the form.  If it successfully detects the insertion as a change, then make a small amendment to the text and see if it detects that.  I see no reason why it shouldn't, but without empirical
    evidence I wouldn't bet the farm on it.
    Ken Sheridan, Stafford, England

  • Updating the key field in a table

    I am trying to assign new values to the primary key column in a table. As it is necessary to hold a permanent record of the relationship between the new and old values, I am extracting the old values into another table and assigning the new values from a sequence with an insert trigger on this table.
    Within the same mapping, I cannot seem to take the new values from this table and update the original table. Ideally, I would like to update key flexfield colum with the new primary key values using the old primary values as the in the where clause' of the update statement (as opposed to delete and reinsert the rows into) the originating table - as I only pull across the key flexfield column into the number allocation table, this is necessary to preserve the other data.
    Can anyone let me know how this can be achieved?...I cannot find the concept of new and old in OWB table updates.
    I have tried using the (unsuitable) load type of 'DELETE/INSERT' on this table, but this results in the contents of the table being deleted when I run the mapping.

    If it's necessary to change the primary key then your database design is likely wrong. I don't understand why it would be necessary to update a PK unless you use PK with a certain meaning which is a design failure.
    Regards,
    Jörg

Maybe you are looking for

  • How to create thumbnails of a video in java ?

    Hi Is there a way to create a thumbnail of a video file ? I know we can use ffmpeg libraries but I was thinking of some other way. Clarification appreciated. :)

  • RE; Upgrading from 4.2 to 4.3 missing files and presets?

    Updated my preivous copy of Ligtroom 4.2 to 4.3 when I opened lightroom 4.3 it was a new copy without any of my previous catalogs or images. Where I can I locate my images from 4.2 and how to trnsfer into 4.3? Thanks for help..

  • TS3989 Videos in iCloud photo streams cannot be played

    All my videos appear in photo streams (own or shared) as thumbnails, but they cannot be played (the wheel turns indefinitely), on all devices in iOS7. On Apple TV 3 6.0, video don't even appear in photo streams. These videos are taken with my iPhone

  • Unable to activate Acrobat Pro X [was:please help]

    I have purchased the adobe creative suite 6 design standard, and I can't seem to activate acrobat pro x. I have uninstalled my trail version which was acrobat pro XI, but it still is not appearing on my adobe application manager.

  • PaintComponent() - Problem

    Hi, I have a tabbed pane with custom JPanels on each pane. Each of these custom panels has it's own paintComponent() - method to display custom graphics. Problem: Sometimes hidden JPanels are also painted, so that they are displayed on a the wrong pa