My Calculations are not working on a form

I created 35 invoice forms for our field offies. The first one works properly. It is a simple Sum. I go to properties of the field. Select Calculate, pick the ten fields from the list and close. The first one that works you can see the typed field names in the box. the second doesn't seem to be saving my selections. I have checked my fields calculation order and that seems to be correct.
Working on Windows 7 64bit and Acrobat X Pro

Can you share the file, either through a file-sharing site or by email (my
address is [email protected])?

Similar Messages

  • Some Calculations are not working in Discoverer 10g after upgrade from 4.1

    Hi Gurus,
    We are recently upgraded Oracle Discovere 10g from 4.1, some calculations are not working in Discoverer 10g. I appreciate if you could fix below calculation(s) in 10g.
    CASE WHEN TRUNC("Expenditure Item Month") = '31-JAN2007' THEN SUM(Wtd Qty A) WHEN TRUNC("Expenditure Item Month") = '28-FEB-2007' THEN SUM(Wtd Qty A) WHEN TRUNC("Expenditure Item Month") = '31-MAR-2007' THEN SUM(Wtd Qty A) END
    Thanks & Regards
    Vikram

    Sabra,
    Not sure exactly what this might be... there could be an issue there.
    Please make sure that you review the upgrade.log. Are there any errors / warnings?
    Also, you might wanna peek the Metalink Note:262623.1 - Master Note for OracleAS Portal Upgrade Issues, where you'll find some nice things where to start looking at.
    Later you may wanna open a Service Request into the Oracle Support.
    I hope it helps...
    Cheers,
    Pedro.

  • Key functions are not working in oracle11g forms

    I have migrated a oracle 10g form to oracle 11g form
    1.Key function such as down arrow,up-arrow is not working in oracle11g forms though key-down etc trigger have been written.
    2.Tree node function,i mean when i try to call form from a child node ,it required 4-5 click.
    Can anyone help me for these issue

    Next_form function is not working.i have copied the .res file from 10g.So the issue like this,when i master forms calls(by using open_form in when-window-activate trigger)to a child form and the child form having (when-window-activate trigger)next_form to return the cursor in the master form,it got hang in 11g.This is problem.i have checked by creating the same.Could you help me for the same.this code is running fine in 10g.

  • Depenedant SelectOneChoices are not working in creation form of ADF 11g

    Hi,
    I have created a ADF creation form using updatable VO.
    I have three list boxes, theaterId, AreaId, SalesSegment. if i select theaterId list box it should refresh the list for areaId and salesSegment.
    I have created list boxes in VO attribute level and defined the dependencies.
    When i run the page dependant lists are not showing data.
    If i create the ADF form with same VO, functionality is working fine but it is not working in the Creation form.
    Pls help me to resolve this issue.
    Thanks inadvance.
    Regards,
    Satya.

    Check this if its helpful: Re: Cascading LOV not refreshing correctly after removing row

  • E-mail notifications are not working in my form

    Formcentral:
    I do not receive a notification when a user is sending the form.
    I have checked help files here but found no answer to my problem.
    I am the author of the form.
    The mail I use is the same as for my Adobe ID.
    I have chosen a "from" field - e-mail - in the form (Field is called "E-mail")
    Help needed please!

    Forgot to add this screen dump showing the set up:

  • Form load rules are not working on display and edit forms

    Hi
    I have customized SharePoint 2013 list form using InfoPath 2013. I want to hide certain fields based on user group. I created rules on form load for that. These rules are working fine on New Form but are not working on display and edit form.
    What can I do?

    It could be because the value might have not changed ie, you might be checking for a particular value, the values might have got overwritten when the new form is saved, see if that value is blank or overwritten in display and edit forms.
    I would first check the form load rules and check those values again in Display form and edit form, if the values are not getting cleared/overwritten.
    It would be better if you could upload the screenprint.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • Update process does not work on Tabular Form

    Hello,
    I have 2 tabular forms on one page, which are using manual update processes.
    First form is created using wizard, and therefore works perfectly.
    The update process is as follows:
    DECLARE
      lc_string VARCHAR2(4000);
    BEGIN
      FOR i IN 1..APEX_APPLICATION.G_f01.COUNT
      LOOP
         lc_string := lc_string|| '[' ||APEX_APPLICATION.G_f*03*(i) || '|' || APEX_APPLICATION.G_f*04*(i) || ']';
      END LOOP;
      --Database processing using the concatenated string here
    END;Second form is created manually, using the following code:
    SELECT apex_item.checkbox (30,
                               '#ROWNUM#',
                               'onclick="highlight_row(this,' || '#ROWNUM#'|| ')"',
                               NULL,
                               'f30_' || '#ROWNUM#'
                              ) delete_checkbox,
           CATALOG_ID,
              apex_item.hidden (31, CATALOG_ID)
           || apex_item.text (32,
                              LANG,
                              80,
                              100,
                              'style="width:100px"',
                              'f32_' || '#ROWNUM#'
           || apex_item.hidden (33, wwv_flow_item.md5 (LANG, DESCRIPTION)) LANG,
           apex_item.text (34,
                           DESCRIPTION,
                           80,
                           100,
                           'style="width:255px"',
                           'f34_' || '#ROWNUM#'
                          ) DESCRIPTION
      FROM V_CATALOGS
    UNION ALL
    SELECT     apex_item.checkbox
                              (30,
                               TO_NUMBER(9900 + LEVEL),
                               'onclick="highlight_row(this,' || '#ROWNUM#' || ')"',
                               NULL,
                               'f30_' || TO_NUMBER (9900 + LEVEL)
                              ) delete_checkbox,
               NULL,
                  apex_item.hidden (31, NULL)
               || apex_item.text (32,
                                  NULL,
                                  80,
                                  100,
                                  'style="width:100px"',
                                  'f32_' || TO_NUMBER (9900 + LEVEL)
               || apex_item.hidden (33, NULL) LANG,
               apex_item.text
                                               (34,
                                                NULL,
                                                80,
                                                100,
                                                'style="width:255px" '  ,
                                                'f34_'
                                                || TO_NUMBER (9900 + LEVEL)
                                               ) DESCRIPTION
          FROM DUAL
         WHERE :P18_TEMP = 'ADD_ROWS1'
    CONNECT BY LEVEL <= 1However, the update process does not work on this form.
    I created it using the first one as an example, but with the id's of the second form:
    DECLARE
      lc_string VARCHAR2(4000);
    BEGIN
      FOR i IN 1..APEX_APPLICATION.G_f*30*.COUNT
      LOOP
         lc_string := lc_string|| '[' ||APEX_APPLICATION.G_f*32*(i) || '|' || APEX_APPLICATION.G_f*34*(i) || ']';
      END LOOP;
      --Database processing using the concatenated string here
    END;Also, both forms are opening in a modal pop-up dialog window.
    I use a Dialog Region plug-in for that.
    Please advise, what is causing a problem with update?

    Sloger,
    if this is your tabular form
    SELECT apex_item.checkbox (30,
    ...and this is your update statement
    FOR i IN 1..APEX_APPLICATION.G_f*30*.COUNT
    ...Then you will only ever update records that have been checked. Unchecked checkboxes are not passed back in the global array. You need to have a hidden column with the ID's for the record and loop through that when you are updating/inserting. That is why the built in tabular form has a MRU and a MRD. the MRU loops through the hidden ID column. The MRD loops through the checkbox.
    Thanks,
    Tyson Jouglet

  • ADF bindings are not working with inheritance heirarchy.

    ADF bindings are not working with inheritance heirarchy. I am using embedded OC4J in JDeveloper 10.1.3.2.
    For the data model I have the following objects\attributes.
    1) User (abstract EJB 3.0 POJO)
    - Id
    - userId
    - userName
    2) Employee -> extends User (EJB 3.0 POJO)
    - enabled
    - password
    3) Manager -> extends Employee (EJB 3.0 POJO)
    - numOfEmployees
    4) UserSessionBean (Stateless Session Bean)
    - public User findUserByUserId(String userId)
    - public List<User> queryUserFindAll()
    - Object mergeEntity(Object entity)
    I created 2 JSF pages using ADF.
    1) ListUsers.jspx - Lists all the users of type Employee and Manager in a table. You can select an user and chose to modify the user details using a modify button.
    2) ModifyUser.jspx - Modify the selected user and persist the modified user details.
    I implemented ListUsers.jspx by dragging and dropping queryUserFindAll() method from the ADF datacontrol on to the JSF page and selected ADF Table format with selection enabled.
    Similarly for the ModifyUser.jspx page I dragged and dropped the User object returned by findUserByUserId(String userId) and selected ADF Form format. I selected OutputText field types for userId and userName.
    I then created a navigation case from ListUsers.jspx to ModifyUser.jspx and pass the selected user.
    Now when I try to run the web application, ListUsers.jspx correctly displays all the users. Then I select a user of type Employee and click on the modify button. This brings up the ModifyUser.jspx page. However, the UserId text field displays the value for "Id" field rather than "userId".
    Question that I have is:
    - Why is ADF framework not able to retrieve the appropriate user attribute value for a Employee based on the binding information in case of inheritance ?
    Thanks,
    Piyush

    Hi,
    tried with JDeveloper 10.1.3.3 and this works for me. Try JDeveloper 10.1.3.3 - if it doesn't work, have a closer look at your sessionFacade
    Frank

  • ODBC not working in WEB FORM(Dev6i)!!!

    Hi :
    I found ODBC are not working in Dev6i Web Forms , my reports all based on excel though ODBC .
    Can anyone help me to solve this problem ?
    Help me !!!!
    Thanks in advenace !!!

    Answering Oracle Reports questions is a bit out of my league, but I deal with a lot of ODBC apps, so I'll take a shot.
    Try doing the following-
    1) Open the Control Panel, Open the Data Sources (ODBC) control, and select the DSN you'll be using.
    2) Put mnewman in the User ID field and mnn4578 in the password field.
    3) I'm not familiar with the Oracle Reports dialog you're referring to when you say "I put in mnewman/mnn4578@ODBC:*", but make sure that you aren't providing more information than is being asked for (i.e. putting user/password@ODBC:* in a field that just asks for username). Since it's asking you to pick a DSN, it should be able to pull username/password information from the DSN.
    Justin Cave
    ODBC Development

  • Some of the services of ITS 640 are not working

    Hi All,
    I have implemented SAP NW 04 SR 1 Portal and integrated SRM 4.0(EBP 5.0).I have also implemented Business Package for mySAP SRM 4.0 60.2.
    I am using internal ITS for HTML GUI.
    Some of the iviews of the business packages  are working but some of them are not.
    I am getting an error message
    "The URL http://g4kwas642.corp.rwdtech.com:8050/sap/bc/gui/sap/its/bbpsc05/! was not called due to an error.
    Note
    The following error text was processed in the system SRM : Attribute for user PBHONDELE contains errors. Inform system admin.
    The error occurred on the application server g4kwas642_SRM_50 and in the work process 0 .
    The termination type was: TH_RES_FREE
    The ABAP call stack was:
    Form: OUTPUT_EXPRESS_MESSAGES of program SAPLBBP_SC_UI_ITS
    Form: EXTERNAL_SCREEN_DETERMINE of program SAPLBBP_SC_UI_ITS
    Module: EXTERNAL_SCREEN_DETERMINE of program SAPLBBP_SC_UI_ITS"
    I have published all the services that are under SICF.
    I had also published all the services using w3_publish_services and siac_publish_all_int.
    It says that all the services are succesfully published.
    When I  go to SICf to test the service,some of them are not working.
    Can you guys tell me what are the steps that I am missing?
    Thanks,
    Paritosh

    I am also getting the same th_res_free error..
    I have installed nw04 sr1 and trying to run ESS on it.
    My problem is, i have installed sap WAS 6.4 on different machine and R/3 on different machine..
    So now.. where i have WAS.. does not have all the services. All services are there on R/3 server..
    Now how do i publish the services on WAS 6.4??
    Coz that option to publish on INTERNAL site is not coming on my R/3 (4.7) as it does not have WAS 6.4.. its on different machine.
    Please tell me what can be done in this case.
    I cant create a R/3 transaction iView using webgui because of this. my Web gui service on WAS 6.4 runs fine whne i test it in SICF .. but not in Iview..
    Please help me out .. i dont want to install a ITS on another machine which is simple solution..

  • Form is not working of multiple form check boxs, source posted. HELP.

    Form is not working of multiple form check boxs, source posted. HELP.
    I'm trying to have golive form be able to check one, two or all of the options in Graphics field.
    As is it will only post results from the last checked box.
    Here's the page
    http://www.perfection-press.com/Pages/ContactForm.html
    Here's where source in golive has scanning,design,filesupplied.
    [code removed to fix forum topic display]

    Since the checkboxes all have the same name, the values are over-writing each other when being passed to the PHP script. The best way to fix that is to add a pair of empty square [] brackets after the checkbox names, so make the names "graphics[]" instead of "graphics". That tells PHP that the values are being passed as a list (an array) instead of a single value. As long as your processing script knows what to do from there (and it does), should solve the problem.
    By the way, I noticed that two of the checkboxes were named "graphics" and the other was "graphic" (singular). You'll want to fix that too so they're all the same.

  • Buttons at aplication toolbar are not working

    I created three buttons at selection screen and gave the following code at user-command:
    But the execute/create buttons are not working.
    Can anyone tell what could be the reason?
    REPORT  XXXXX
                      S E L E C T I O N - S C E E N                      *
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS: SA    FOR XXX-SA NO-EXTENSION NO INTERVALS,
                    SB    FOR XXX-SB NO-EXTENSION NO INTERVALS,
                    SC    FOR XXX-SC NO-EXTENSION NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK B1.
                     INITIALIZATION                                      *
    INITIALIZATION.
      SET PF-STATUS C_S.
                    AT SELECTION-SCREEN                                  *
    AT SELECTION-SCREEN.
                     AT USER-COMMAND                                     *
    AT USER-COMMAND.
      CASE SY-UCOMM.
        WHEN C_FCODE_CREATE.
          PERFORM CREATE.
        WHEN C_FCODE_ALL_OBJECTS.
          PERFORM show.
        WHEN C_FCODE_BACK.
          LEAVE PROGRAM.
      ENDCASE.
    *&      Form  CREATE
    FORM CREATE .
      DATA:LT_DYNPREAD LIKE DYNPREAD OCCURS 0 WITH HEADER LINE,
           L_CURSORFIELD(30),
           L_OK.
      GET CURSOR FIELD L_CURSORFIELD.
    CASE L_CURSORFIELD.
    IF SA IS NOT INITIAL.
    PERFORM CREATE1.
    ENDIF.
    ENDFORM.                    " CREATE

    Hi,
    This will not work as the PF_STATUS of selection screen is generated automatically during the generation of the program.
    In order to change the PF-STATUS of the selection screen you can use the FM RS_SET_SELSCREEN_STATUS or RS_EXTERNAL_SELSCREEN_STATUS.
    However I suggest that for your requirment you can create buttons on the selection screen as follows:-
    selection-screen : begin of line.
    selection-screen : pushbutton 25(21) y_p_upld user-command load
                       visible length 25.
    selection-screen : end of line.
    Incase you want the button on the application toolbar of the selection screen then please use the option
    SELECTION-SCREEN FUNCTION KEY n .
    On the selection screen toolbar you can assign upto 5 buttons.
    These buttons are already present but they are inactive.
    You can make them active by
    SELECTION-SCREEN: FUNCTION KEY 1,
                      FUNCTION KEY 2.
    Please see the F1 help on selection-screen for more details.
    Regards,
    Ankur Parab

  • Buttons are not working on Vision

    Hi All,
    I developed a page where two buttons are there one for Printable page and other is to open Oracle Form, these are working fine on my machine but on Vision these are not working.
    Please suggest If anyone have faced this issue before.
    Thanks in advance.
    Regards,
    Reetesh Sharma

    Abdul,
    both are normal buttons(not submit button), URL is attached to that, it is working fine on my machine but same thing is not working on Vision.
    One more interesting thing is there, when I click on "About this page link" it takes me to next page there also "Printable Page" isn't working.
    Regards,
    Reetesh Sharma
    Edited by: Reetesh Sharma on Sep 29, 2009 2:03 AM

  • Click Boxes are not working

    I'm currently working on a course that contains a main menu screen that then branches off to several course modules.  On the main menu I have placed several click boxes that jump to the slides within the course.  Of the 5 click boxes that I have placed on the main menu, 2 are not working although they are set exactly like the other three with the exception of the slide that they are  jumping to. 
    The click box setting are as follows:
    Jump to slide (set to the slide that contains desired content)
    Appear as of 0 seconds
    remain for rest of slide
    Infinate attempts
    Show hand over hit area
    Pause project until user clicks.
    I have tried to delete the offending click boxes and rebuild.  Copy a click box that functions and simply change the jump to slide number.  Rebuild the entire slide (resulting in the same situation of the 3 click boxes that worked continuing to work and the 2 that didn't, not working.)  I have built several main menu screens in the sam manner in several courses with out any problems.  Please help me to understand what could possibly be the issue.
    Thanks,

    Hi there
    Do you have a quiz in the project? If so, you could have your quiz settings configured so that questions MUST be answered before you may continue.
    For example, perhaps you have a 40 slide project. You have some buttons on slide five. Button one jumps to slide six. No problem. Button two jumps to slide 20. No problem. But Button three tries to jump to slide 30. And on slide 28 you are asking a True/False question. Your quiz settings may declare that the question on slide 28 MUST be answered before you may continue. In that case the button would appear to fail and not jump to slide 30 because the question on slide 28 hasn't been answered.
    Cheers... Rick
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • Hi i have moved from uk to india, i have changed my country in itunes store, when i am entering my payment details its not accepting it. more worse is all my applications which i have downloaded in uk are not working now. please suggest me a solution

    hi i have moved from uk to india, i have changed my country in itunes store, when i am entering my payment details its not accepting. more worse is all my applications which i have downloaded in uk are not working now. please suggest me a solution

    papillondefer wrote:
    I want to be able to keep app's, music, movies and my Cloud/Match exactly the same.  How do I do this?
    Because of different local copyright laws and licensing you cannot keep everything exactly the same except for iCloud, which is not affected. You will have to create a new Apple ID for use on the UK iTunes Store with a form of payment drawn on a local bank and an address in the UK. As long as you have downloaded all your purchases and the computer is still authorized to play all protected video content that won't change, however Apps may give you trouble when updating because once associated with an Apple ID you can only switch between stores every 90 days.
    As for iTunes Match you must contact Australian iTunes Store support to cancel the subscription and you will have to resubscribe on the UK store.

Maybe you are looking for

  • New-GL Migration and Upgrade together is possible??

    Dear NewGL gurus. Currently, our customer who uses SAP Enterprise version is considering to do the upgrade from Enterprise to 6.0 and migration to New-GL at the same time with migration scenario 4. I knew that "SAP strongly recommends the migration a

  • Query on Strings

    Hi Guys,              I have a Internal Table which is of type string. After filling My Internal Table has 2 records like below Details(This is Fieldname in my Internal Table) 1.xxx,yyy,zzz,abc,123,456,Etc............., 2.abd,134,Etc.............. Wh

  • Performance help please!

    We have a problem with performance on production. As a lowly developer, I don't have much access to live but I do have a workspace separate to LIVE in which I've run some stats to try and ascertain the issue. Running the following: SELECT * FROM (SEL

  • Flex Builder 3.0 Licence purchase request

    We have installed flex builder 3.0 (trail version) as part of the FLEX development and design mode working fine. The problem is not able to buy  license for this specific version 3.0. When clicks on Purchase button under Manage Flex Builder License t

  • SMTPAuthenticationException:504 5.7.4 Unrecognized authentication type

    Hi Folks, we have a 3rd party system that wants to send automated emails externally, I have setup a new receive connector on our cashub servers just to allow this server to be able to use our exchange as a relay, I've checked all the forums about how