I'm trying to use use the variable Evaluate, but doesn't work

Hi!
I need to use in the Evaluate of a variable, the condition where is the variable is > of another variable.
I wrote after that I checked the condition:
#VARIABLE or '#VARIABLE'
But it doesn't work. Both of variable is numeric.
What I have to do?
I hope to have soon a support because is really important.
Thanks in advance
Bye

I suggest that you must find out what the variables are, as I have tested the two variable EQUALS and NOT and it has worked, so it is a subtlety. Can you add a procedure step which uses a Jython step to print the variable value to the console of an agent so you see what it is comparing.
In my package I have the steps:
Declare variable A
Declare Variable B
Assign value to A
Assign valkue to B
Evaluate Variable A: equals #PROJECTCODE.B
On true step TRUE
On False step FALSE
I tried assigning B the same and different values, each time I ran I got the expected response.

Similar Messages

  • Bought a Logitech keyboard to. Use with my iPad 2 but doesn't work. What am I doing wrong?

    Bought a Logitech keyboard for iPad 2... First of all USB cord doesn't fit and had to order adaptor to connect them but still doesn't work...keyboard came with no directions? How do I make this work?

    You're using the Camera Connection Kit. This is designed to connect cameras to your iPad in order to import photos you've taken. However, the Camera Connection Kit, although that was not what it was designed for, has been known to sometimes accept certain simple USB keyboards and even USB headphones. Obviously, your Logitech is of a better quality keyboard and does not work with the CCK, because it wasn't designed to accept anything other than a camera.
    Most Bluetooth keyboards, if not all, should work with your iPad. There is the official Apple Keyboard which looks and works great, and connects to an iPad or a Mac using Bluetooth. However, it is a bit on the expensive side ($70). I'm sure there are good alternatives if you need.

  • My ITunes app keeps crashing on me, I have tryed turning it off and back on but doesn't work. How do I fix it without having to restore everything back on my iPhone??

    I can't restore my whole phone, but my ITunes app keeps crashing on my it will not let me even get the main screen, please help

    Hi,
    Have you tried a Reset...
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    The Apple logo will Appear and then Disappear...
    Usually takes about 15 - 20 Seconds...
    Release the Buttons...

  • HT201210 I plugged in my iphone to my computer and now my phone has the itunes displayed but doesn't work at all.

    I plugged in my iphone to my computer to my itunes account.  my phone do not work now, just displays the iturnes logo.  No call can be received.  Any advise?

    Unless you had backed up some of your data to iCloud, there's no way to get it back with the exception of previous iTunes purchases which can be redownloaded.

  • I have a VGA adapter and an iPad2.  Tried projecting my iPad2 to projector using the VGA but doesn't work.  Tried it with friend's iPad1 and it works.  Why??

    I have a VGA adapter and an iPad2.  Tried projecting my iPad2 to projector using the VGA but doesn't work.  Tried it with friend's iPad1 and it works.  Why??  Pls help.

    Yup - nothing happens.  I then took the same VGA cable and plugged it into my friend's iPad1 and it worked perfectly when she opened Keynote.  My understanding is that the iPad2 mirrors the entire screen, so no need to go into any specific application in order to project to the screen, right?  Do I need to download any specific app or change any settings in order to be able to project the screen using VGA?
    Sorry - novice at this.  Not very tech minded either...

  • HT201407 I bought my iphone 4 in the UK and I am trying to use a sim in the UAE and it doesn't work.  It says that the sim is not valid, how can I get this unlocked?

    I bought my iphone 4 in the UK and I am trying to use a sim in the UAE and it doesn't work.  It says that the sim is not valid, how can I get this unlocked?

    You are saying the phone is locked, but then you are saying there is no provider. The two situations cannot peacefully coexist. Contact Apple and they can tell you if the phone is locked and if locked to which provider the phone is locked. People on this board are not Apple employees and cannot get you that information.

  • Exception: "The type "Collection" as used in the variable/parameter declarations

    I am getting the following exception when I try to run the test code.
    What could be causing it ?
    I am running Kodo 2.4.3 with JDK 1.4.1
    EXCEPTION
    javax.jdo.JDOFatalInternalException: [agencyNames:[AGENCY1, AGENCY2]]
    NestedThrowables:
    javax.jdo.JDOUserException: The type "Collection" as used in the
    variable/parameter declarations could not be found in the imports.
    TEST CODE
    JDOFactory jdoFactory = new JDOFactory();
    PersistenceManager pm = jdoFactory.getPersistenceManager("");
    try
    Class agencyClass = Agency.class;
    Extent agencyExtent = pm.getExtent(agencyClass, false);
    String filter = "agencyNames.contains(agencyName)";
    List agencyNames = Arrays.asList(new String[]{"AGENCY1",
    "AGENCY2"});
    String param = "Collection agencyNames";
    Query q = pm.newQuery(agencyExtent, filter);
    q.declareParameters(param);
    Collection deps = (Collection) q.execute(agencyNames);
    System.out.println("SIZE :" + deps.size());
    catch (Exception ex)
    ex.printStackTrace();
    JDO Mapping and Class
    package test;
    import java.util.*;
    public class Agency
    private String agencyName;
    private String hostCarrierCode;
    //Getter and Setter
    public static class Id
    public String agencyName;
    public String hostCarrierCode;
    //Application ID definition
    ?xml version="1.0"?>
    <jdo>
    <package name="test">
    <class name="Agency" identity-type="application"
    objectid-class="Agency$Id">
    <extension vendor-name="kodo" key="table" value="AGENCIES"/>
    <extension vendor-name="kodo" key="lock-column" value="none"/>
    <extension vendor-name="kodo" key="class-column" value="none"/>
    <field name="agencyName" primary-key="true">
    <extension vendor-name="kodo" key="data-column"
    value="AGENCY_NAME"/>
    </field>
    <field name="hostCarrierCode" primary-key="true" >
    <extension vendor-name="kodo" key="data-column"
    value="CARRIER_CODE"/>
    </field>
    </class>
    </package>
    </jdo>

    Kodo 2.4.3 does not support using collections as parameters.
    Kodo 2.5.0, due to be released shortly, does support this. See
    http://solarmetric.com/Software/beta/2.5.0 to get the latest release
    candidate.
    -Patrick
    On Thu, 05 Jun 2003 22:26:36 +0000, B K Adarsh wrote:
    I am getting the following exception when I try to run the test code.
    What could be causing it ?
    I am running Kodo 2.4.3 with JDK 1.4.1
    EXCEPTION
    javax.jdo.JDOFatalInternalException: [agencyNames:[AGENCY1, AGENCY2]]
    NestedThrowables:
    javax.jdo.JDOUserException: The type "Collection" as used in the
    variable/parameter declarations could not be found in the imports.
    TEST CODE
    JDOFactory jdoFactory = new JDOFactory();
    PersistenceManager pm = jdoFactory.getPersistenceManager("");
    try
    Class agencyClass = Agency.class;
    Extent agencyExtent = pm.getExtent(agencyClass, false);
    String filter = "agencyNames.contains(agencyName)";
    List agencyNames = Arrays.asList(new String[]{"AGENCY1",
    "AGENCY2"});
    String param = "Collection agencyNames";
    Query q = pm.newQuery(agencyExtent, filter);
    q.declareParameters(param);
    Collection deps = (Collection) q.execute(agencyNames);
    System.out.println("SIZE :" + deps.size());
    catch (Exception ex)
    ex.printStackTrace();
    JDO Mapping and Class
    package test;
    import java.util.*;
    public class Agency
    private String agencyName;
    private String hostCarrierCode;
    //Getter and Setter
    public static class Id
    public String agencyName;
    public String hostCarrierCode;
    //Application ID definition
    ?xml version="1.0"?>
    <jdo>
    <package name="test">
    <class name="Agency" identity-type="application"
    objectid-class="Agency$Id">
    <extension vendor-name="kodo" key="table" value="AGENCIES"/>
    <extension vendor-name="kodo" key="lock-column" value="none"/>
    <extension vendor-name="kodo" key="class-column" value="none"/>
    <field name="agencyName" primary-key="true">
    <extension vendor-name="kodo" key="data-column"
    value="AGENCY_NAME"/>
    </field>
    <field name="hostCarrierCode" primary-key="true" >
    <extension vendor-name="kodo" key="data-column"
    value="CARRIER_CODE"/>
    </field>
    </class>
    </package>
    </jdo>--
    Patrick Linskey
    SolarMetric Inc.

  • After downloading new version of Firefox 4 I am unable to use touch pad for scrolling. I have tried installing and uninstalling the new version but this problem has always been occuring.

    after downloading new version of Firefox 4 I am unable to use touch pad for scrolling. I have tried installing and uninstalling the new version but this problem has always been occuring. I do not know how to fix this problem so I always return to the old version.

    If you have problems with updating or with the permissions then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the DMG file to the desktop
    * Firefox 5.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Trash the current Firefox application to do a clean (re-)install
    * Install the new version that you have downloaded
    Your profile data is stored elsewhere in the Firefox Profile Folder, so you won't lose your bookmarks and other personal data.
    * http://kb.mozillazine.org/Profile_folder_-_Firefox

  • I have assisive touch so I cannot use power button on top but my phone wont turn on I tried plugging it in  and pressing the home button but nothing is working?

    I have assisive touch so I cannot use power button on top but my phone wont turn on I tried plugging it in  and pressing the home button but nothing is working?
    please help

    - Connect to computer and it it shows in iTune restore via iTunes
    - Then try letting the battery fully drain. After charging for an hour try the reset (both buttons) and connecting to computer and restore.

  • I was wondering if there's a way to connect to my work server from my home iMac i7. I can't seem to get Share Screen to work. I have tried connecting to server using the vnc but doesn't work.

    I was wondering if there's a way to connect to my work server from my home iMac i7. I can't seem to get Share Screen to work. I have tried connecting to server using the vnc but doesn't work.

    The easiest way would be to use Back to My Mac, but that will only work if the server is a Mac running OS X 10.7 or later and you have the cooperation of the network administrator.
    OS X: Using and troubleshooting Back to My Mac with your iCloud account

  • I just renewed my subscription (today, at 24:30 am), but so far I could not use the program (4:37 pm are). I tried to call in the support numbers, but no one answers. When I try to re-download the program, nothing happens.

    I just renewed my subscription (today, at 24:30 am), but so far I could not use the program (4:37 pm are). I tried to call in the support numbers, but no one answers. When I try to re-download the program, nothing happens.

    Hmmm, odd. Take a look at the "correct answer on at this link: Re: "Renew your Subscription" This Adobe help link too: Sign in, activation, or connection errors | CS5.5 and later
    If that doesn't help you will need to contact Adobe directly: Contact Customer Care 1 (800) 833-6687
    Benjamin

  • Whilst using my laptop it powered off unexpectedly and won't come back on. Ive tried connecting it to the powere adaptor but it's not charging Nd is still off. Battery was fully charged before it went off

    Whilst using my laptop it powered off unexpectedly and won't come back on. Ive tried connecting it to the powere adaptor but it's not charging Nd is still off. Battery was fully charged before it went off. Please what can I do?

    Try resetting the  SMC http://support.apple.com/kb/ht3964
    Try resetting NVRAM/PRAM http://support.apple.com/kb/ht1379

  • Hone turned off . i tried several times to turn it on but i doesnt work even by using the power and the home button. what should i do ?

    ive got the iphone 5s 4 weeks ago.today the screen turned blue and the phone turned off . i tried several times to turn it on but i doesnt work even by using the power and the home button. what should i do ?

    Hi vanessato,
    Thanks for visiting Apple Support Communities.
    I recommend these troubleshooting steps if your iPhone does not turn on.
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIs and corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 30 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    Best,
    Jeremy

  • My apple is not activating,Asking for Apple ID &p.word, I have entered the apple ID which i was using to download all apps,but it wont work, Now system is saying that your apple Id is wrong, My question is Can there be two apple IDs?

    My apple is not activating,Asking for Apple ID &p.word, I have entered the apple ID which i was using to download all apps,but it wont work, Now system is saying that your apple Id is wrong, My question is Can there be two apple IDs? My apple ID is my Yahoo mail it self, but not able to log in to  Icloud, Can any body guide, Why, I can not.

    Hi dip_kinu,
    I apologize, I'm a bit unclear on exactly what device you are trying to set up and what is happening when you try to do so. If you are having issues remembering your Apple ID, or feel like you may have set up multiple Apple ID's, you may find the following page helpful:
    Apple - My Apple ID: Find your Apple ID
    https://iforgot.apple.com/appleid
    Regards,
    - Brenden

  • [svn] 3519: Fix typo in error string for situations where there are advanced messaging configuration settings from LCDS used in the configuration files but no AdvancedMessagingSupport service .

    Revision: 3519
    Author: [email protected]
    Date: 2008-10-08 04:17:40 -0700 (Wed, 08 Oct 2008)
    Log Message:
    Fix typo in error string for situations where there are advanced messaging configuration settings from LCDS used in the configuration files but no AdvancedMessagingSupport service. The error string said that there was no flex.messaging.services.AdvancedMessagingService registered but it is the flex.messaging.services.AdvancedMessagingSupport service that needs to be registered.
    Add configuration test that starts the server with a destination that has the reliable property set which is an advanced messaging feature but there is no AdvancedMessagingSupport service registered.
    Modified Paths:
    blazeds/trunk/modules/common/src/flex/messaging/errors.properties
    Added Paths:
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/ReliableDestina tionWithNoAdvancedMessagingSupport/
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/ReliableDestina tionWithNoAdvancedMessagingSupport/error.txt
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/ReliableDestina tionWithNoAdvancedMessagingSupport/services-config.xml

    Hi,
    Unfortunately I already tried all kinds of re-installs (the full list is in my original message). The only one remaining is the reinstall of Windows 8 itself, which I would really like to avoid.
    What I find really strange is the time it takes for the above error message to appear. It's like one hour or even more (never measured exactly, I left the computer running).
    What kind of a timeout is that? I would expect that, if ports are really used by some other application, I get the message in less than a minute (seconds, actually). To me this looks like the emulator itself for some reason believes there's a problem with
    some port while in reality there isn't.
    I'll eventually contact Microsoft Support, thanks for the suggestion.

Maybe you are looking for

  • Can't access IPhoto after upgrade to Yosemite

    I just upgraded from Snow Leopard to Yosemite and can't access iPhoto.  I've tried to install the upgrade, but it just sits there saying Installing, but nothing is working.  Tried the IPhoto Upgrader without success.  It says that it was not necessar

  • What happened to the history selection in Bookmarks?

    Updated OS yesterday and history no longer exists.  Bookmarks bar is the first listing,

  • Macbook Pro C2D Generation upgrade

    Hmm what happen to the very very sad topic? emm.. maybe I used wrong topic subject?? I Apologize... anyway, The bigges sadness for me is the reality of new generation MBP's price. Same price for much more power & space, released less then 6 months of

  • Json file in message box

    Hi Is there a way i can read my json file stored in my folder in the message box i have tried the with the code below but keeps getting error //Message box code List<string> strings = new List<string>() {    "Friday 16Th 6PM", "Sunday 18TH 10AM & 7PM

  • Crystal 2011 Crashes when trying to retrieve a report from BW

    I am working with Crystal 2011 v1.  Both the SAP GUI and Business Explorer tools are installed on this workstation. There are some Crystal Reports on BW that the client wants to extract.  From Crystal Designer I click on the SAP menu item and select