Keeping the description of the table on the evolution and not displaying only not NULL values

I have the table grouped by MPV and then showing by Fund. I can't get the description section appears for the first Fund and then when he changes nothing only shows funds. When the year changes once again it appears so.
ex.
MPV: 2005: 0100AXXXXD
but when changes in Fund 0100AXXXXD... nothing appears.

Also, I wanted to not include any funds/years that have the value null. I had the following code in, but it does not prevent null values.
<? If: SEC_ZERO_INDICATOR! = 0 ? >

Thanks for any help.

Need to see your xml data structure. Can you send me the xml and the RTF file to [email protected]? I'll take a look.

Thank you
Bipuser

Tags: Business Intelligence

Similar Questions

  • How to know the history have not null value

    Hi all

    I want to find records that have prior LOG_REVIEW_STAGE = "HHH" have (DT_LOG_BEGIN is not null and DT_LOG_END IS NULL and LOG_STATUS = pending)
    based on the identification number

    Thanks in advance
    For Example my Ouput should be 
    
    ID     SORT_ORDER     LOG_STATUS     LOG_REVIEW_STAGE     DT_LOG_BEGIN     DT_LOG_END
    -----------------------------------------------------------------------------------------------
    20     700          Pending          FFF               1/26/2004     
    ID     SORT_ORDER     LOG_STATUS     LOG_REVIEW_STAGE     DT_LOG_BEGIN     DT_LOG_END
    -----------------------------------------------------------------------------------------------
    10     100          Complete     AAA               1/13/2004     1/13/2004
    10     200          Complete     BBB               1/23/2004     1/23/2004
    10     300          Pending          CCC               1/23/2004     
    10     400                    DDD          
    10     601                    EEE          
    10     700                    FFF          
    10     800                    GGG          
    10     900                    HHH         ---------------------->>>>>>>>>
    10     1000                    JJJ          
    10     1100                    KKK          
    20     100          Complete     AAA               1/13/2004     1/13/2004
    20     200          Complete     BBB               1/23/2004     1/23/2004
    20     300          Complete     CCC               1/23/2004     1/23/2004
    20     400          Complete     DDD               1/24/2004     1/24/2004
    20     601          Complete     EEE               1/25/2004     1/25/2004
    20     700          Pending          FFF               1/26/2004     
    20     900                    HHH          ---------------------->>>>>>>>>
    20     1000                    JJJ          
    20     1100                    KKK          
    create table TEMP_TABLE
    (
      id               NUMBER(2),
      sort_order       NUMBER(10),
      log_status       VARCHAR2(50),
      log_review_stage VARCHAR2(50),
      dt_log_begin     DATE,
      dt_log_end       DATE
    )
    ;
    
    
    
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (10, 100, 'Complete', 'AAA', to_date('13-01-2004', 'dd-mm-yyyy'), to_date('13-01-2004', 'dd-mm-yyyy'));
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (10, 200, 'Complete', 'BBB', to_date('23-01-2004', 'dd-mm-yyyy'), to_date('23-01-2004', 'dd-mm-yyyy'));
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (10, 300, 'Pending', 'CCC', to_date('23-01-2004', 'dd-mm-yyyy'), null);
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (10, 400, null, 'DDD', null, null);
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (10, 601, null, 'EEE', null, null);
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (10, 700, null, 'FFF', null, null);
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (10, 800, null, 'GGG', null, null);
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (10, 900, null, 'HHH', null, null);
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (10, 1000, null, 'JJJ', null, null);
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (10, 1100, null, 'KKK', null, null);
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (20, 100, 'Complete', 'AAA', to_date('13-01-2004', 'dd-mm-yyyy'), to_date('13-01-2004', 'dd-mm-yyyy'));
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (20, 200, 'Complete', 'BBB', to_date('23-01-2004', 'dd-mm-yyyy'), to_date('23-01-2004', 'dd-mm-yyyy'));
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (20, 300, 'Complete', 'CCC', to_date('23-01-2004', 'dd-mm-yyyy'), to_date('23-01-2004', 'dd-mm-yyyy'));
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (20, 400, 'Complete', 'DDD', to_date('24-01-2004', 'dd-mm-yyyy'), to_date('24-01-2004', 'dd-mm-yyyy'));
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (20, 601, 'Complete', 'EEE', to_date('25-01-2004', 'dd-mm-yyyy'), to_date('25-01-2004', 'dd-mm-yyyy'));
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (20, 700, 'Complete', 'FFF', to_date('26-01-2004', 'dd-mm-yyyy'), to_date('26-01-2004', 'dd-mm-yyyy'));
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (20, 800, 'Pending', 'GGG', to_date('27-01-2004', 'dd-mm-yyyy'), null);
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (20, 900, null, 'HHH', null, null);
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (20, 1000, null, 'JJJ', null, null);
    insert into TEMP_TABLE(id, sort_order, log_status, log_review_stage, dt_log_begin, dt_log_end)
    values (20, 1100, null, 'KKK', null, null);
    commit;

    Please provide examples of data, as well as an explanation of your logic. It is very useful!

    I think that's what you want:

    SELECT id
         , sort_order
         , log_status
         , log_review_stage
         , dt_log_begin
         , dt_log_end
    FROM
    (
            SELECT id
                 , sort_order
                 , log_status
                 , log_review_stage
                 , dt_log_begin
                 , dt_log_end
                 , LEAD(log_review_stage) OVER (PARTITION BY id ORDER BY sort_order) AS next_log_review_stage
            FROM   temp_table
    )
    WHERE  log_status            = 'Pending'
    AND    dt_log_begin          IS NOT NULL
    AND    dt_log_end            IS NULL
    AND    next_log_review_stage = 'HHH'
    ;
    

    When run on your dataset, it returns:

                      ID           SORT_ORDER LOG_STATUS      LOG_REVIEW_STAGE                                   DT_LOG_BEGIN        DT_LOG_END
    -------------------- -------------------- --------------- -------------------------------------------------- ------------------- -------------------
                      20                  800 Pending         GGG                                                01/27/2004 00:00:00
    

    If this is incorrect, please explain why.

    Thank you!

  • How can I keep the dock and menu bar in the window

    How can I keep the dock and menu bar in the window

    First of all, go to System Preferences and select general:

    Under the dark menu and dock option, uncheck "hide and show the menu bar automatically".

    Go back and select Dock Prefs system:

    Make sure that "automatically hide / show the dock" is not checked.

  • What is the best way to resize an image, but keep the height and width of the same original size or format?

    What is the best way to resize an image, but keep the height and width of the same original size or format?

    I tried to use the function of the size of the Image, but when I changed the size of the image, the width has not changed with it.

    Thanks for the tips!

    Hi Landon.Luu,

    You want to keep the relationship between the width and height to be the same?

    Click the constraint between width and height to keep the ratio intact.

    Kind regards

    Claes

  • I'm trying to download the demo version of creative cloud - can I still keep the CS5 and CS3 as well as Bridge CS5 on my computer that I don't want to uninstall these

    I'm trying to download the demo version of creative cloud - can I still keep the CS5 and CS3 as well as Bridge CS5 on my computer that I don't want to uninstall these?

    You can install the creative Cloud Desktop application as well as other creative applications Cloud while leaving the old programs installed.

    You can download the Adobe Creative Cloud Desktop App from here:
    Creative cloud help | Creative cloud desktop.

    After installing the desktop creative cloud application, you will need to sign in with a login password and Adobe. Then you can install applications. This link provides more information and step by step instructions, if you need: CC help | Download, install, update or uninstall applications

    Guinot

  • Starting from two data tables, how do you get the values in two columns using values in a column (values get col. If col. A is not null values and get the pass. B if col. A is null)?

    Two tables provided, how you retrieve the values in two columns using values in a column (the pass get values. If col. A is not null values and get the pass. B if col. A is null)?

    Guessing

    Select nvl (x.col_a, y.col_b) the_column

    from table_1 x,.

    table_2 y

    where x.pk = y.pk

    Concerning

    Etbin

  • Two columns must be UNIQUE if the second is not NULL.

    Two columns must be UNIQUE if the second is not NULL. If the second is NULL, the first has no need to be UNIQUE.

    CREATE TABLE Moo
    (
    Prima        INT PRIMARY KEY,
    Secunda    INT NOT NULL,
    Tertia        VARCHAR2(1)
    );
    
    CREATE UNIQUE INDEX Cow ON Moo(Secunda, NVL(Tertia, TO_CHAR(Prima)));
    
    INSERT INTO Moo(Prima, Secunda, Tertia)
    SELECT 1, 1, NULL FROM Dual UNION ALL
    SELECT 2, 1, NULL FROM Dual;
    
    DROP TABLE Moo;
    
    

    Is there another way to do it?

    Added 'SINGLE '.

    I had a little trouble at matches your description to your example, but if you want to apply the uniqueness on (secunda, tertia) only for lines where tertia is not null, then the following should work:

    create an index unique xxx on moo)

    cases when is not null, then end of secunda, tertia

    Tertia

    );

    Concerning

    Jonathan Lewis

    P.S. When do a quick test of the best way to define this index, I found what seems to be a bug in 11.2.0.4 (and maybe other versions) with the expression:

    Tertia case if no then cast (null as an int) to another end secunda

    Update: now blog at: Easy & #8211; Oops. | Notebook of the Oracle

  • Notification by email to the phone and not headset/Bluetooth Headset

    I have an iPhone6 and whenever my bluetooth headset is connected, my notifications by e-mail through the headset and not via the phone.  I need to call to keep giving me the notification and send it through the headset.  Often, I have my phone and the headset on my desk and will not hear the notification.  I'm pretty sure I could change this once, but can't remember how.

    Maybe you have active AirPlay? Swipe up from the bottom of the screen to display the command center and ensure AirPlay is disabled.

    How to use AirPlay on your iPhone, iPad or iPod touch - Apple Support

    Also, go to settings > general > accessibility > routing of Audio calls > and set it to automatic.

  • I am facing a problem with the beep.vi. I have a DAQ program, which acquired the signal and compare it to a threshold value. When a signal is out of range, a Visual and sound alarm has occurred. I use the VI beep.vi to generate the sound.

    I am facing a problem with the beep.vi.  I have a DAQ program, which acquired the signal and compare it to a threshold value. When a signal is out of range, a Visual and sound alarm has occurred. I use the VI beep.vi to generate the sound. Everything works fine except the sound alarm. It gives the table 1 d of type mismatch. I tried to fix this by placing it in a box structure. But it still does not work. If someone could help? Please find attached my VI. Best wishes to all visitors to the Forums of Discussion OR.

    Ihab El-Sayed

    published here: http://forums.ni.com/t5/LabVIEW/Playing-sound-based-on-exceeding-a-threshold-value-1D-array-data/m-p...

  • OFFICE 2003 UPDATES NOT INSTALLi WILL have carried out a search for the KB numbers is not found has tried to find where the updates have been downloaded, not at the office and not in the section windows software, then

    4 updates for office 2003 will not install update for the junk e-mail in Microsoft Office Outlook 2003 (KB974771) filter
    Update of security for Microsoft Office 2003 (KB972580)
    Update of security for Microsoft Office 2003 (KB974554)
    Update of security for Microsoft Office Outlook 2003 (KB973705) I searched the KB numbers, not found tried to find where the updates have been downloaded, not at the office and not in the software section windows, so I am at a loss, the small yellow shield keeps saying updates are ready for download
    I am at a loss of what everything else is fine, that I have set for automatic notification of updates, then let me chose to download.
    for any help or suggestion would be greatly appreciated.
    Thank you very much * address email is removed from the privacy *.

    Download the 4 four updates and install them manually.

    IE: http://www.microsoft.com/downloads/en/results.aspx?freetext=KB974771&displaylang=en&stype=s_basic

    Just look for the other 3 three, download to a place you can find and install manually the same.

    Taursie TaurArian [MVP] 2005-2010 - Update Services

  • Print only the attachment and not email

    Hello

    Is it possible for me to define the eprint so that it displays only the attachments and not the email too?

    Hello

    I fear the answer is no.

    All content is automatically printed and it cannot be changed.

    You cannot print attached without also printing the email.

    You can find the terms of service listed in the frequently asked questions (FAQ) below:

    http://support.HP.com/us-en/document/c03721293

    Kind regards

    Shlomi

  • Can I replace the memory and not lose what is on the old memory for a Mid 2007 Mack computer desktop Intel Core 2 Duo, 2 GHz processor speed, 1 CPU, 4 MB of Cache L1, the 4 GB memory at 800 MHz bus speed.  Only 1 slot can play memory, the other is damaged

    Can I replace the memory and not to lose what's on the memory of the former?  I have a Mid 2007, 20 "desktop Mac, Intel Core 2 Duo, 2 GHz processor, 1 CPU, 4 MB L2 cache, 4 GB of memory, 800 MHz bus speed.  I have a backup device.  A RAM slot is damaged.

    You are confused of RAM and disk space available.

    RAM stores information temporarily while the Mac is enabled and the application is reached. RAM replacement has no effect on the long term of your information storage.

    The hard drive is where your information is stored in the long term. If you replace your hard drive, you need restore the information from a backup.

    FYI, for your iMac, the maximum RAM is only 6 GB.

  • Help his Mac Mini? Connected to monitor w / sound coming from monitor. I tried speaker external buffering in the back of the unit and still get only his monitor speakers.

    Help his Mac Mini? Connected to monitor w / sound coming from monitor. I tried speaker external buffering in the back of the unit and still get only his monitor speakers.

    How is the monitor connected?

    Are to connect the speakers to the headphone 3.5 mm? And not the line-in jack 3.5?

    If you go to System Preferences > sound > you can select the speakers/headphones output?

  • My task manager only to see the task and not, application, process, etc. How can I get it back to normal?

    My task manager only to see the task and not, application, process, etc. How can I get it back to normal?

    If it does not display all the tabs, double-click the external border of the Task Manager.

  • Got paper stuck in the printer and now will only print proofs. How to reset the printer

    Got paper stuck in the printer and now will only print proofs. How to reset the printer

    It looks like you may have some saved jobs in your queue that need to be removed.

    Here's how:

    To clear the print queue, stop the print spooler service and delete all the jobs/print pending.
       
    You cannot delete all print jobs in the queue so that the Print Spooler Service is running.
          
    To stop the Print Spooler Service, click Start, run and enter in the box:
           
    services.msc
           
    Click OK to open the Services Applet.
           
    Locate the Print Spooler Service, right click and choose 'Properties' and then click on the "Stop" button to stop the Print Spooler Service is running.
       
    The option "Startup Type" of Service properties print spooler is usually set to "Automatic" (which is now a good time to check it out).
       
    If the "Startup type" is not set to "Automatic", set the "Startup type" to "Automatic" If that is your desire (which now is the time to check it out).

    Do not try to start or restart the Print Spooler Service immediately.  You must remove all print jobs backed up first...
       
    Then, delete all updates pending upward and forward to printing from XP.  If they do not print before, you will need to send the to the printer again.
       
    Using Windows Explorer, navigate to the following folder (assuming that Windows is installed on your C drive):
       
    C:\WINDOWS\system32\spool\PRINTERS
           
    Delete all the print jobs in queue (select and delete all the files) in the folder if the folder is without waiting for print jobs.  The folder must be empty when you are finished.
           
    Reboot your system and check the Print Spooler Service again to make sure the Print Spooler Service restarts automatically restart (given that the startup type is set to automatic).
       
    After the reboot, check again the Spooler Service for printing and the 'Status' column for the print spooler must be read "started."

    Submit new failure of print jobs.

