Case mix with Nested ifs statement

Hello I need to mix a case statement with a few nested ifs, but I get an error I do not know how to start or complete the case statement. I've shortened the statement FOR readability

Here is the code:

< tt >

BEGIN

FOR events IN (SELECT EBA_CA_EVENTS. EVENT_NAME, EBA_CA_EVENTS. EVENT_ID,...)

LOOP

If the events. TYPE_ID <>(32230291965131516245569156552736940921) AND to_date (SYSDATE) = ((to_date (to_char (events. ((EVENT_DUE_DATE, "DD-MON-YYYY HH24:MI:SS"), "HH24:MI:SS MON-DD-YYYY"))-events. EVENT_NOT1)

THEN

Dbms_output.put_line ('adjustments of the SEND E-MAIL Alert 1 "criteria);

on the other

If the events. TYPE_ID = (32230291965131516245569156552736940921) and nvl(events.COMPLETED_MAIL_SENT,0) <>room ')

THEN

Dbms_output.put_line ('SEND EMAIL FILLED WITH TERRY');

UPDATE EBA_CA_EVENTS set COMPLETED_MAIL_SENT = piece ') where ROW_KEY = events. ROW_KEY;

on the other

If the events. TYPE_ID <>(32230291965131516245569156552736940921) AND to_date (SYSDATE) = ((to_date (to_char (events. ((EVENT_DUE_DATE, "DD-MON-YYYY HH24:MI:SS"), "HH24:MI:SS MON-DD-YYYY"))-events. EVENT_NOT2)

THEN

Dbms_output.put_line (' fits the criteria 2nd SEND E-MAIL alert 2 "");

on the other

If the events. TYPE_ID <>(32230291965131516245569156552736940921) AND to_date (SYSDATE) = ((to_date (to_char (events. ((EVENT_DUE_DATE, "DD-MON-YYYY HH24:MI:SS"), "HH24:MI:SS MON-DD-YYYY"))-events. EVENT_NOT3)

THEN

Dbms_output.put_line ('fits the 3rd criteria SENDING E-MAIL Alert 3 ");

end if; -4

end if; -3

end if; -2

end if; -1

CASE

Events WHEN. EVENT_NOT2 is null

THEN

If to_date (SYSDATE) > ((to_date (to_char (events. ((EVENT_DUE_DATE, "DD-MON-YYYY HH24:MI:SS"), "HH24:MI:SS MON-DD-YYYY"))-events. EVENT_NOT1) AND nvl (events. ALERT1_SENT, 0) part <>')

THEN

Dbms_output.put_line ('send e-mail if day part 1');

UPDATE EBA_CA_EVENTS set ALERT1_SENT = piece ') where ROW_KEY = events. ROW_KEY;

end if;

END

other cases

Events WHEN. EVENT_NOT2 is NOT NULL

THEN

If to_date (SYSDATE) > ((to_date (to_char (events. ((EVENT_DUE_DATE, "DD-MON-YYYY HH24:MI:SS"), "HH24:MI:SS MON-DD-YYYY"))-events. EVENT_NOT1) AND nvl (events. ALERT1_SENT, 0) part <>') AND to_date (SYSDATE) < ((to_date (to_char (events. ((EVENT_DUE_DATE, "DD-MON-YYYY HH24:MI:SS"), "HH24:MI:SS MON-DD-YYYY"))-events. EVENT_NOT2)

THEN

Dbms_output.put_line ('If day spent game 2 with the value');

UPDATE EBA_CA_EVENTS set ALERT1_SENT = piece ') where ROW_KEY = events. ROW_KEY;

end if;

END

END LOOP;

END

< /tt >

The error occurs towards the end of the case statement-case.PNG

I also tried this the 'else' deletion before the case and a few other variations, I can't just not perfect the code however, any help would be appreciated, thanks

BTW, I can't use IF... Logical I already tried, then once a particular branch occurs then the else statements are ignored.

You had an extra 'END' where he shouldn't have been and were not an 'END' where TI EXPECTED have been.

This is your modified code (I had to fill out the... that my trainer Toad worked properly)

BEGIN

   FOR EVENTS IN (
                  SELECT eba_ca_events.event_name, eba_ca_events.event_id
                    FROM 
                 ) LOOP

      IF(
         EVENTS.type_id <> (32230291965131516245569156552736940921)
         AND
         TO_DATE(SYSDATE) = ((TO_DATE(TO_CHAR(EVENTS.event_due_date, 'YYYY-MON-DD HH24:MI:SS'), 'YYYY-MON-DD HH24:MI:SS') - EVENTS.event_not1))
        ) THEN

         DBMS_OUTPUT.PUT_LINE('Criteria fits SEND EMAIL Alert 1');

      ELSE

         IF(
            EVENTS.type_id = (32230291965131516245569156552736940921)
            AND
            NVL(EVENTS.completed_mail_sent, 0) <> ('S')
           )
             THEN

            DBMS_OUTPUT.PUT_LINE('SEND COMPLETED EMAIL TO TERRY');

            UPDATE eba_ca_events
               SET completed_mail_sent = ('S')
             WHERE row_key = EVENTS.row_key;

         ELSE

            IF(
               EVENTS.type_id <> (32230291965131516245569156552736940921)
                AND
                TO_DATE(SYSDATE) = ((TO_DATE(TO_CHAR(EVENTS.event_due_date, 'YYYY-MON-DD HH24:MI:SS'), 'YYYY-MON-DD HH24:MI:SS')) - EVENTS.event_not2)
              ) THEN

               DBMS_OUTPUT.PUT_LINE('2nd Criteria fits SEND EMAIL Alert 2');

            ELSE

               IF(
                  EVENTS.type_id <> (32230291965131516245569156552736940921)
                  AND
                  TO_DATE(SYSDATE) = ((TO_DATE(TO_CHAR(EVENTS.event_due_date, 'YYYY-MON-DD HH24:MI:SS'), 'YYYY-MON-DD HH24:MI:SS')) - EVENTS.event_not3)
                 ) THEN

                  DBMS_OUTPUT.PUT_LINE('3rd Criteria fits SEND EMAIL Alert 3');

               END IF; -- 4

            END IF; -- 3

         END IF; -- 2

      END IF; -- 1

      CASE

         WHEN EVENTS.event_not2 IS NULL THEN

            IF(
               TO_DATE(SYSDATE) > ((TO_DATE(TO_CHAR(EVENTS.event_due_date, 'YYYY-MON-DD HH24:MI:SS'), 'YYYY-MON-DD HH24:MI:SS')) - EVENTS.event_not1)
               AND
               NVL(EVENTS.alert1_sent, 0) <> ('S')
              ) THEN

               DBMS_OUTPUT.PUT_LINE(' send email if date past part 1');

               UPDATE eba_ca_events
                  SET alert1_sent = ('S')
                WHERE row_key = EVENTS.row_key;

            END IF;

         ELSE

            CASE

               WHEN EVENTS.event_not2 IS NOT NULL THEN

                  IF(
                     TO_DATE(SYSDATE) > ((TO_DATE(TO_CHAR(EVENTS.event_due_date, 'YYYY-MON-DD HH24:MI:SS'), 'YYYY-MON-DD HH24:MI:SS')) - EVENTS.event_not1)
                     AND
                     NVL(EVENTS.alert1_sent, 0) <> ('S')
                     AND
                     TO_DATE(SYSDATE) < ((TO_DATE(TO_CHAR(EVENTS.event_due_date, 'YYYY-MON-DD HH24:MI:SS'), 'YYYY-MON-DD HH24:MI:SS')) - EVENTS.event_not2)
                    ) THEN

                     DBMS_OUTPUT.PUT_LINE('if date past part 2 with value');

                     UPDATE eba_ca_events
                        SET alert1_sent = ('S')
                      WHERE row_key = EVENTS.row_key;

                  END IF;

            END CASE;

      END CASE;

   END LOOP;

END;

I hope this helps.

Tags: Database

Similar Questions

  • [Bug of LabVIEW report] 'Create all the constants' does not create a constant for the controls when mixed with flags

    The shortcut of the comics 'Create all the constants' cannot create a constant to a control when it is mixed with flags:

    Colors of the palette is a table control, the other two are indicators.

    results in:

    With the help of the 'constant to create' (which is something else altogether) works very well with the table control (of course, the constant is not connected to the Terminal in this case).

    Tested in LV 2016 64 bit on Windows 7

    You can change the functionality of the right click plugin by opening the Terminals_core.vi all the wires in the .llb following and by removing the structure of matter on the image below (keep remove it just method the structure around him). He did what you wanted in the original post, but is not very useful when you start to use it on items with multiple terminals (especially multiple output terminals). The code makes it seem quite expected, he travels all terminals it concludes and checks whether it is an input or output terminal. If it's an entry, it creates a constant, if it is an output, it does nothing. The change that I did just creates a constant whether it is an input or output.

    time Board \resource\plugins\PopupMenus\edit and diagram\Wire all Terminals.llb Unwired

  • Help with the insert statement

    Hello

    I was wondering if someone could help write me a sql statement.

    Here is my table:
    CREATE TABLE "TEMP_INVOICE" 
       ("INVOICE" VARCHAR2(100 BYTE),
         "DATE_OF_DOCUMENT" DATE, 
         "DATE_OF_PAY_DAY" DATE, 
         "D" NUMBER, 
         "K" NUMBER
       );
    Here are the instructions for correct insertion. This time, I posted 2 examples with 2 numbers different otherwise.
    insert into temp_invoice (invoice,DATE_OF_DOCUMENT,DATE_OF_PAY_DAY,d,k)  values (1000,to_date('01.02.2012','dd.mm.yyyy'),to_date('01.03.2012','dd.mm.yyyy'),5000,0);
     
    insert into temp_invoice (invoice,DATE_OF_DOCUMENT,DATE_OF_PAY_DAY,d,k)  values (1000,to_date('01.04.2012','dd.mm.yyyy'),'','',1000);
     
    insert into temp_invoice (invoice,DATE_OF_DOCUMENT,DATE_OF_PAY_DAY,d,k)  values (1000,to_date('01.05.2012','dd.mm.yyyy'),'','',3000);
     
    insert into temp_invoice (invoice,DATE_OF_DOCUMENT,DATE_OF_PAY_DAY,d,k)  values (1000,to_date('01.06.2012','dd.mm.yyyy'),'','',1000);
    
    insert into temp_invoice (invoice,DATE_OF_DOCUMENT,DATE_OF_PAY_DAY,d,k)  values (2000,to_date('01.07.2012','dd.mm.yyyy'),to_date('01.09.2012','dd.mm.yyyy'),8000,0);
     
    insert into temp_invoice (invoice,DATE_OF_DOCUMENT,DATE_OF_PAY_DAY,d,k)  values (2000,to_date('01.10.2012','dd.mm.yyyy'),'','',5000);
     
    insert into temp_invoice (invoice,DATE_OF_DOCUMENT,DATE_OF_PAY_DAY,d,k)  values (2000,to_date('01.11.2012','dd.mm.yyyy'),'','',2000);
     
    insert into temp_invoice (invoice,DATE_OF_DOCUMENT,DATE_OF_PAY_DAY,d,k)  values (2000,to_date('01.12.2012','dd.mm.yyyy'),'','',1000);
    I want to do is make an insert allows you to table another call is MADE:
    CREATE TABLE "INVOICE" 
       ("INVOICE" VARCHAR2(100 BYTE),
        "DATE_OF_DOCUMENT" DATE, 
         "DATE_OF_PAY_DAY" DATE,
         "DATE_OF_PAYMENT_REC" DATE,
         "VALUE" NUMBER,
         "VALUE_DEDUCT" NUMBER,
        "DATE_FROM" DATE,     
         "DATE_TO" DATE
         );
    Statements in the INVOICE table should be like this:


    ........ The Bill... date_of_document... date_of_pay_day... date_of_payment_rec... value... value_deduct... Date_from... Date_to
    1......     1000...............1.1.2012.................1.3.2012................NULL............................ 5000... NULL... 1.3.2012...1.4.2012
    2......     1000...............1.4.2012.................NULL..................... 1.4.2012...1000... 4000... 2.4.2012... 1.5.2012
    3......     1000...............1.5.2012.................NULL..................... 1.5.2012...3000... 1000... 2.5.2012... 1.6.2012
    4......     1000...............1.6.2012.................NULL..................... 1.6.2012...1000


    Can someone help me with the sql statement that would insert data from table to table Bill temp_invoice as in the example?

    Thank you!

    PS

    I would try to explain.
    (1) the first statement that is to be inserted is original imply that at which is different DATE_OF_PAY_DAY to NULL.
    To this inserted negative of the original imply, we must add date_from that is exatly the same date_of_pay_day and date_to which is exactly the same as the date of the first payment. Payment which came first!
    (2) we have now in the second insert statement. It will be the first payment of lease with date_of_document and date_pf_payment_rec, which is the same as date_fo_document. Value field will be populated with the amount of payment received and value_deduct field will be the value of the original imply - value of the first payment. Date is date_of_document + 1 and date_to is the date of the next payment.
    (3) Insert us the next installment. Date_od_payment_rec is the same as date_of_document... value is the amount of the second payment and value_deduct's previous value_deduct which was of 4000 - value of this second payment. date_from date_of_payment_rec + 1 and date_to is the date of the next payment

    So we continue this same pattern until we reached the final payment when we finish insert with the statement:
    Date of the document (date of the last payment received) and even for date_of_payment_rec and field value with the amount of the payment receieved. The rest (value_deduct, date_from, date_to) is null.

    I really hope you understand what I'm trying to do here.

    If you have any other questions please.

    Published by: user13071990 on November 22, 2012 04:16

    Published by: user13071990 on November 22, 2012 04:16

    Hello

    user13071990 wrote:
    ... Here are the instructions for correct insertion. This time, I posted 2 examples with 2 numbers different otherwise.

    Ok!
    Be sure to post the results you want new data.

    You probably need to add "PARTITION BY the Bill" to all analytical clauses in my solution:

    INSERT INTO invoice
    ( invoice, date_of_document, date_of_pay_day, date_of_payment_rec
    , value,   value_deduct,     date_from,           date_to
    )
    SELECT       invoice
    ,       date_of_document
    ,       date_of_pay_day
    ,       CASE
               WHEN  k > 0
               THEN  date_of_document
           END          AS date_of_payment_rec
    ,       NVL (d, k)     AS value
    ,       NVL2 ( date_of_pay_day
                , NULL
                , SUM (d) OVER ( PARTITION BY  invoice
                                          ORDER BY      date_of_document
                         )
                - SUM (k) OVER ( PARTITION BY  invoice
                                          ORDER BY      date_of_document
                         )
                )     AS value_deduct
    ,       NVL ( date_of_pay_day
               , date_of_document + 1
               )          AS date_from
    ,       LEAD (date_of_document) OVER ( PARTITION BY  invoice
                                            ORDER BY      date_of_document
                               )
                          AS date_to
    FROM       temp_invoice
    ;
    

    Because I'm not an English speaker nativ, that I just posted what it should look like after the insert is successful.

    OK, so you can't explain as you want, but you still need to explain.

    ... @Frank Kulash: you are very close, but still not quite what I'm looking for.

    Point out where my solution is the production of incorrect results, and explain (as you can) how to get good results in these places.

  • Cannot create Index with an If statement

    Hello:

    I would run the code to create an index on a given table, but only if the index does not exist. Here's what I have so far...

    DECLARE
    c_Count NUMBER;
    BEGIN
    SELECT COUNT (*) FROM c_Count
    OF DBA_INDEXES
    WHERE TABLE_NAME = 'SOME_TABLE_NAME '.
    AND INDEX_NAME = "SOME_INDEX_NAME."
    AND OWNER = 'SOME_OWNER. '
    AND TABLE_OWNER = "SOME_OWNER";
    IF c_Count = 0 THEN

    CREATE INDEXES SOME_OWNER. SOME_INDEX ON SOME_OWNER. UNE_TABLE (SOME_KEY);
    END IF;
    END;

    The SELECT INTO statement works well alone.
    Boredom comes with the IF statement. I get the following error message:

    PLS-00103: encountered the symbol "CREATE" when waiting for one of the following values: begin case declare exit for goto if loop...

    This is the typical error saying that the syntax is incorrect, and that the parser was expecting something else after the IF-THEN statement. Any ideas on what may be a problem? Thanks in advance.

    Jerry

    Hello

    You must use EXECUTE IMMEDIATE to the DDL in PL/SQL.

    DECLARE
       c_Count NUMBER;
    BEGIN
       SELECT COUNT(*)
         INTO c_Count
         FROM DBA_INDEXES
        WHERE TABLE_NAME = 'SOME_TABLE_NAME'
          AND INDEX_NAME = 'SOME_INDEX_NAME'
          AND OWNER = 'SOME_OWNER'
          AND TABLE_OWNER = 'SOME_OWNER';
       IF c_Count = 0 THEN
          EXECUTE IMMEDIATE 'CREATE INDEX SOME_OWNER.SOME_INDEX ON SOME_OWNER.SOME_TABLE(SOME_KEY)';
       END IF;
    END;
    

    Kind regards

  • How can I create a separate address book? I'm not on a mailing list but an address book where addresses are not mixed with my usual address b

    How can I create a separate address book? I'm not on a mailing list but an address book where addresses are not mixed with my address book regularly. I already have three created for me by Thunderbird address books. Add all new addresses to one of those, I'm not afraid to remove the other address books, because some of their addresses are not repeated in my address book "main". So if I delete all the names in one of the existing books, I need to create a blank book that will not mix the addresses with those of an another address book. HOW CAN I CREATE AN ADDRESS BOOK EMPTY? I want to be able to create multiple mailing LISTS using the addresses in this new book, I will eventually have an address book special with a variety of mailing lists, that I can use as I want to.

    In the address book, file | New | Address book.

    No menu showing "file"? F10 or ALT.

  • No stereo mix with Satellite T110

    I bought a Satellite T110 (Win7). There is no option of stereo mix with the recording devices. I scored see the disabled and disconnected devices. I've updated the driver conexant (4.98.16.61). Nothing helps. Still no stereo mix option. I tried to connect a male-male cable from the headphones to the line - gave very poor quality.
    Help, please!

    Post edited by: lelbd

    Hello

    As I know the audio chip Conexant does not provide this feature.
    As far as I know that Stereo Mix is supported by the Realtek chip but the audio chip Conexant lack this feature.

    Welcome them

  • In XP, how to lock icons in folders so that they don't get mixed with each opening. I have subfolders in alphabetical order and you want to keep it this way.

    In XP, how to lock icons in folders so that they don't get mixed with each opening. I have subfolders in alphabetical order and you want to keep it this way.

    Hello

    I suggest you to see link below and check if it helps.

    How to arrange files using folder views in Windows XP: http://support.Microsoft.com/kb/306554

    For your reference: Changes in the size, the view, the icon or the position of a file are lost. http://support.Microsoft.com/kb/813711#top

    Registry warning:
    Important this section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:
    How to back up and restore the registry in Windows: http://support.microsoft.com/kb/322756

    Hope this information is useful.

  • 0xC000021A {fatal system error}, the initial session process or the process of the complete system in unexpected ways with the blocking state 0 x 00000000 (0xc0000034 0x001008ac) the system has been halted

    Hello! I got this message from malware (I clicked to delete) in surfing on firefox and after awhile the explorer.exe closes with an error. I try to open the Task Manager and it says explore cannot be found!
    I rebooted and then I got this message "0xC000021A {fatal system error}, the initial session process or the process of the complete system in unexpected ways with the blocking state 0 x 00000000 (0xc0000034 0x001008ac) the system has been halted" and can't get anywhere.
    I can't even go in safe mode, the same error messages appears.

    Hi James,

    You could try the Startup Repair to see if it solves the problem:

    http://Windows.Microsoft.com/en-us/Windows-Vista/startup-repair-frequently-asked-questions

    Chris
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Procedure with the DML statements that insert values from 1 to 100 in only one table and it is matching word equivalent in the other

    Can someone help me create a procedure with the DML statements that insert values from 1 to 100 in a table "abc" and the procedure must connect the numbers into words in another table "xyz" without doing a commit explicitly. "."

    Currently on trial...

    SQL > create table abc (num number);

    Table created.

    SQL > create table xyz (num varchar2 (100));

    Table created.

    SQL > ed
    A written file afiedt.buf

    1. insert all
    2 values of 1 = 1 then in abc (num) (l)
    3 when the values of 1 = 1 then in xyz (num) (to_char (to_date(l,'j'), 'jsp'))
    4 * Select the level from dual connect by level<=>
    SQL > /.

    200 rows created.

    And the result...

    SQL > select * from abc;

    NUM
    ----------
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    ..
    ..
    ..
    98
    99
    100

    100 selected lines.

    SQL > select * from xyz;

    NUM
    ----------------------------------------------------------------------------------------------------
    one
    two
    three
    four
    five
    six
    seven
    eight
    nine
    ten
    Eleven
    twelve
    ..
    ..
    ..
    98
    Nineteen eighty
    Cent

    100 selected lines.

  • can I use a mixer with premiere pro cs6?

    I have the first pro cs6 and wonder if I could use a mixer with premiere pro cs6?

    Hi Sindrekdn,

    I have the first pro cs6 and wonder if I could use a mixer with premiere pro cs6?

    No, surfaces of control (like the mixture of boards) did not support until the Premiere Pro CC sorry!

    Thank you
    Kevin

  • How can I change the color of the cloth? I tried right click changed to black, gray and even blue but it is still white and mixes with the artboard

    How can I change the color of the cloth? I tried right click changed to black, gray and even blue but it is still white and mixes with the artboard

    It should be present.

  • 4K mixed with 1080 in 1080 chronology freeze on export. First CC.

    Im working with GH4 4 K files mixed with files Blackmagic 1080. When I put in files of 4 K reduced to 1080 in the timeline, everything works fine until I return. The gels to render at 4 K reduced.

    My computer specs are i7 3.5 GHz Haswell, GeForce 760 2 GB, 32 GB RAM, Windows 7 Pro

    Well, I did support screen sharing with Adobe and discovered that Magic Bullet Looks was the issue. Even if I was not using it, the plug-in folder was causing problems with the encoder.

  • Specific problem with pimples and States

    Hello

    I firstly apologize for use Google Translate :-(

    I have a problem with InDesign does not resolve. That's a digital publication.

    My goal is:

    A 'Gallery' button and the image of the ball appears with three buttons: "Previous Image", "Next Image" and "narrow Gallery.

    I don't want the Gallery either visible, or buttons that control, until the 'Gallery' button, so I think that all the buttons except 'Gallery' by selecting the option 'hidden until this active'.

    I want the gallery and the buttons that control, disappears when I press the "Close Gallery" button.

    What I call 'Gallery' is an image that fills the screen.

    After you have placed the image on your site have become the button property "Hidden until this that active."

    Then convert this key in order to several States (what I will call 'button States') and by successive Governments with the pictures I want to show in the gallery.

    I think that the interactions between the buttons.

    When the 'Gallery' button I attribute the following "I click on the '.

    -"Go to the State."

    -Hide the "Gallery".

    -Show 'narrow Gallery.

    -Show "previous image".

    -Show "next image".

    -Show "States of the button.

    "Previous Image" and "Next Image" buttons are assigned, respectively, to go to the previous state and go to the next State.

    When "Close Gallery" button I attribute the following "I click on the '.

    -Show "Gallery."

    -Hide 'narrow Gallery.

    -Hide "previous image".

    -Hide "next image".

    -Show "States of the button.

    "Previous Image" and "Next Image" buttons are assigned, respectively, to go to the previous state and go to the next State.

    When "Close Gallery" button I attribute the following "I click on the '.

    -Show "Gallery."

    -Hide 'narrow Gallery.

    -Hide "previous image".

    -Hide "next image".

    -Hide the "States of the button.

    I put it to the top and works correctly until I press "close". Then I hide buttons "Close Gallery", "previous image" and "next image" but it keeps me visible "Button States" showing the last image that was shown.

    Don't know how to solve this problem, and I'm going crazy!

    Please can someone help me?

    Maybe the solution is another approach, but without using "Folio overlays.

    Thank you very much.

    I moved your post to the DPS forum.

    I'm afraid of how you do this will not work with DPS.

    This should all be done with a multi state object. The first State would contain anything other than a button to access the first State. After that, set up each State with the appropriate buttons. Without seeing the file, it's a little hard for me to imagine exactly what you want to do.

  • Is it possible with nested folders to show al images when the level folder highlight superior?

    Is it possible with nested folders to show al images when the level folder highlight superior? I thought that I used to be able to do, but I can't find a way to do it now.

    Mark,

    menu: Library-Online Show pictures in subfolders.

    Ja.

  • Delicate nested If statement

    Hey, I have a delicate nested if statement that I need to work. There are two conditions. If 'DropDownCountry' is not = 'US' AND 'DropDownAcctType' = 'Demo', then a txtbox should read "TEXT HERE"

    If (xfa.event.newText = "En") {}
    }
    else {}
    If (DropDownAcctType.rawValue = "Demo") {}
    txtReminder.rawValue = "TEXT HERE"}
    }

    OR

    If {(xfa.event.newText <>"US")

    If (DropDownAcctType.rawValue = "Demo") {}

    txtReminder.rawValue = "TEXT HERE"}

    }

    I might have messed up the logic or syntax somewhere here, please advise. Thank you!

    Try this...

    If (DropDownCountry.rawValue! = "US" & DropDownAcctType.rawValue == "Demo")
    txtReminder.rawValue = "TEXT HERE";

    Thank you

    Srini

Maybe you are looking for

  • Is there anything to replace the HopStop?

    I used HopStop all the time. I'm literally lost without her. Y at - it site or an app to replace? I live in New York. Thank you.

  • Display does not-Compaq Presario CQ60

    Hello I have a Compaq Presario CQ60. The screen doesn't seem to work. When I turn on the laptop the screen remains black. No start-up screen, nothing. I can't go into the bios, because I have no screen. The screen remains black. The hard drive seems

  • Development of a method for the actions of repair in a sequence

    I want to design a sequence teststand that when each test fails, execution of the sequence stops and indicates the reparation measures.  I don't see an action for damages in one of the fields in the dialog boxes for each step to edit.  I just want to

  • Where is "Select all" to download photo?

    Is there a "Select all" feature in my pictures folder when you try to upload to Shutterfly. In its current form, when I try to upload to shutterfly using their downloaded - I go to my photo folders and I have to individually select each must be downl

  • HP Pavilion M6R61EA #ABU: HP Pavilion connection to external monitor

    I want to display photos from my computer on my TV.  The TV came while the HP Pavilion Notebook only has a HDMI RGB connector.  I bought a cable to connect the two. The TV screen works perfectly for 20-30 seconds and then there are the red lines on t