Cannot make a calculation and put conditions

Hi,
I'm using Discoverer Desktop version 10.1.2.45 and I want to make a calculation and put a condition but I can't. When I select Tools --> Calculations from the menu it appears the calculation wizard. When I click to new button I should see a window to make the calculation but I see another window with the following message instead:
Operation incorrect. The operation couldn't be made. (Translation from Spanish).
This message also appears when I try to edit a calculation. I thought Discoverer was installed incorrectly so I decided to reinstall it. But the results are the same. I can't edit and make any calculation.
When I try to make a condition I select Tools --> Conditions and it appears the condition wizard. When I click new button I should see the window allows me to introduce a new condition but it doesn't appears me anything.
I have made the same operations (a calculation and a condition) using another computer with the same Discoverer Desktop version and it works correctly. But in this computer Discoverer is in English (we have all computers with Windows XP in spanish).
Why I can't make calculations and conditions?
Any suggestion would be appreciated.
Thanks.

I have the same problem, Discoverer works very well
two months ago, but now it does not work.
Have anyone solved this problem?
GreetingHas anything changed in the last 2 months? What is not working? Which version? Desktop, Plus, or Viewer?

Similar Messages

  • I want to make a note and put in a folder like we just place a notepad by right clicking in windows,how should I create a note in a folder in mac pro ...?

    I want to make a note and put in a folder like we just place a notepad by right clicking in windows,how should I create a note in a folder in mac pro ...?

    There's no "New File" shortcut in Finder on Macs, so you have to launch the application you want (eg TextEdit), create your document, and save it there. There are workarounds using Terminal (the touch command), AppleScript/Automator, and using third-party launch programs like Quicksilver, but natively, it can't be done.
    Matt

  • IPhone 6 Plus cannot make outgoing calls and cannot send text messages

    I haven't been able to make outgoing calls and outgoing messages through my iPhone6+ since yesterday.
    I have done research and have tried suggestions like turning the phone into airplane mode, turning off the iPhone, re-setting the network settings, erased all the content of my iPhone and restored backup, erased all contents and used as new phone but I still cannot make outgoing calls nor can I send test messages. At first I thought I did not have sufficient money on my sim card however when I tried my simcard on another iPhone, it worked perfectly. I also tried another simcard on my iPhone, but it still can't make a call. I have never had this problem since I got my new iPhone6+ last December. This is the first time I've had a problem like this with an iPhone and I've been using the iPhone since iPhone 4s,iPhone 5 and iPhone 5S. Could there be something wrong with the unit that I have? Is there any other troubleshooting I could do?

    If you restored the device as new and it did not work, then I suggest you contact your carrier. The function of phone calls and SMS messages is a carrier function. They would need to test your account. Your only other option would be to make an appointment at the Genius Bar to have the device examined.
    Can you receive a call and/or message? If so, then I would suspect the SIM and the carrier.

  • How do I make a folder and put applications in it on my iPad?

    I'm trying to organize all my apps and want to make folders to put selected alike items in so I don't have too many pages.  Can someone tell me how to make a folder I can name and drag apps into.  Thanks in advance, Debbie

    Deleting, Rearranging and Grouping Apps

  • Since updating to FF 3.6.12 on my iMac, I have lost all my bookmarks, cannot make new bookmarks and cannot import from a saved bookmarks.html file, even after re-installing the program.

    Running under mac OS X 10.5.8
    Menu bar is present
    Torbutton extension not present
    Navigation buttons did not work, until I re-isntalled FF
    FF "unable to restore backup file "- applies to all bookmark backup files
    I next tried importing the bookmarks.html file I created last year to export them to my new notebook. 3.6.12 fails to import them back again.
    The home page set in my preferences does not now come up when I load FF.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    Make sure that you not run Firefox in permanent [[Private Browsing]] mode.
    * You enter Private Browsing mode if you select: Firefox > Preferences > Privacy > History: Firefox will: "Never Remember History"
    * To see all History and Cookie settings, choose: Firefox > Preferences > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Uncheck: [ ] "Permanent Private Browsing mode"

  • When try to dial anumber anduse my phone, Siri automaticallypops up.  Cannot make a call and cannot send a text

    I cannot use my phone to make phone calls with my dial pad - it automatically goes to the siri screen that tells me what siri can do.  I also cannot send texts to non iphones

    Welcome to the Apple Community Alicia.
    What do you mean by try to restore, if you do this through iTunes you can't use the phone while you do it.

  • Purchase the order, sign out-in, still cannot make...

    purchased this order (****************693) on April 27, tried to sing out and in several times on May 3. even changed the password, but still cannot make calls, land and mobile. any suggestions?

    Doing that to me too, and only just discovered what its up to. Very annoying, I've had several people assume I am being rude and ignoring them, even though I think I am offline and have left my phone elsewhere because I do not expect or want to be contacted! Very poor of Skype to do this, as it never used to.

  • HOW TO USE LOGICAL AND OR CONDITION TOGETHER

    Please do not post subject in ALL CAPITALS
    Hi All there,
    How to use logical and or condition together
    I wanted to use logical AND OR condition together in where clause of Select Query.
    eg where xyz and or abc
    Regards
    Sagar
    Edited by: Matt on Mar 17, 2009 1:05 PM
    Edited by: Matt on Mar 17, 2009 1:05 PM

    hi,
      You cannot use the logical and  or condition together at the same time in SQL statement. Sachin is correct while using the and and or in the same condition. You can get the data using or condition in SQL statement, and then use the delete statement of internal table using the end condition. please find the following code for the same.
    select *
      from dtab
    where cond1 eq 'A1'
         or cond2 eq 'A2'.
    if sy-subrc eq 0.
      delete itab where cond1 eq 'A1' and 'A2'.
    endif.
    regards,
    Veeresh

  • I am using Xcode 5 to make a calculator app and I cannot figure out how to do two things.

    So I am using Xcode 5 to make a calculator app and I cannot figure out how to two do two things. First, how to incorporate the decimal and two, how to make the positive to negative button. The app is only for the iPad. I would like to know how to do it asap. Here is the code I used for addition if that helps.
    -(IBAction)Addition:(id)sender;{
        if (RunningTotal == 0){
            RunningTotal = SelectNumber;
        else{
            switch (Method) {
                case 1:
                    RunningTotal = RunningTotal * SelectNumber;
                    break;
                case 2:
                    RunningTotal = RunningTotal / SelectNumber;
                    break;
                case 3:
                    RunningTotal = RunningTotal - SelectNumber;
                    break;
                case 4:
                    RunningTotal = RunningTotal + SelectNumber;
                    break;
                default:
                    break;
        Method= 4;
        SelectNumber= 0;

    sorry i just saw the search feature and found a few of the same questions. I will check those

  • I cannot make the update of the iphone any more because the preceding owner made the jailbreak blow my telephone does not want to be re-ignited more and N accepts any restoration which must I make? thank you m to help

    I cannot make the update of the iphone any more because the preceding owner made the jailbreak blow my telephone does not want to be re-ignited more and does not accept any restoration which must I make? thank you to help me

    To put your iPhone back in jail do a restore.
    This will put iPhone back into factory condition and you can get your updates (assuming you want the updates).

  • How do I create a 1d array that takes a single calculation and insert the result into the first row and then the next calculation the next time the loop passes that point and puts the results in thsecond row and so on until the loop is exited.

    The attached file is work inprogress, with some dummy data sp that I can test it out without having to connect to equipment.
    The second tab is the one that I am having the problem with. the output array from the replace element appears to be starting at the index position of 1 rather than 0 but that is ok it is still show that the new data is placed in incrementing element locations. However the main array that I am trying to build that is suppose to take each new calculation and place it in the next index(row) does not ap
    pear to be working or at least I am not getting any indication on the inidcator.
    Basically what I am attempting to do is is gather some pulses from adevice for a minute, place the results for a calculation, so that it displays then do the same again the next minute, but put these result in the next row and so on until the specifiied time has expired and the loop exits. I need to have all results displayed and keep building the array(display until, the end of the test)Eventually I will have to include a min max section that displays the min and max values calculated, but that should be easy with the min max function.Actually I thought this should have been easy but, I gues I can not see the forest through the trees. Can any one help to slear this up for me.
    Attachments:
    regulation_tester_7_loops.vi ‏244 KB

    I didn't really have time to dig in and understand your program in depth,
    but I have a few tips for you that might things a bit easier:
    - You use local variables excessively which really complicates things. Try
    not to use them and it will make your life easier.
    - If you flowchart the design (very similar to a dataflow diagram, keep in
    mind!) you want to gather data, calculate a value from that data, store the
    calculation in an array, and loop while the time is in a certain range. So
    theres really not much need for a sequence as long as you get rid of the
    local variables (sequences also complicate things)
    - You loop again if timepassed+1 is still less than some constant. Rather
    than messing with locals it seems so much easier to use a shiftregister (if
    absolutely necessary) or in this case base it upon the number of iterations
    of the loop. In this case it looks like "time passed" is the same thing as
    the number of loop iterations, but I didn't check closely. There's an i
    terminal in your whileloop to read for the number of iterations.
    - After having simplified your design by eliminating unnecessary sequence
    and local variables, you should be able to draw out the labview diagram.
    Don't try to use the "insert into array" vis since theres no need. Each
    iteration of your loop calculates a number which goes into the next position
    of the array right? Pass your result outside the loop, and enable indexing
    on the terminal so Labview automatically generates the array for you. If
    your calculation is a function of previous data, then use a shift register
    to keep previous values around.
    I wish you luck. Post again if you have any questions. Without a more
    detailed understanding of your task at hand it's kind of hard to post actual
    code suggestions for you.
    -joey
    "nelsons" wrote in message
    news:[email protected]...
    > how do I create a 1d array that takes a single calculation and insert
    > the result into the first row and then the next calculation the next
    > time the loop passes that point and puts the results in thsecond row
    > and so on until the loop is exited.
    >
    > The attached file is work inprogress, with some dummy data sp that I
    > can test it out without having to connect to equipment.
    > The second tab is the one that I am having the problem with. the
    > output array from the replace element appears to be starting at the
    > index position of 1 rather than 0 but that is ok it is still show that
    > the new data is placed in incrementing element locations. However the
    > main array that I am trying to build that is suppose to take each new
    > calculation and place it in the next index(row) does not appear to be
    > working or at least I am not getting any indication on the inidcator.
    >
    > Basically what I am attempting to do is is gather some pulses from
    > adevice for a minute, place the results for a calculation, so that it
    > displays then do the same again the next minute, but put these result
    > in the next row and so on until the specifiied time has expired and
    > the loop exits. I need to have all results displayed and keep building
    > the array(display until, the end of the test)Eventually I will have to
    > include a min max section that displays the min and max values
    > calculated, but that should be easy with the min max function.Actually
    > I thought this should have been easy but, I gues I can not see the
    > forest through the trees. Can any one help to slear this up for me.

  • Cannot make outside call (H.323 gateway and CUCM 6)

    I cannot make outside calls. I am using H.323 gateway configuration and CUCM 6. I have attached configuration file and debug file. I configured H323 gateway and route pattern in CUCM. Please let me know if this is a configuration issue or telecom issue.

    Hi 9tysixuae,
    I can see that call is hitting the analog ports but from there on it generates error 34 which means circuit not available. You can try the following :
    1. Plug Analog phone and verify if the circuit is fine ?
    2. Try putting signal ground start on the voice port and see if that makes any difference.
    Regards
    Aditya Gupta

  • I brought my ipad2 from Canada to Thailand,and put a sim card in to access wifi or 3 g, but cannot access internet is there anything I can do to fix this?

    I brought my ipad2 from Canada to Thailand and put a sim card in to access wifi and 3g, but I cannot get on the internet,is there anything I can do to fix this?

    Two things:
    1. Make sure the SIM card is enabled for data.
    2. Make sure you are using the correct APN settings, in Settings - Cellular Data.

  • I have an iphone 4s i used to USA, when i come in Haiti it and put anothe sim card it asks me to activate.  i cannot activate it. how can i know if it's unlocked or not?

    i have an iphone 4s i used to USA, when i come in Haiti  and put another sim card it asks me to activate it.
    i cannot activate it. how can i know if it's unlocked or not?

    As Kilted Tom said, make sure that you speak with your previous provider.  ATT will direct you to a website and have you enter in some information which will determine if you qualify for the unlocking status.  After you complete that, you will need to restore your phone as new through iTunes.  Make sure that you have a backup to iCloud in order to retrieve your content and data after you restore your device.

  • Cannot make or recieve calls and more. :(

    Hi,
    Constantly my iphone 4 (5.0.1) has no service and the blue bubble pops up saying needs to be restored cannot make or recieve calls and a restore wont fix it.Can i replace my iphone? its a year and a half old .I bought it from vodafone.
    Can i go about fixing it myself? i dont really know whats causing the problem.
    One more thing,sometimes wi-fi and bluetooth is greyed out when i turn the phone on,then sometimes there ok.What could cause this?
    Plus i cant see my baseband version when the above happens.
    I live in ireland so no genuis bars around here.
    Please help me guys.
    Thanks.

    Have you restored your phone as a new device?  Restore your phone as NEW without adding ANY apps, music, or anything else.  Now try your phone.  If it works, then you probably had corrupt software on it.  Go ahead and put your apps and media back on.
    If after you restore as NEW and BEFORE you add anything onto your phone it's still acting up, then you have a hardware issue.  You'll have to pay the out of warranty exchange fee to have your phone replaced. 

Maybe you are looking for

  • Trying to update itunes 10.4 to 10.5.3 in windows vista 32bit but keeps coming up with error message

    I am trying to update my itunes 10.4 to 10.5.3 in windows vista 32 bit but it goes through the downloading ok then goes to installing but comes up with "An errors occurred while installing updates. If the problem persists, choose TOOLS>DOWNLOAD ONLY

  • How to get icloud to open in chrome instead of IE on windows 8

    Hi,      i have windows 8 and in my apps i have - icloud, contacts and calender which clicking on them opens icloud on internet explorer is there a way to get them to open up on google chrome instead Thanks intelligent community =D Chrisdion Altoft

  • New PC, Will This Stuff Work Together?

    Hey, I'm trying to build my own computer ive been searching the net for ages trying to find some good products, i have come up with this: Intel Pentium 4 630 64bit 3.0Ghz MSI 925XE Neo Platinum MSI NX6600GT-TD128E Corsair TWIN2X512-4200 533Mhz I need

  • Encrypting Aironet 1410 bridge link using multiple VLANs

    I've looked at the documentation available for Aironet 1400 series, and still would like to see a single document showing an example of the best encryption/authentication available for bridge links using multiple VLANs. As I understand it, 1400 serie

  • Insert statement taking time on oracle 10g

    Hi, My procedure taking time in following statement while database upgrading from oracle 9i to oracle 10g. I m using oracle version 10.2.0.4.0. cust_item is matiralize view in procedure and it is refreshing in the procedure Index is dropping before i