Queryeditor using fields more than once in where clause not possible?

I have to create a select query with a WHERE clause using a field multiple times.
I can't get this to work. For example:
SELECT ALL
  EMSDTALIB.EMSPPA.PAIDNR,
  EMSDTALIB.EMSPPA.PANAAM,
  EMSDTALIB.EMSPPA.PAVLTR,
  EMSDTALIB.EMSPPA.PATITL,
  EMSDTALIB.EMSPPA.PAADRS,
  EMSDTALIB.EMSPPA.PAHSNR,
  EMSDTALIB.EMSPPA.PAHSNT,
  EMSDTALIB.EMSPPA.PAPCA1
FROM EMSDTALIB.EMSPPA
WHERE EMSDTALIB.EMSPPA.PABEDR=1 AND EMSDTALIB.EMSPPA.PADTUD=0 AND
  (EMSDTALIB.EMSPPA.PADVBD='001' OR EMSDTALIB.EMSPPA.PADVBD='003' OR EMSDTALIB.EMSPPA.PADVBD='006')How do I get this to work?
Regards,
Roland

Hi Roland, Luca, ICON_SS,
I just tried similar queries using the latest release bits and it works fine.
My Queries that worked fine are :
SELECT ALL DASUSR1.PERSON.PERSONID, DASUSR1.PERSON.NAME, DASUSR1.PERSON.JOBTITLE, DASUSR1.PERSON.FREQUENTFLYER
FROM DASUSR1.PERSON
WHERE ( DASUSR1.PERSON.NAME='Able, Tony' OR NAME='Black, John' )
SELECT ALL DASUSR1.PERSON.PERSONID, DASUSR1.PERSON.NAME, DASUSR1.PERSON.JOBTITLE, DASUSR1.PERSON.FREQUENTFLYER
FROM DASUSR1.PERSON
WHERE ( DASUSR1.PERSON.PERSONID=1 OR PERSONID=2 OR PERSONID=3)
I would suggest you to Download & Install latest Creator bits released 9/27/2004, if not already done.
Appreciate your valuable feedback,
Sakthi