Maybe you are looking for

  • just want sections of pages

    I create a new presentation to use on my iPad.  I use old PDFs and inserting them in a page in the Pages.  In the end, I would like to create a single new PDF.  Is this possible?  I don't see the option to add a page, only items.  The insert options

  • R7000 problems play 2 ps4s all same same game party

    Hello We recently bought the nighthawk R7000 router running firmware version V1.0.7.2 2.4.24 and filled our gateway 2wire ISPS router (ISP said it was the only way to connect and use a new router) to it and put it up for all the devices in our House.

  • my screen has spilled on the side on my laptop?

    My display got spilled on the side, on my laptop when the neighbors cat ran through my computer laptop. - PLZ help me to get this overturned on the right rear. the arms are sore n I'm handicapt. have a good laugh, but please help. Thank you.

  • Re-installation of Windows 7 ATI components has me uninstall

    I tried to improve my HP dv7-1448dx from Vista to Windows 7. Windows 7 asked me to uninstall the ATI Catalyst Install Manager and the ATI Catalyst Control Center, I did. After several failed attempts to install Windows 7, I decided to go back to Vist

  • Code signature FAILURE: Error 502 server-side!

    I get to the point where I want to sign my WebWorks Playbook application to test and for publication in the end on the AppWorld. Successfully, I asked and recorded my keys for code signing, who went without a hitch in accordance with the manual. Howe