Sales of the previous year with the guest of the current year

Hello

I have the year and sales in the criteria and my year is receiving messages. When I select the current year, my report must return data for the current year and previous year and if I select the previous year in the command prompt report should indicate the previous year and before yr previous data.  Could you help us meet this goal.

Thanks for your help. I was able to do with the variable of presentation... My intention was not to change anything in the RPD. My time dimension is something not clear.

I just used below the formula to this YEAR being my PV.

FILTER ("Operation". "Unit price" USING ((cast ("Temps de la Transaction".))) " ((Year of operation"AS INTEGER)) = @{YEAR} {2014}))

FILTER ("Operation". "Unit price" USING ((cast ("Temps de la Transaction".))) " ((Year of operation"AS INTEGER)) = @{YEAR} - 1))

Tags: Business Intelligence

Similar Questions

  • With the help of SQL, need to display the previous year, current year and the year next to single variable

    Hi all

    We have an obligation to state the previous year, current year and values of the year next as a LOV in the ADF page.

    This is the query that retrieves the previous year, current year and next year. But the result of this query displays values in 3 columns:

    Select (Extract(year from sysdate)-1), extract (year sysdate), (extract (year sysdate) + 1) twice;

    Output:

    2012 2013 2014


    But I want to display them in a single with 3 rows as column:

    2012

    2013

    2014


    Please your ideas.

    or in the same way

    SELECT EXTRACT (YEAR FROM ADD_MONTHS (SYSDATE, 12 *(LEVEL-2)))

    OF the double

    connect by level<>

  • Find the stock quantity of the previous year with another way...

    Hello
    I have a table with the following structure:
    create table stock_qties_items
    (subinv varchar2(10),item_code varchar2(10),period_name varchar2(5), qty_a number(5,2), qty_b number(5,2));
    alter table stock_qties_items
    add constraint stock_qties_items_pk primary key(subinv,item_code,period_name);
    and some data...
    insert into stock_qties_items
    values('01','410010010','01-08',10.50,0);
    insert into stock_qties_items
    values('01','410010010','02-08',19.30,10.35);
    insert into stock_qties_items
    values('01','410010010','03-08',3,0);
    insert into stock_qties_items
    values('02','410010010','03-08',8.54,1.90);
    insert into stock_qties_items
    values('03','410010010','03-08',120.45,1.25);
    insert into stock_qties_items
    values('03','410010010','04-08',502.10,6.50);
    insert into stock_qties_items
    values('03','410010010','05-08',5.05,6.20);
    insert into stock_qties_items
    values('03','410010010','08-08',19.35,65.90);
    insert into stock_qties_items
    values('02','410010010','10-08',40.85,5.20);
    insert into stock_qties_items
    values('03','410010010','12-08',75.20,90.15);
    insert into stock_qties_items
    values('02','410010020','12-08',60.55,0.85);
    insert into stock_qties_items
    values('01','410010020','07-08',100.90,10.05);
    insert into stock_qties_items
    values('01','410010010','01-09',8.95,0.05);
    insert into stock_qties_items
    values('02','410010010','01-09',88.95,100.05);
    insert into stock_qties_items
    values('03','410010020','01-09',91.05,0.05);
    insert into stock_qties_items
    values('04','410010020','01-09',11.75,10.05);
    insert into stock_qties_items
    values('04','410010010','03-09',1.75,110.40);
    insert into stock_qties_items
    values('04','410010010','05-09',0.75,10.40);
    insert into stock_qties_items
    values('04','410010025','03-09',1.75,90.00);
    insert into stock_qties_items
    values('04','410010025','07-09',51.75,190.00);
    insert into stock_qties_items
    values('04','410010010','09-09',62.15,10.05);
    insert into stock_qties_items
    values('04','410010010','10-09',39.15,0);
    The goal is to find the stock for the current year and previous year. I have accomplished with the following...
    select period_year,
               item_code,
               sqi1 stock_prev_year,
               sum(stock_curr_year) stock_curr_year
        from
        (
        select  to_char(to_date(substr(period_name,4,2),'RRRR'),'RRRR') period_year,
             item_code,
          (select sum(qty_a+qty_b)
                  from stock_qties_items sq
                  where sq.item_code=sqi.item_code
                 and to_char(to_date(to_number(substr(sqi.period_name,4,2)-1),'RRRR'),'RRRR')=
                        to_char(to_date(substr(sq.period_name,4,2),'RRRR'),'RRRR')
             ) sqi1,
             qty_a+qty_b stock_curr_year
         from stock_qties_items sqi
         )
         group by period_year,
               item_code,
               sqi1
    which generates the following output...
    PERIOD_YEAR ITEM_CODE  STOCK_PREV_YEAR STOCK_CURR_YEAR
    ----------- ---------- --------------- ---------------
    2008        410010020                           172,35
    2009        410010010           991,79          432,65
    2008        410010010                           991,79
    2009        410010025                            333,5
    2009        410010020           172,35           112,9
    Y at - it another way to achieve the same result, given that this table has a few million records and in this request a few other tables parameter should be added...?

    Note: I use Db 10 g v.2
    Thank you
    SIM

    Using the LAG function:

    SQL> with t as (
      2  select to_char(to_date(substr(period_name,4,2),'RRRR'),'RRRR') period_year,
      3  ITEM_CODE, sum(qty_a+qty_b) STOCK
      4  from stock_qties_items
      5  group by to_char(to_date(substr(period_name,4,2),'RRRR'),'RRRR'), ITEM_CODE
      6  )
      7  select period_year, ITEM_CODE,
      8  lag(stock) over (partition by ITEM_CODE order by period_year) stock_prev_year,
      9  stock stock_curr_year
     10  from t
     11  order by item_code, period_year;
    
    PERI ITEM_CODE  STOCK_PREV_YEAR STOCK_CURR_YEAR
    ---- ---------- --------------- ---------------
    2008 410010010                           991,79
    2009 410010010           991,79          432,65
    2008 410010020                           172,35
    2009 410010020           172,35           112,9
    2009 410010025                            333,5
    

    Max
    [My Italian oracle Blog | http://oracleitalia.wordpress.com/2010/01/30/compilazione-condizionale-in-plsql/]

  • SQL to get % increase in the amount of the previous year

    Version 11g

    Hello

    I have a requirement where I need to calculate the percent increase of wages and costs compared to the previous year,

    If the output should be something like
    Year        Salary       %increase                Rent         %Increase
    
    2012       1000          1000%                   100                     1000%
    2011       100             100%                    10                      100%(depending on last year value)
    2010    . . . 
    .
    .
    .
    The inclusion of scripts are
    create table sal
    (exp_type   varchar2(100),
    exp_date  date,
    exp_amt number);
    
    
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-JUN-11','DD-MON-RR'),685);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-JUN-11','DD-MON-RR'),84.89);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-JUL-11','DD-MON-RR'),685);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-JUL-11','DD-MON-RR'),84.89);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-AUG-11','DD-MON-RR'),687);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-AUG-11','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-SEP-11','DD-MON-RR'),687);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-SEP-11','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-OCT-11','DD-MON-RR'),750);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-OCT-11','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-NOV-11','DD-MON-RR'),750);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-NOV-11','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-DEC-11','DD-MON-RR'),755);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-DEC-11','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-JAN-12','DD-MON-RR'),755);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-JAN-12','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-FEB-12','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-FEB-12','DD-MON-RR'),750);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-MAR-12','DD-MON-RR'),766);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-MAR-12','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-JUN-12','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-JUN-12','DD-MON-RR'),740);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('02-JUL-12','DD-MON-RR'),735);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('02-JUL-12','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-AUG-12','DD-MON-RR'),739);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-AUG-12','DD-MON-RR'),93.4);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('02-SEP-12','DD-MON-RR'),740);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('02-SEP-12','DD-MON-RR'),93.4);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-APR-12','DD-MON-RR'),570);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-APR-12','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-MAY-12','DD-MON-RR'),740);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-MAY-12','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-NOV-12','DD-MON-RR'),845);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-NOV-12','DD-MON-RR'),93.4);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-OCT-12','DD-MON-RR'),900);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-OCT-12','DD-MON-RR'),93.4);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-FEB-10','DD-MON-RR'),508);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-FEB-10','DD-MON-RR'),84.89);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('03-MAR-10','DD-MON-RR'),84.89);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('03-MAR-10','DD-MON-RR'),500);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-APR-10','DD-MON-RR'),509);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('04-APR-10','DD-MON-RR'),84.89);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-MAY-10','DD-MON-RR'),84.89);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-MAY-10','DD-MON-RR'),514.46);
    Any suggestions on how we can calculate the increase in % at run time?


    Thank you
    Ryan

    Hello

    ryansun wrote:
    Thank you Al, Frank!

    I am struggling with the math a bit part. Or maybe % increase is not the correct term. So what I want is the increase in rent and wages in terms of % over the previous year. Thus, for example the output below.

    The salary in 2012 is 8280
    The salary in 2011 is 4999

    so 8280-4999 = 3281

    3281 is 65.6% of 4999.

    The increase last year was 65.6% compared to the last years value while the output of two sqls 165,6%

    Right, Al and I assumed you wanted the percent of last year, not the percentages of increase... Subtract 100 if you want the percentage increase.

  • How to complete the data or details of the only this year and the previous year for the given RATNG?

    Hi all

    I created a form with 5 blocks (namely ENQACMHDR, ENQACMDTL, ENQACEHDR, ENQACEDTL, ENQACSPEC), where I have 8 push buttons (namely ENTER_QUERY, EXEC_QUERY, CLEAR, FIRST, NEXT, PREVIOUS, LAST, and EXIT).

    This form is created just for display purposes only. So after that I ran, all blocks have been blocked against insert and update.

    I have question on 2 fields 'ENQNO' and "RATNG" (both belong to the ENQACMDTL block).

    When I click on "EXEC_QUERY" directly, all data for all years fills.

    But the user wanted the data to be populated only this year and the previous year.

    Yes, on ' Clause WHERE' of the property_palette of the 'ENQACMDTL' block , I put in the following condition:

    SUBSTR (ENQACMDTL. ENQNO, 1, 4) = TO_CHAR (ADD_MONTHS (SYSDATE,-12), 'YYYY') OR SUBSTR (ENQACMDTL. ENQNO, 1, 4) = TO_CHAR (SYSDATE, 'YYYY')

    PROPERTY PALETTE (ENQACMDTL block)
    WHERE ClauseSUBSTR (ENQACMDTL. ENQNO, 1, 4) = TO_CHAR (ADD_MONTHS (SYSDATE,-12), 'YYYY') OR SUBSTR (ENQACMDTL. ENQNO, 1, 4) = TO_CHAR (SYSDATE, 'YYYY')


    Data only this year and the year before are now filled. Its ok with the field of "ENQNO".

    The problem is when I have queries on the field "RATNG. 'RATNG' is a Text_item with number of displayed items = 5. (5 lines)


    Here are the 2 columns in a Table (name = ENQACMDTL) in the database.


    ENQNO RATNG
    2013900054500KC2
    2013900047800KC4
    2013520018750KC6
    ...............
    20129000371000KC2
    2012520109500KC2
    2012140019750KC6
    ..................
    2011540036500KC2
    20111000301000KC2
    ..................
    .................
    200610000790KD8
    2006750014750KC6
    2006900072500KC2

    The first 4 issues of "ENQNO" represents the year. There is more than a lakhs of records.

    So, when I have queries on the field "RATNG."

    Example: for RATNG = 500KC2;

    I click on ENTER_QUERY, the field of "RATNG", I put in the 500KC2 of the value and click on EXEC_QUERY; Details regarding the 500KC2 is displayed as well as all the other junk RATNG as 750KC6, 1000KC2 (which belongs to the ENQNO of the current year and previous year) also gets displayed.

    I want details of only RATNG (500KC2) to display, but only for the current year and the previous year, it is 2013900054, 2012520109 (ENQNO).

    Other than 500KC2 RATNG, no other RATNG must be displayed.

    500KC2 = RATNG is also present for ENQNO = 2011540036, 2006900072. But I don't want them to view.

    I want only the data or details of the current year and the previous year to be filled or displayed for the given RATNG.

    Can you help me or tell me what I do for this?

    Hope I'm clear with my question!

    If my question is not clear, let me know please.

    Thank you.

    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production

    Oracle forms 6i.

    1. check null values in the enqacmdtl.enqno, if so treat them properly.

    2. check the result of select to_char (add_months (sysdate,-12), 'YYYY') prev_year curr_year of double to_char(sysdate,'YYYY')

    3. change the place where clause "year" in the value of numAriques.

    where to_number (substr (enqacmdtl.enqno, 1, 4)) > = to_number (to_char (add_months (sysdate,-12), 'YYYY'))

    Then let me know the result.

  • Why doesn't a USB drive I have previously used with AirPort extreme appear in the finder when used locally with my Mac?

    Why doesn't a USB drive I have previously used with AirPort extreme appear in the finder when used locally with my Mac?

    I tried to plug it into my mac to transfer files locally but will not be displayed in the finder or disk utility. Anyone know why?

    MacBook Pro (2015 retina) OS X 10.11.2 El Capitan

    Have you shut down / turning your Mac off... power off the USB drive... Connect the drive to the Mac... start up the Mac... then, turn on the USB drive?

    If no help, there are a number of posts to the thread in the forum El Capitan of support from users who have problems on their Mac USB.  You can post there to see if anyone has the answers.

    OS X El Capitan

  • How to get the month previous year?

    Hello

    I have to get the previous year three-months of the effective date, but I have a problem since the beginning of the year and it's because I set the incorrect query.

    I mean:

    I wrote this query

    SELECT TO_CHAR(SYSDATE,'YYYYMM')-1, 2-TO_CHAR(SYSDATE,'YYYYMM'), TO_CHAR(SYSDATE,'YYYYMM')-3

    FROM DUAL;

    in order to get (on mars):

    201502, 201501, 201412

    but unfortunately, I get:

    201502, 201501, 201500

    Can you help me?

    Thanks in advance!

    Hello

    Here's one way:

    SELECT TO_CHAR (ADD_MONTHS (SYSDATE-1), "YYYYMM") AS the m1

    , TO_CHAR (ADD_MONTHS (SYSDATE-2), "YYYYMM") AS m2

    , TO_CHAR (ADD_MONTHS (SYSDATE,-3), "YYYYMM") M3

    DOUBLE;

  • Calculate days a year in the current year/CDA days in the previous year and store in Variables to repository

    Hello peers - how can we calculate CDA days in the current year, CDA days in the previous year using SQL Timestampadd/Timestampdiff works and store them as variables to repository? Appreciate any inputs.

    Thank you.

    Regarding the answer to your other question (How to use the functions Timestampadd/Timestampdiff in the repository Variables) you don't need to use timestampadd / timestampdiff for a block init but real SQL, to verify the features in charge of your database.

    PS: Days CDA? If you just want to know the day number based on the year?

  • How to compare a Date with the current year data and member of period on FIX

    Hi experts,

    I have a Sun project that each Member is a project (P01, P02,...)
    and account IMGs who stores the information of each project (name, Start date, finished...)
    Finished Date member is of data type Date

    So how can write an IF condition below in order to be able to compare the end Date of the project with the members of the current year and period on FIX
    DIFFICULTY (@Descendants (Projects), Descendants (year-round), Descendants ("year Total")...)
    IF (@CURRMBR (Period)-> @CURRMBR (Year) < Project > - FinishedDate)
    Do something...
    On the other
    Do something


    Please help me on this. Sorry for my bad grammar. Please ask if there is something not clear

    Thank you very much
    Van Huy.

    Published by: Van Huy on 29 January 2013 01:14

    Published by: Van Huy on 29 January 2013 02:24

    Published by: Van Huy on 29 January 2013 02:25

    Published by: Van Huy on 29 January 2013 18:04

    Here's what I did. Post for which may later cover

    VAR FM; / * End of month of the project.
    VAR EXERCISE; / * Year of the project terminated * /.
    VAR CM; / * Capture the current month on FIX declarations * /.
    VAR CY; / * Capture current year on FIX declarations * /.

    DIFFICULTY (@RELATIVE ('year', 0), @RELATIVE ('period', 0), @IDescendants ("core projects")...)

    FY = @ROUND ('TGHT'-> ' NA contract "-> 'FY06'-> ' NA period" / 10000, 0);
    FM = @MOD (@ROUND ('TGHT'-> ' NA contract "-> 'FY06'-> ' NA period" / 100, 0), 100);
    / * For FY13 back 13... */
    CY = @JgetDoubleFromString (@CONCATENATE ('20', @SUBSTRING (@NAME (@CURRMBRRANGE (year, Lev, 0, 0, 0)), 2)));
    / * Value CM set based on perceived period on the DIFFICULTY of statement * /.
    IF (@ISMBR ("Jan"))
    CM = 1;
    ELSE IF (@ISMBR ("February"))
    CM = 2;
    .....
    ELSE IF (@ISMBR ("Dec"))
    CM = 12;
    ENDIF

    IF (CY< fy="" or="" (="" cy="=" fy="" and="" cm=""><>
    Do something...
    ON THE OTHER
    Do something...
    ENDIF
    ENDFIX

    Published by: Van Huy on 19 February 2013 23:10

    Published by: Van Huy on February 20, 2013 19:46

  • Get the date of the previous year

    Hi all

    How can I recover date from the previous year, based on today's date, if I have a data type 'date '.

    Marwim wrote:
    Hello BluShadow,

    You should know better ;-)

    select date '2004-02-29' - interval '1' year from dual;
    
    ORA-01839: date not valid for month specified
    

    Well, today he works.

    Concerning
    Marcus

    Edited by: Marwim the 13.10.2011 17:06

    Ah, good point. Really, it's oracle who should know better. It should do the same thing as:

    select add_months(date '2004-02-29',-12) from dual;
    
  • compare the value of previous line with the current value

    I need to compare the previous value with the current value. All Oracle functions could there be to do?
    Something similar as a result.
    If previous (Amt {}) > Current (({Amt}) then 0 Else Null.)

    Something like that?

    SQL> WITH test_data AS
      2  (
      3          SELECT 107019 AS ID, 1583 AS AMT FROM DUAL UNION ALL
      4          SELECT 107019 AS ID, 1572 AS AMT FROM DUAL UNION ALL
      5          SELECT 107019 AS ID, 1572 AS AMT FROM DUAL
      6  )
      7  -- END SAMPLE DATA
      8  SELECT  ID
      9  ,       (CASE
     10                  WHEN LAG(AMT,1) OVER (PARTITION BY ID ORDER BY ID) = AMT THEN NULL
     11                  ELSE AMT
     12          END) AS AMT
     13  FROM test_data;
    
            ID        AMT
    ---------- ----------
        107019       1583
        107019       1572
        107019
    
  • Why can't I download the update for Acrobat/reader? It blocks simply, a problem that also took place in previous years!

    Adobe Acrobat/Reader appears as a stale version, but when I click in the list of shown modules needing to be updated I takes me to a site that is blocked and then with a message "Preparing installation".
    Go to other sites Adobe gives the same result.

    Try to download the full version of the Adobe Reader Installer and uninstall the current (s) before installing the new version of the Adobe Reader software you have downloaded.

  • InDesign CC closes on opening a separate, previously created with this version of the program work very well.

    What can I do maybe? Tried to restart the computer and reinstall the program. I need the current file!

    Any help much appreciated. Thank you.

    This could help with the problem of CC app: App does not open. Wheel of progress turn continuously

  • Column filtering for the current year measure

    Hello

    I'm blocked up with the question, we have a report of three tables D1, D2, and F1. Where D1 is of time dimension. We now report D2 and F1 with action, and the report is placed on the dashboard which is having the guest of the year.

    F1 is joined with dimension D2 and D1 time as well, the requirement is in the report we measure column say X should always show the values for the current year, while others displayed according to the prompt values... In short, I want to show the column to measure for the current year, even if the user selects the value of prompt for year earlier and it must not change the values.

    Please let me know, how to get there.

    Thanks in advance

    I am able to do this by following steps.

    1. I created a column in the MDB layer with similar to above said Srini case statement.
    2. Then I made the logic level of the time dimension column at ALL. So obiee ignores / filter join with the dimension of time to this measure, and the measure will always displays the data from the current year according to the case statement.
    3. If I did not this measure to all levels at the logical level, it's not working to the dashboard, when we change the year with the previous year it shows null values or zero according to the instruction box.

    Thank you.

  • History shows that the current session. No history of a previous session.

    Firefox 41.0.1 Windows 8.1.
    Since the update to version 38 (?) 'show history' shows only the current session.
    I have since uodated against 41 with no improvement, bookmarks have remained stable.
    I tried: -.
    Delete Places.sqlite
    Re-install
    SafeMode (no addons)
    Disablimg AVG and defender
    Wisecare and CSA Disablimg

    Changing privacy options:
    Toggle the custom setting remember history/use
    Toggle Private mode on/off
    Clear history displayed/hidden power

    Created a new profile with the Profile Manager.

    Checked the owner and access control of all files and folders in the profile, all full access and read only =.

    Installed the "Housekeeping" module and run it.

    Can anyone suggest any other delicious dishes, or is this a bug of FF running under Win 8.1?

    It creaks! Finally! I think so. I did a positive negative control.
    After a lot of installation and reinstallation of FF. (Why the standard uninstall leaves as many orphaned files program / files / registry entries?) When I decide the uninstall, everything must be removed!)
    Finally, I uninstalled the newer version of the CSA. Even if all the options for the 'cleaning' and 'monitoring' Firefox were off, it seems that it was ups that prevented the record of history. Once that was removed and then history began to be recorded. She did not used to happen. I used the previous versions for many years without problem, but it seems that one of the recent updates (version unknown) started blocking the history of FF.
    (For obvious reasons, I have re - install CSA just to prove the point.)
    PS at the moment, I'm also stay with the version of FF 39

Maybe you are looking for