Similar Messages

  • CRS Install hostname being used by more than once for the same node.

    Hi, we're installing The Oracle Clusterware and on the Cluster Configuration screen of the universal Installer (the one were you specify the clustername and clusternodes) we get the following error message in a dialog box when the next button is clicked:
    "You must enter unique values for the public node name, the private node name and the virtual hostname for all nodes in the cluster. The name, node1, that you entered is being used by more than once for the same node."
    Has anyone experienced this error message before and know what the cause is?
    Could it be a problem with the /etc/hosts file?
    Thanks in advance,
    M

    Make sure you allocate separate IP addresses on your network for the VIP addresses on each RAC node (this is not the same as the machine IP already configured on the OS).
    Also, the installer may complain if your private and public IPs are configured under the same subnet.
    Finally, as mentioned before, check that name resolution for all the IPs to be used. On all RAC nodes, your /etc/hosts file should be configured with:
    - public name and IP addresses of ALL nodes
    - private name and IP addresses of ALL nodes
    - VIP name and IP addresses of ALL nodes
    Hope that helps
    B.

  • How to use an available field more than once  to define an unique field?

    At the table level in the console you can indicate various combinations of fields that must be unique either individually or in combination. However, you can assign an available field only once,  individually or in combination. For our data model it is a functional requirement that any available field can be used in more than one combination to define an unique combination.
    Example separate unique combinations:
    •       combination of:  postal code + house number
    •       combination of:  city + street + house number
    We use "house number" twice.
    Is it possible to do this in MDM and how?
    Thanks in advance for your answer,
    Heleen

    Hi Heleen,
      If you want to use Source field twice then you an option called <b>Clone Field</b> in MDM Import Manager.
    Follow these steps:
    Step1. In Import manager select the source table.
    Step2. Right click on the required field and Select <i>Clone Field</i>  house number in your case.
    Please revert if any queries.
    Thanks and regards,
    <b>Sagar Sonje.
    Mark Helpful Answers</b>

  • Map a field more than once in import manager

    Hi experts,
    is it possible to map a source field to more than one destination fields in import manager? E.g. I have a source field "client" and I have to map it to a destination field "client" and also to a combined lookup field which consists of a field "client" and "systemname".
    Thanks for your answers. Regards, bd

    Hi,
    Yes you can achieve this , During Import Manager when mapping source field to target field in Map Field/Values tab, just above this on left hand side you can see Source Hierarchy in MDM Import Manger, Right click on field which you want to map more  than one Destination field, here you get Clone Field option which make clone field , so you can map this clone field to other second destination field which will serve your purpose.
    Hope it will Help you,
    Rewards if Useful.....
    Mandeep Saini

  • Using newText more than once in a form

    I have a form with several hidden subforms, which become visible depending on what the user selects in the dropdown list for each subform. The problem is that my script doesn't work for all the subforms. I've come across some information about this (copied below), and I've included my event scripts for the three subforms. I've tried using a var, like this: "var newValue = this.boundItem(xfa.event.newText);", but that doesn't solve the problem. I've also tried both "switch...case" and "if...else." Neither one provides the answer. Thank you for any suggestions you might have or for pointing me toward a source of relevant information.
    ***********************From the Forum
    http://forums.adobe.com/message/1358815#1358815
    The xfa.event.newText will have the value of the selected dropdown will focus is still on the dropdown. The rawValue property will not be populated until you leave the dropdown. So depending on when you want the value will determine which property to use. Note that the xfa.event.newText will return the value and not the text of the dropdown (assuming you have both set).
    The xfa.event.newText will give you what was entered into a field while it still has focus. In a DD List the selected values are returned. In a textField you would get the chars that are typed into the field. Once focus leaves the field the event.newText is cleared and it is ready for the next field to populate it.
    http://forums.adobe.com/thread/694464?tstart=0
    Also you only get one shot at xfa.event.newText .....if you are using it earlier in the script it will be gone the second time you use it. So put it in a variable right away, then you can reuse the variable.
    **********************From my form
    form1.injurySubformPage1.workLocationDdl::change - (JavaScript, client)
    sedgwickSubform.presence = "hidden";
    benefitsSubform.presence = "hidden";
    custServSubform.presence = "hidden";
    var newValue = this.boundItem(xfa.event.newText);
    switch (newValue){
        case "assoc":
              sedgwickSubform.presence = "visible";
                break;
        case "benefits":
                benefitsSubform.presence = "visible";
                    break;
        case "custserv":
                custServSubform.presence = "visible";
                    break;
    next dropdown
    assocInfoSubform.presence = "hidden";
    custInfoSubform.presence = "hidden";
    switch (newValue){
        case "associate":
              sedgwickSubform.presence = "visible";
                break;
        case "customer":
                benefitsSubform.presence = "visible";
                    break;      
    last dropdown
    form1.injurySubformPage2.seekingMedicalTreatmentDdl::change - (JavaScript, client)
    physicianSubform.presence = "hidden";
    switch (newValue){
        case "yes":
              physicianSubform.presence = "visible";
                break;
        case "no":
                physicianSubform.presence = "hidden";
                    break;   

    What is the javascript message? alert('message') isn't right. Below are the scripts for each dropdown list now, after I made some changes. I also made another test form with three dropdowns and their respective subforms on one page. They all work normally, with select...case statements, like the ones below.
    *********************dropdown #1
    form1.injurySubformPage1.workLocationDdl::change - (JavaScript, client)
    sedgwickSubform.presence = "hidden";
    benefitsSubform.presence = "hidden";
    custServSubform.presence = "hidden";
    var newValue = this.boundItem(xfa.event.newText);
    switch (newValue){
        case "assoc":
              sedgwickSubform.presence = "visible";
                break;
        case "benefits":
                benefitsSubform.presence = "visible";
                    break;
        case "custserv":
                custServSubform.presence = "visible";
                    break;
    ***************** dropdown #2
    form1.injurySubformPage1.typeOfIncidentDdl::change - (JavaScript, client)
    assocInfoSubform.presence = "hidden";
    custInfoSubform.presence = "hidden";wn #3
    var newValue = this.boundItem(xfa.event.newText);
    if (xfa.event.newText == "associate"){
              assocInfoSubform.presence = "visible";
    } else {
              custInfoSubform.presence = "visible";
    ************************dropdown#3
    form1.injurySubformPage2.seekingMedicalTreatmentDdl::change - (JavaScript, client)
    physicianSubform.presence = "hidden";
    var newValue = this.boundItem(xfa.event.newText);
    switch(newValue) {
        case "yes":
            physicianSubform.presence = "visible";
        break;
        case "no":
            physicianSubform.presence = "hidden";
        break;

  • How to display the same field more than once in  report with diff. filters

    Hello,
    I have an RTF template I built out. There is a 1:M relationship of an opportunity:deal point.
    I want the user to be able to pass the opportunity and then see a report including all the deal points.
    The report looks something like this:
    Date: DP100
    Terms: DP200
    Duration: DP300
    and so on. to simplify things, the date will always be DP100, terms will lways be DP200, etc.
    Where do I set these filters? When using the query builder on the BI Publisher server i don't see anywhere to filter.

    Here is a copied piece of the RTF template illustrating what I'm trying to do in the word template builder.
    Tenant (Signing Entity): <Deal_Point_Value where Deal_point_name = 'DP231'>
    Tradename (D/B/A): <Deal_Point_Value where Deal_point_name = 'DP240'>
    State of Incorporation: <Deal_Point_Value where Deal_point_name = 'DP1330'>
    Landlord: <Deal_Point_Value where Deal_point_name = 'DP1560'>
    Premises: <Deal_Point_Value where Deal_point_name = 'DP144>
    Storage Space: <Deal_Point_Value where Deal_point_name = 'DP235'>
    Off Premises Equipment: <Deal_Point_Value where Deal_point_name = 'DP386'>
    Term: <Deal_Point_Value where Deal_point_name = 'DP940'>
    Options: <Deal_Point_Value where Deal_point_name = 'DP1200'>
    Rent Commencement: <Deal_Point_Value where Deal_point_name = '1136'>
    Estimated Delivery Date: <Deal_Point_Value where Deal_point_name = 'DP123'>

  • Transforming XML using XSLT more than once

    Hi,
    I am trying to transform an XML Document object in Java. However, it requires 2 transforms as each of them is complicated and needs to be generic enough for use by different XML strings. So I have a single XML string and two XSLT files.
    Currently, I am using the Java transformer to perform both the transforms one after another. However, I was wondering if there is a function within XSLT or Java that would allow performing the second transform on the result of the first transform without having to resort to multiple calls from within Java.
    Thanks a lot.
    Jay Badiyani

    http://xml.apache.org/xalan-j/samples.html#usexmlfilters

  • Can't use BoxLayout more than once in a class?

    I have a JPanel inside of a JPanel. I am using a BoxLayout
    manager on the main JPanel, and I used to use a GridLayout on the
    sub JPanel. Yesterday I changed the Layout Manager of the subPanel
    to BoxLayout, and now I get this strange error at runtime. Why can't I use
    2 Box Layouts? Why is Java trying to share them?
    Exception in thread "main" java.awt.AWTError: BoxLayout can't be shared
            at javax.swing.BoxLayout.checkContainer(BoxLayout.java:408)
            at javax.swing.BoxLayout.invalidateLayout(BoxLayout.java:195)
            at java.awt.Container.invalidate(Container.java:851)
            at java.awt.Component.addNotify(Component.java:5398)
            at java.awt.Container.addNotify(Container.java:1852)
            at javax.swing.JComponent.addNotify(JComponent.java:4270)
            at java.awt.Container.addNotify(Container.java:1859)
            at javax.swing.JComponent.addNotify(JComponent.java:4270)
            at java.awt.Container.addNotify(Container.java:1859)
            at javax.swing.JComponent.addNotify(JComponent.java:4270)
            at java.awt.Container.addNotify(Container.java:1859)
            at javax.swing.JComponent.addNotify(JComponent.java:4270)
            at java.awt.Container.addNotify(Container.java:1859)
            at javax.swing.JComponent.addNotify(JComponent.java:4270)
            at java.awt.Container.addNotify(Container.java:1859)
            at javax.swing.JComponent.addNotify(JComponent.java:4270)
            at java.awt.Container.addNotify(Container.java:1859)
            at javax.swing.JComponent.addNotify(JComponent.java:4270)
            at javax.swing.JRootPane.addNotify(JRootPane.java:658)
            at java.awt.Container.addNotify(Container.java:1859)
            at java.awt.Window.addNotify(Window.java:395)
            at java.awt.Frame.addNotify(Frame.java:479)
            at java.awt.Window.pack(Window.java:413)
            at CDBTest.main(CDBTest.java:246)I need help.
    Thanks
    Josh

    hmm, the following's my code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class PreferencesPane extends JPanel {
    //Main pane to be added to the class
    private JTabbedPane mainPane;
    //the options pane
    private JPanel optionsPane;
    //the accounts list
    private JPanel accountsPane;
    //the personal information display
    private JPanel perInfoPane1;
    private JPanel perInfoPane2;
    //labels
    private JLabel usernameLabel;
    private JLabel newPassLabel;
    private JLabel confPassLabel;
    private JPanel separatorLabel;
    private JLabel nameLabel;
    private JLabel emailLabel;
    private JLabel titleLabel;
    private JLabel companyLabel;
    private JLabel homePhoneLabel;
    private JLabel workPhoneLabel;
    private JLabel cellPhoneLabel;
    private JLabel faxLabel;
    private JLabel homeAddLabel;
    private JLabel workAddLabel;
    private JLabel notesLabel;
    //Textfields
    private JTextField usernameField;
    private JPasswordField newPassField;
    private JPasswordField confPassField;
    private JPanel separatorField;
    private JTextField nameField;
    private JTextField emailField;
    private JTextField titleField;
    private JTextField companyField;
    private JTextField homePhoneField;
    private JTextField workPhoneField;
    private JTextField cellPhoneField;
    private JTextField faxField;
    private JTextArea homeAddField;
    private JTextArea workAddField;
    private JTextArea notesField;
    //Save information button
    private JButton saveInfoButton;
    private JPanel perInfoPane;
    public PreferencesPane() {
    optionsPane = new JPanel();
    accountsPane = new JPanel();
    //labels
    usernameLabel = new JLabel("Username:");
    newPassLabel = new JLabel("New Password:");
    confPassLabel = new JLabel("Confirm New Password:");
    separatorLabel = new JPanel();
    nameLabel = new JLabel("Name:");
    emailLabel = new JLabel("Email:");
    titleLabel = new JLabel("Title:");
    companyLabel = new JLabel("Company:");
    homePhoneLabel = new JLabel("Home Phone:");
    workPhoneLabel = new JLabel("Work Phone:");
    cellPhoneLabel = new JLabel("Cell Phone:");
    faxLabel = new JLabel("Fax:");
    homeAddLabel = new JLabel("Home Address:");
    workAddLabel = new JLabel("Work Address:");
    notesLabel = new JLabel("Notes:");
    //Textfields
    usernameField = new JTextField(20);
    newPassField = new JPasswordField(20);
    confPassField = new JPasswordField(20);
    separatorField = new JPanel();
    nameField = new JTextField(20);
    emailField = new JTextField(20);
    titleField = new JTextField(20);
    companyField = new JTextField(20);
    homePhoneField = new JTextField(20);
    workPhoneField = new JTextField(20);
    cellPhoneField = new JTextField(20);
    faxField = new JTextField(20);
    homeAddField = new JTextArea(10,20);
    workAddField = new JTextArea(10,20);
    notesField = new JTextArea(10,20);
    //Panel to contain the textfield and labels
    perInfoPane1 = new JPanel(new GridLayout(12,2));
    perInfoPane1.add(usernameLabel);
    perInfoPane1.add(usernameField);
    perInfoPane1.add(newPassLabel);
    perInfoPane1.add(newPassField);
    perInfoPane1.add(confPassLabel);
    perInfoPane1.add(confPassField);
    perInfoPane1.add(separatorLabel);
    perInfoPane1.add(separatorField);
    perInfoPane1.add(nameLabel);
    perInfoPane1.add(nameField);
    perInfoPane1.add(emailLabel);
    perInfoPane1.add(emailField);
    perInfoPane1.add(titleLabel);
    perInfoPane1.add(titleField);
    perInfoPane1.add(companyLabel);
    perInfoPane1.add(companyField);
    perInfoPane1.add(homePhoneLabel);
    perInfoPane1.add(homePhoneField);
    perInfoPane1.add(workPhoneLabel);
    perInfoPane1.add(workPhoneField);
    perInfoPane1.add(cellPhoneLabel);
    perInfoPane1.add(cellPhoneField);
    perInfoPane1.add(faxLabel);
    perInfoPane1.add(faxField);
    perInfoPane2 = new JPanel(new GridLayout(3,2));
    perInfoPane2.add(homeAddLabel);
    perInfoPane2.add(homeAddField);
    perInfoPane2.add(workAddLabel);
    perInfoPane2.add(workAddField);
    perInfoPane2.add(notesLabel);
    perInfoPane2.add(notesField);
    //save button
    saveInfoButton = new JButton("Save information");
    perInfoPane = new JPanel(new BoxLayout(perInfoPane,BoxLayout.Y_AXIS));
    perInfoPane1.setAlignmentX(Component.LEFT_ALIGNMENT);
    perInfoPane2.setAlignmentX(Component.LEFT_ALIGNMENT);
    saveInfoButton.setAlignmentX(Component.LEFT_ALIGNMENT);
    perInfoPane.add(perInfoPane1);
    perInfoPane.add(perInfoPane2);
    perInfoPane.add(saveInfoButton);
    //adds components to the TabbedPane
    mainPane = new JTabbedPane(JTabbedPane.LEFT);
    mainPane.add("Options",optionsPane);
    mainPane.add("Accounts",accountsPane);
    mainPane.add("Personal Information",perInfoPane);
    setLayout(new BorderLayout());
    add(mainPane,BorderLayout.CENTER);
    As you can see, the only time I use BoxLayout is the following line:
    perInfoPane = new JPanel(new BoxLayout(perInfoPane,BoxLayout.Y_AXIS));
    As far as I can tell, that's correct, but I'm still getting this at runtime:
    Exception in thread "main" java.awt.AWTError: BoxLayout can't be shared
    Anyone have any ideas?

  • Use of same filed more than once in module pool program.

    hi Good day,
    i want to use a filed on the screen more than once.
    ex : T7EHS00_EXA_PHY-UNIT
    the reason why i want to use this field more than once is b'coz it has SEARCH HELP.
    If i use this filed search help is created internally.
    to be more specific :
    i have
    screen field    screen field
    xys                unit of meas.
    abc                unit of meas.
    def                 unit of meas
    ghi                 unit of meas.
    jkl                  unit of meas.
    but SAP Does not accept the same field more than once.
    in this case what can i do?
    thank you,
    J.

    Hi Jacob,
    use like this....
    data : i1 type T7EHS00_EXA_PHY-UNIT ,
            i2 type T7EHS00_EXA_PHY-UNIT,
            i3 type T7EHS00_EXA_PHY-UNIT,
            i4 type T7EHS00_EXA_PHY-UNIT.
    In the screen properties,
    Give search Help-----> H_T006
    Declare the name in program as given to IO filed name...
    Hope you Understood...
    Regards,
    Vijay SR

  • Importing an email more than once from notes into the webclient...Possible?

    Hi!
    Is it possible to import an email more than once from a lotus notes account into my webclient?
    I don't have a working sample so:
    Is there a lock to prevent it... in notes... in my webclient?
    Are there optical signs in my webclient that an email is already imported?
    Thanks in advance for your hints in this case.
    Cheers, Ingo

    The Member Feedback forum is for suggestions and feedback for OTN Developer Services. This forum is not monitored by Oracle support or product teams and so Oracle product and technology related questions will not be answered. We recommend that you post this thread to the appropriate Database forum.
    The main URL is:
    http://forums.oracle.com/forums/index.jsp?cat=18

  • Hello. My iPhone 4s when recieving message plays the tone more than once. How to stop that?

    It plays the tone more than once and it's not playing the tone fully. It plays like it is "stuck". Like CDs play when they are scratched. How can I stop that?

    Pause and off are the same thing.   This is how you stop the music.
    iPhone User Guide (For iOS 5.0 Software)

  • LSMW error: Field name '' used more than once in file"

    Hi,
    I am doing a sample vendor master load with LSMW but while reading data I am getting an error
    "Field name '' used more than once in file
    'C:\Users\sdurgia\Desktop\LSMW\MM\vendor_master_te
    s'."
    Not getting proper reason.Can you please guide?
    Urgent please help.
    BR
    Sumeet

    Hi,
    FYI.
    LIFNR
    BUKRS
    EKORG
    KTOKK
    NAME1
    NAME2
    SORT1
    SORT2
    STREET
    HOUSE_NUM1
    STR_SUPPL1
    STR_SUPPL2
    CITY2
    CITY1
    REGION
    POST_CODE1
    LAND1
    TAXJURCODE
    PFACH
    PSTL2
    REMARK
    TEL_NUMBER
    TEL_EXTENS
    MOB_NUMBER
    FAX_NUMBER
    FAX_EXTENS
    SMTP_ADDR
    DEFLT_COMM
    KUNNR
    VBUND
    KONZS
    BEGRU
    STCD1
    STCD2
    STCD3
    STCD4
    SCACD
    SFRGR
    DLGRP
    BANKS
    BANKL
    BANKN
    KOINH
    BKONT
    LNRZA
    XZEMP
    AKONT
    ZUAWA
    FDGRV
    BEGRU1
    QSSKZ
    QSZNR
    QSZDT
    ALKTN
    ZTERM
    TOGRU
    REPRF
    KULTG
    ZWELS
    ZAHLS
    LNRZB
    HBKID
    TOGRR
    EIKTO
    WAERS
    ZTERM1
    INCO1
    INCO2
    EIKTO1
    WEBRE
    XERSY
    XERSR
    VSBED
    NAMEK
    J_1IPANO
    QLAND
    LFBW-QSREC
    XVERR
    FYTYP
    STCDT
    BKREF
    4000048674
    2550
    M004
    DHL EXPRESS (USA) INC
    PAY
    4000069273
    PO BOX 4723
    HOUSTON
    TX
    US
    77210-4723
    CONTAC: IRMA MURILLO
    800-225-5345
    281-874-0678
    [email protected]
    94-3380425
    US
    11000536
    999999
    ACCOUNT HOLDER
    221300
    1
    AP VEND
    Z011
    X
    T
    B
    USD
    Z011

  • Use Topic in TOC more than once...

    We have just purchased RoboHelp 6 for our Help System
    generation as well as to begin developing online training courses.
    I have a WebHelp File that contains 5 books - one book per
    procedure. I have a topic that is applicable to two procedures.
    Without having to make a copy of the topic, is it possible to set
    up the TOC to use the topic in question more than once?
    The problem arises when I am setting up the Browse Sequence.
    I tried to set up the Browse Sequence using the Auto-create using
    TOC...option, but the sequence appears to be in alphabetically
    order. In fact, it is in no way, shape or form even close to the
    TOC (as indicated in the Help - Topics in each browse sequence will
    be in the same order as in the TOC)!!!
    So, I tried to manually create the browse sequence. I used a
    browse sequence to contain all topics, then I set up another browse
    sequence to contain the duplicate topic. When I use the navigation
    arrows to move through the toc, it will not advance to the second
    browse sequnce.
    Any ideas or suggestions would be greatly appreciated. Thanks
    in advance.
    Lisa

    Hi LNT1
    The trick to all this is to never directly link from the TOC
    to the desired topic. Let's assume the TOC should have a topic
    appearing in two different places. In order to make this work, you
    link from two different redirect pages.
    Now if you generate WebHelp, I see where there could be an
    issue, because the browse sequence can only link from one topic to
    another. In other words, a topic can only have a single link to and
    a single link from it. So in this case, the redirect trick would
    fail. However, another trick comes to mind that may work. Instead
    of a Redirect page, you could have two different pages that instead
    of redirecting, contained an Inline Frame (IFRAME) that simply
    displayed the contents of the desired page. Basically, the pages
    containing the IFRAME would link properly and provide the desired
    effect.
    For more on IFRAMEs, download my Tips and Tricks file and
    scan it for how to create IFRAMES.
    Cheers... Rick

  • Use mouse click trigger option more than once?

    Hi, is there some way to use the "mouse click" trigger option more than once in the project? I am trying to build a menu button animate where the users click the (menu grid icon) once, and it transforms into the (x icon) and stays there until they click it again ONCE to change it back to the (menu grid icon). Other trigger actions aren't ideal, and I find that if I used the "double mouse click", the response gets a bit messy as clicking once would replay the whole sequence again. Thanks!

    At CreationComplete make a var as:
    button = -1;
    At click event of the button write:
    if (button == -1){
    sym.getSymbol("nmnmnmn").play("xicon");   // if you have a trigger in timeline to make this action that you want
    button++;
    else {
    sym.getSymbol("nmnmnmn").play("returnedicon");
    button = -1;
    Somehow like the above you'll have to do it.
    Or else you can use boolean , TRUE/FALSE

  • I have my catalog "Back Up Each Time Lightroom Exits" checked, and always have. That means the catalog should have been backed-up and saved everyday, if not more than once on some dates. So with a a major problem now and needing to use the Catalog backup

    I have my catalog "Back Up Each Time Lightroom Exits" checked, and always have. That means the catalog should have been backed-up and saved everyday, if not more than once on some dates. So with a a major problem now and needing to use the Catalog backup from last Friday, I go to my Lightroom Backups folder - and the most recent one showing not only isn't yesterday, it's OCTOBER 28 !?? Where the hell are the daily backups between October 28 and November 14?

    Oh wow - JET LAG strikes agin - my apologies; I have located the missing weeks of back-ups. After getting home from a 30-day trip to Europe, I had changed the location of my LR catalog back-ups to an external drive, and forgot that I did that. I have found them, and all is good. Never operate Heavy Machinery without enough rest. Cheers

Maybe you are looking for

  • Yet another customer with Photoshop CC crashing on opening!

    Hi Photoshop CC keeps closing as soon as it opens on my PC. I have installed, uninstalled and reinstalled over five times since starting my subscription to CC two days ago, to no avail. I have thoroughly cleaned my PC, followed all the advice I can f

  • Keyboard on my Lumia 1520 "running amok" when pres...

    I've got a weird issue on my Nokia Lumia 1520. Ever now and then when I'm chatting on Skype and want to erase a misspelled word, the keyboard goes wild and starts typing randomly letters and symbols. Then I'm forced to close down the app and restart

  • Need information on BPA Aggregator tool

    Can somebody please provide information regarding BPA Aggregator tool? Any docs or links etc. would be helpful. Thanks.

  • Calendar Date Prompt

    I have a report for completed activities within a chosen date range. I can selected Completed date is between and type into the fields. I want to have a pop up calendar appear instead of typing the dates in. How do I do this? Thanks

  • PO and delivery date.

    Hi, what is the field in PO related to delivery date (EEIND) ? I cannot find it in EKPO Thanks in advance Regards