Current year data compare with pervious year

Hi Experts,
I have created report1 with display the default date data. And we have Date between filter, based on the filter the reports data is changeing.
My Question is we have another report2 below the report1 but report2 should display exact date of last year.
i.e. if default date is 29/03/2010 and 30/03/2010 for report1 and
the report2 should be display the data for exact 29/03/2009 and 30/03/2009 and if date filter may change the report2 also change.
Note : Both reports are created from same table.
Thanks,
Balaa...

Hi Balaa,
you can creat a filter like this:
TIMESTAMPADD(SQL_TSI_YEAR,-1,date)
This retuns the date of the last year.
I hope it helps.
Regards,
Gianluca

Similar Messages

  • How to compare table's date field with dropdown year field

    Hi All,
    I have one requirement to display the selected rows from a database table based on the selection of drop down.
    Here, I have one dropdown of year(like 2009,2010,....) and I have one database table which contains one field with "DATE".
    Now, I want to compare table's DATE field with my dropdown field.
    Problem is that table's DATE field is of type "DATS" and dropdown is of type INTEGER(or) STRING ...
    How to compare this fields?
    Can any one please give me solution for this...!
    Thanks in Advance!

    Hi  sreelakshmi.B,
    try the following:
    DATA lt_dats        TYPE TABLE OF dats.
    DATA l_dat_i        TYPE          i.
    DATA l_dat_c_4(4)   TYPE          c.
    DATA l_dat_c_12(12) TYPE          c.
    DATA l_dats_from    TYPE          dats.
    DATA l_dats_to      TYPE          dats.
    *Move Date from Integer to Char
    l_dat_c_4 = l_dat_i = 2005.
    *Create Date From use in WHERE-Clause
    CONCATENATE '01.01.' l_dat_c_4 INTO l_dat_c_12.
    CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
         EXPORTING
              date_external            = l_dat_c_12
         IMPORTING
              date_internal            = l_dats_from
         EXCEPTIONS
              date_external_is_invalid = 1
              OTHERS                   = 2.
    IF sy-subrc <> 0.
    ENDIF.
    *Create Date To use in WHERE-Clause
    CONCATENATE '31.12.' l_dat_c_4 INTO l_dat_c_12.
    CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
         EXPORTING
              date_external            = l_dat_c_12
         IMPORTING
              date_internal            = l_dats_to
         EXCEPTIONS
              date_external_is_invalid = 1
              OTHERS                   = 2.
    IF sy-subrc <> 0.
    ENDIF.
    * Select records in range
    SELECT *
           FROM [DBTAB]
           INTO TABLE [ITAB]
           WHERE [DATE] BETWEEN l_dats_from
                        AND     l_dats_to.
    Regards
    REA

  • How to do a date validation with leap years

    I'm doing a date validation program in my Java class, and well it's pretty hard (for me that is). I have to be able to type in a date, have it say whether it's a leap year or not, and print out the number of days in the month. It seems pretty straight forward, but I get confused on trying to do the 'if else' statements and even the simplest things like getting the day prompting to work. >< The years I'm doing only goes through 1000 to 1999, so that's why those numbers are there. The program isn't complete, so if anyone could help show me what I'm doing wrong in the areas I'm working on then I'd appreciate it...and I'm still kind of in the basics of Java so if you do hint me with some code then I'd appreciate it if it was stuff that's not too advanced so yea.
    // Dates.java
    // Determine whether a 2nd-millenium date entered by the user
    // is valid
    import java.util.Scanner;
    public class Dates
    public static void main(String[] args)
    int month, day, year; //date read in from user
    int daysInMonth; //number of days in month read in
    boolean monthValid, yearValid, dayValid; //true if input from user is valid
    boolean leapYear; //true if user's year is a leap year
    Scanner scan = new Scanner(System.in);
    //Get integer month, day, and year from user
    System.out.print("Type in the month: " );
              month = scan.nextInt();
    System.out.print("Type in the day: " );
              day = scan.nextInt();
    System.out.print("Type in the year: " );
              year = scan.nextInt();
    //Check to see if month is valid
    if (month >= 1)
    month = month;
    else
    if (month <= 12)
    month = month;
    else;
    //Check to see if year is valid
    if (year >= 1000)
    year = year;
    else
    if (year <= 1999)
    year = year;
    else;
    //Determine whether it's a leap year
    //Determine number of days in month
    if (year == 1 || 3 || 5 || 7 || 8 || 10 || 12)
         System.out.println (Number of days in month is 31);
         else (year == 4 || 6 || 9 || 11)
         System.out.println (Number of days in month is 30);
    //User number of days in month to check to see if day is valid
    //Determine whether date is valid and print appropriate message
    // Dates.java
    // Determine whether a 2nd-millenium date entered by the user
    // is valid
    import java.util.Scanner;
    public class Dates
    public static void main(String[] args)
    int month, day, year; //date read in from user
    int daysInMonth; //number of days in month read in
    boolean monthValid, yearValid, dayValid; //true if input from user is valid
    boolean leapYear; //true if user's year is a leap year
    Scanner scan = new Scanner(System.in);
    //Get integer month, day, and year from user
    System.out.print("Type in the month: " );
              month = scan.nextInt();
    System.out.print("Type in the day: " );
              day = scan.nextInt();
    System.out.print("Type in the year: " );
              year = scan.nextInt();
    //Check to see if month is valid
    if (month >= 1)
    month = month;
    else
    if (month <= 12)
    month = month;
    else;
    //Check to see if year is valid
    if (year >= 1000)
    year = year;
    else
    if (year <= 1999)
    year = year;
    else;
    //Determine whether it's a leap year
    //Determine number of days in month
    if (year == 1 || 3 || 5 || 7 || 8 || 10 || 12)
         System.out.println (Number of days in month is 31);
         else (year == 4 || 6 || 9 || 11)
         System.out.println (Number of days in month is 30);
    //User number of days in month to check to see if day is valid
    //Determine whether date is valid and print appropriate message
    }

    Here are some helpfull hints for you:
    1. Your code is really hard to read, there are two main reasons for this. First, your indentation sucks. Second, you seem to be fascinated with saving two (ok four if you count the shift key) keypresses to avoid using { and }.
    2. Not using the brackets (you know { and } which you like to avoid) also is causing your code to do some stuff you don't realize or want to happen, or at least it would be if your code compiled.
    3. If statements require arguements, "year == 1" is an arguement, "3" is not an arguement. Each operator like the or operator ("||") is essentially a new if and requires a complete arguement. So the following code peice:
    if (year == 1 || 3 || 5 || 7 || 8 || 10 || 12)Literally translates to if year equals 1 or if 3 or if 5 or if 7 or if 8 or if 10 or if 12. Doesn't make much sense in english, and it doesn't make much sense in Java either.
    4. I am pretty sure "year" is not the variable you want in the code snippet above (the one used in hint 3), especially considering years 1, 3, 5, 7, 8, 10, and 12 are not between 1000 and 1999. You need to be really carefull not make these kind of mistakes when coding, because they are by far the hardest to track down and fix later since they don't really throw up any flags or anything at compile or run time. Take your time and think thuroughly about each line of code while coding it, it will save you tons of time in the long run.
    5. What exactly do you expect statements like "month = month;" to do? That translates as make month equal to month. Do you go to the bank and say " I have exactly $3.56 in my pocket, so I would like to deposite all $3.56 and then withdraw $3.56 and put it back in my pocket"? How do you think the teller would look at you? Teller would probably do it, but the teller would feel like he/she wasted time with you and that you are not really right in the head. Java feels the same way when you make it do the same thing, and you love to do it.
    6. Code like the following is all wrong, and for more reasons than pointed out in hint 5.
    if (month >= 1)
    month = month;
    else
    if (month <= 12)
    month = month;
    else;Let's say someone put 13 in as the month. It passes the first check because 13 is greater than or equal to 1. so month which is 13, now gets set to 13 (gee that was effective). Now we hit the else and things get confusing because you didn't use brackets or proper indentation (hint 1) so we don't know what your real intent was. Did you mean else do nothing, and the next if statement is then executed, or did you mean to just run the next if statement if the else condition was met? Fortunatly it doesn't matter here because the next if statement is failed anyways since 13 is not less than or equal to 12.
    So, we leave this code with month ebing 13, wait when did we add a 13th month to the calendar? Are you using the Jewish calendar? Could be, except even if I put 1234567 as the month your code would except it as valid, and I know no calendar with that many months. Try writing this in english first and translating it to jave, like i would probably say "if the month is greater than or equal to 1 and less than or equal to 12 then the month is valid." Course now what do you do if it is invalid? Hmm, maybe I would actually say "while the month is less than 1 or greater than 12 ask the user for the month" until they get it right.
    There are a few other problems, but most of them are probably things you haven't learned yet, and they are not show stoppers so we will let them fly. You already have a lot of work to do to make this better. But I do have one more really really big usefull hint for you:
    Never, ever, under any circumstances, should you ever ask in any way or even hint at asking for someone else to provide code solutions to your problems. So "so if you do hint me with some code then I'd appreciate it if it was stuff that's not too advanced " was a very bad thing to do, but fortunatly for you you followed it with proof you were trying to write the code yourself. Had the code you provided not been so full of problems it was obvious a beginner wrote it, you would probably have gotten much less cordial responses. I would seriously consider avoiding any implication of wanting code, at least until you become a regular poster here and people know you are not just looking to get your homework done for you.
    Hope some of this helps.
    JSG

  • Date compare with system date

    Given date time is in yyyyMMddHHmmss format, want to compare with system date time.
    ie given date time is greater than zero then go inside if block otherwise else block.

    I am using below code which always greater than zero. But I want to use compare to method to compare given date with system date and goto if or else condition:
    SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
             String delaytimeFormat = sdf.format(new Date("10/10/2009"));    
             System.out.println("delaytimeFormat: "+delaytimeFormat);
             long timeDiff = Long.parseLong(delaytimeFormat) - System.currentTimeMillis(); 
             System.out.println("timeDiff->"+timeDiff);
             String newCallbackUrl = null;
            if(timeDiff > 0){
                 s = s+" new URL"+"test" ;
                 System.out.println("if:->"+s);
            else{
                 System.out.println("else");
            }

  • Current year period comparison with previous year

    Hello Experts,
    i need to compare qty of
    period 01 2006 with period 01 2005-->for this period
    period 01,02 2006 with period 01,02 2005-->for next period
    period 01,02,03 2006 with period 01,02,03 2005 -->
    after that...etc...
    Note:
    -i am having time char fiscal year/period
    -now we are in period 02
    -to get this year period i am using the variable,
    "Cumulated to Last fiscal Year/Period" to restrict. so, this will give period 01 of this year.
    - is there any standard variable to get last years period
    - else, how to achieve this?
    Thank you very much.
    -Vam.

    Hi,
    u can try with the Variable: Cumulated up to Current Fiscal Year Period  0FYTCFP.
    i have not tried.its just an idea.
    from sap help:This variable denotes an interval from period 1 of the current fiscal year to the current fiscal year period.
    First the fiscal year variant, which serves as the input parameter for determining the current fiscal year, is defined.
    http://help.sap.com/saphelp_nw04s/helpdata/en/99/ae22419e2ab167e10000000a155106/frameset.htm
    or
    Variable: Cumulated up to Last Fiscal Year Period
    Technical name: 0FYTLFP
    Use
    This variable denotes an interval from period 1 of the current fiscal year to the period before the current fiscal year period.
    First the fiscal year variant, which serves as the input parameter for determining the current fiscal year, is defined.
    cretae 2 restricted keyfigures like this:
    RKF1:
    Quantity
    0FISCPER restricted by 0FYTCFP / 0FYTLFP
    RKF2:
    Quantity
    0FISCPER restricted by 0FYTCFP/0FYTLFP with offset '-1'.
    and use respective text variables to view Fiscal year/period value accordingly in RKFs.
    hope this helps.
    regards
    Message was edited by: c c
    Message was edited by: c c

  • I need to delete existing website data created with FTP years ago...Why is this so HARD?

    I know this haqs been re-hashed a milion times here on the board, but I don't want to keep calling in to the support number and getting people who have no idea what I am talking about trying to help me!
    I have an old legacy website or two sitting out there that I am tired of being charges web space for. I no longer need or want the files. I just want them deleted. What is the best way to do this? Why on God's green earth can't I find an easy solution to this? Please help!!!!
    Thanks in advance,
    John

    Reposting from britechguy's post here:
    To All Who Need Files Deleted From PWS That Were Created Via FTP Transfer:
    Do call Verizon High Speed Internet Tech Support at 1-800-VERIZON (1-800-837-4966)
    Expect that the Technical Support Representative may not be familiar with the issue you are calling about, but they may be.  In any case, be polite as this is not their fault.
    If the representative is not familiar with the issue, do tell them that you already know that this issue must ultimately be resolved by the Operations Support Center and that all you are asking for is that a ticket be created to delete all files from your Verizon PWS.
    Make sure to state, and ask that they note in the session notes, that you clearly understand that the deleted files are unrecoverable/cannot be restored under any circumstances once they are removed.  I say this because during today's conversations I was told that my previous request was put "on hold" because the prior representative had not specifically covered this information and they had been unable to reach me afterward to confirm that I knew it.
    Specifically request an e-mail or phone verification that the deletion of the PWS files has been completed.
    Expect that the deletion will take between 24 to 48 hours to actually occur.
    Be prepared to call back and make the same request again if it does not occur.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • Alert on Today's Data Compared with Previous Day Data

    Hi All,
    I've a report with multiple tabs having data like,
    Tab:1                                   Tab:2                                 Tab:3                          Tab:4
    Franchise: ABC                   Franchise                          Franchise                    Same as Tab:3
    Start Date:                           Start Date                          Month
    Operator: XYZ                     Operator                            Operator
    Incoming Node:N01            Outgoing Node                  Incoming Node
    Incoming Path:P01             Outgoing Path                    Incoming Path
    Incoming Count:2                Outgoing Count                 Incoming Count
    Incoming Mins: 10.63          Outgoing Mins                   Incoming Mins
    My requirement here is, I've want an alert on Percentage of Mins comparing its data with the previous day(Month for Tab 3 & 4) mins data. For now I've done this by creating a variable(with Relative Value Function) that stores the previous day or month's mins and stored the difference of these two data into another variable as Variation. I've put a percentage on the Variation variable and put a alert on it. It went well till here but, my requirement also has graphical alert on percentage. I tried adding the Variation variable and percentage and all available measures. But an error showed up with every try saying "Error in dataset values :#COMPUTATION"
    Is there any other to do this report?
    Note: I'm using WebI Rich Client v4.1 SP1

    I tried using Franchise(Dim) and with that i've used Incoming Count, Incoming Mins, Variation separately. But nothing worked.

  • Problem in date comparing with db2 database,query is not executing

    hi everyone
    i have one jsp page two text box
    1. one for start date
    2.second for end date
    and for date selection have used datepicker
    user selects the start date and end date .then clicks on view button
    then i am retrieving these two dates on next jsp page .uptp here is ok
    here i want display related data from db2 databse between these two dates(start date and end date)on next jsppage
    but it is giving error my db2 dtabse uses the format of YYYY-MM-DD
    the query i am not able execute
    String strsql ="select voucher_master.VOUCHER_TYPE,voucher_master.VOUCHER_NO,dd_master.CHQ_DD_NO,dd_master.DD_DATE from voucher_master,dd_master Where voucher_master.VOUCHER_ID = dd_master.VOUCHER_ID and dd_master.DD_DATE >=" + fromdate + " and dd_master.DD_DATE <=" + todate + "";
    it is giving error
    please help me

    Mutlipost: http://forum.java.sun.com/thread.jspa?threadID=5224616
    Why aren't you checking your earlier posts for replies? Don't multipost, it's irritating and wastes times and energy.
    People on the forum help others voluntarily, it's not their job.
    Help them help you.
    Learn how to ask questions first: http://faq.javaranch.com/java/HowToAskQuestionsOnJavaRanch
    (Yes I know it's on JavaRanch but I think it applies everywhere)
    ----------------------------------------------------------------

  • How to produce latest column date comparing with the rest of 6 columns??

    Hi Folks,
    I have columns like below:  I need my LatestColumn(new col) need to produce maximum callbacktime 
    the condition 
    So something like MAX(Callback1datetime (where Callback1Status IS NOT NULL), Callback2datetime (where Callback2Status IS NOT NULL), CallbackStatus3datetime (where Callback3Status IS NOT NULL),etc…)
    callback6Date Time has maximum time but callback6status has null then I need to skip this like above condition.
    Thank you very much for your time 

    hi Visakh 
    Thank you very much for your replay to my question,
    SELECT  t.Callback1DateTime,t.Callback1Status,t.Callback2DateTime,t.Callback2Status,t.Callback3DateTime,t.Callback3Status,t.Callback4DateTime,t.Callback4Status,t.Callback5DateTime,t.Callback5Status,t.Callback6DateTime,t.Callback6Status
    ,MAX(t1.dt) AS MaxCallBackDate
    FROM dbo.Client t
    CROSS APPLY ((Callback1DateTime,Callback1Status)
    ,(CallBack2datetime,Callback2Status)
    ,(CallBack3datetime,Callback3Status)
    ,(CallBack4datetime,Callback4Status)
    ,(CallBack5datetime,Callback5Status)
    ,(CallBack6datetime,Callback6Status))t1(dt,status1)
    WHERE t1.STATUS1 IS NOT NULL
    GROUP BY  t.Callback1DateTime,t.Callback1Status,t.Callback2DateTime,
    t.Callback2Status,t.Callback3DateTime,t.Callback3Status,t.Callback4DateTime,t.Callback4Status,
    t.Callback5DateTime,t.Callback5Status,t.Callback6DateTime,t.Callback6Status
    I am getting error like this ::::::::::
    Msg 102, Level 15, State 1, Line 4
    Incorrect syntax near ','.
    there was a typo
    SELECT t.Callback1DateTime,t.Callback1Status,t.Callback2DateTime,t.Callback2Status,t.Callback3DateTime,t.Callback3Status,t.Callback4DateTime,t.Callback4Status,t.Callback5DateTime,t.Callback5Status,t.Callback6DateTime,t.Callback6Status
    ,MAX(t1.dt) AS MaxCallBackDate
    FROM dbo.Client t
    CROSS APPLY (VALUES (Callback1DateTime,Callback1Status)
    ,(CallBack2datetime,Callback2Status)
    ,(CallBack3datetime,Callback3Status)
    ,(CallBack4datetime,Callback4Status)
    ,(CallBack5datetime,Callback5Status)
    ,(CallBack6datetime,Callback6Status))t1(dt,status1)
    WHERE t1.STATUS1 IS NOT NULL
    GROUP BY t.Callback1DateTime,t.Callback1Status,t.Callback2DateTime,
    t.Callback2Status,t.Callback3DateTime,t.Callback3Status,t.Callback4DateTime,t.Callback4Status,
    t.Callback5DateTime,t.Callback5Status,t.Callback6DateTime,t.Callback6Status
    Also i assume you're using version above 2008 as above syntax will work only from 2008 onwards
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Want to shedule a report in background with current system date

    Dear All,
    I want to schedule a report which is having date parameters in the  selection screen.
    What i want is that , every time in the schedulling period the report should run in current system date only with a variant.
    Would it be possible.
    Thanks in Advance.
    With Regards
    Shantanu

    Yes possible by 2 ways.
    I) This way you can use the current date dynamically
    Go to your variants in change mode,
    1. Check the box 'Selection Variable' for date.
    2. Click on selection variables
    3. Choose 'D' for dynamic date calc
    4. Choose current date and save.
    II)Default it in code
    Default sy-datum for the selection variable.
    Hope this helps.

  • Settings:General:Date & Time: Year date is 2554BE

    Hi, can anyone help me.
    The Problem: Settings:General:Date & Time: Year date is 2554BE - the year date selection will only give me as choice of about 50 years at 2554 BE - when I spin the wheels to select 2011 - the year dates are ghosted and the wheels automatically flip back to 1st January 2554 BE.
    This problem is affecting my date, times in Email and Calendar and some APPS where I am trying to book accommodation, flights etc.
    I noticed this after an update syncing session late Nov, early Dec. I didn't understand what the ramifications would be until I have started to use my travel apps for booking things.
    I have tried syncing my IPhone 3 to Itunes in the hope it would fix it, but it hasn't to date.
    regards
    Dianne

    It sounds like you are using the wrong calendar. Go to Settings, General, International and make sure the Calendar setting is Gregorian.

  • CURRENT YEAR SALES DATE PARAMATER AND PRIOR YEAR SAME DATE RANGE

    I am pulling data from a SQL view dbo.view that has current and historical SOP data by line.  The date paramater is a date range,  uppr date and lower date formulas are in the report.  I need to include prior year SOP data for the same prior year date range in the detail.  I have tried adding the view in twice with no luck, just duplications.  Ultimately I want to supress the detail and only show the totals by customer so it is comparitive.  Thanks for your help.  Jayne

    OK
    lets simplify it
    get a test data source with some simple dates in it.
    get the report logic working.
    it looks like you have the right formula ideas but lets go for
    @upperthisyear
    @upperlastyear
    @lowerthisyear
    @lowerlastyear
    then assuming a date field of {table1.date}
    the record selection would be
    if (@upperthisyeare > {table1.date} and @lowerthisyear < {table1.date}) or (@upperlastyeare > {table1.date} and @lowerlastyear < {table1.date}) then 1 else 0
    I would test this by using it as a formula field with the test data.

  • Displaying current and previous 5 Year data in a bar graph

    Hi ,
    My requirement goes like this .....
    I have to show revenue (measure) data based on current year (period dimension) selection (from a dashboard prompt) and previous 5 year data's as well .
    i.e. if user selects 2013 , the bar graph will display 6 bars ... 2013,2012,2011,2010,2009,2008.
    I am trying to achive this with filter on Year column , on the main report ....*"is based on results of another analysis"*
    But haven't made any progress .
    Thanks
    sayak

    sayak wrote:
    Hi ,
    My requirement goes like this .....
    I have to show revenue (measure) data based on current year (period dimension) selection (from a dashboard prompt) and previous 5 year data's as well .
    i.e. if user selects 2013 , the bar graph will display 6 bars ... 2013,2012,2011,2010,2009,2008.
    I am trying to achive this with filter on Year column , on the main report ....*"is based on results of another analysis"*
    But haven't made any progress .
    Thanks
    sayakFollow this link. It will give you greater flexibility for you end users and therefore a better report.
    http://oraclebizint.wordpress.com/2008/03/11/oracle-bi-ee-101332-rolling-yearmonth-and-date-filters-moving-window-filters/

  • Pay_us_wages_w2_v is not picking current year data?

    Hi,
    pay_us_wages_w2_v tabe is not getting current year data, only is getting previous year data.
    Like
    SELECT sum(w2_wages_tips_compensation)
    FROM   pay_us_wages_w2_v puw
    WHERE  puw.assignment_id = 40291--:assignment_id1
    AND
    puw.year     
    = '2013'--TO_CHAR(:P_PAY_DATE_END,'RRRR');
    Please let me know , if any body idea?. We have to run any Program?
    Thanks,
    Ramu

    At first I was not happy. I didnt understand how it worked. I wanted to keep my unlimited. It may not work out for everyone but it does for me.  I have two accounts. one has 5 lines and the other has two. I pay 150 for two lines on one account. I have the 30 dllr 2 gig package. Then I have a dumb phone for the second line. My other account I have 5 smartphones. I pay around 350 for that account.
    Now with the new plans I can combine BOTH accounts into one and make one BIG family plan. All the users in my account do not go over 2 gigs except one but he never goes over 5. Ill get a big data package and save some money. On top of that its UNLIMITED minutes and text which is what we use it for.  Ill be paying around 350ish with a big data package..
    That is 150 dllrs in savings!! Now since I can add usage controls I can control how much data that one person uses.
    Not sure about you guys but to me this is #winning status!

  • How to model in RPD aggregate tables with different years of data

    Can someone let me know how to accomplish the following in OBIEE?
    I want to create a logical fact table with multiple logical table sources. I have an aggregate table that only stores current year data. In OBIEE, if a user builds a report using data from the current year, I want the query to hit this aggregate table. My base fact table however stores all years of data. If a user builds a report using data from prior time periods, I want the query to hit the base fact table.
    And if you're curious, the aggregate only contains current year data because the ETL needs to do a full load each night due to the complexity. The high volume of data and the amount of time it takes to populate this aggregate means we only have time to populate the current year data.
    Thanks in advance.

    Yes this situation is both an aggregate table and fragmented data. I already modeled the aggregate table correctly specifying the content logical levels.
    I'm not familiar with how to set the fragmentation logic. I see the fragmentation content section. What do I enter in this section to specify that my AGG table is for current year data? Do I need to enter something for both logica table sources?
    Please let me know if there is a link with examples or an explanation. Appreciate the responses.

Maybe you are looking for

  • Application Developed in LabVIEW 8.20 (on WIn XP) will run on Windows Vista?

    Hello: I'm developing an application in LabVIEW 8.20 on Windows XP, I've tested the executable (*.exe) on Windows XP with no problems, however, my client is migrating the OS of their PCs to Windows Vista and I've been asked if the application will wo

  • Due date field in F-48

    HI I need to get the due date field to appear on both the debit as well as credit sides of a posting in F-48 vendor down payment. Right now for example if i do the following transaction: Credit bank account    Rs 10,000     Due date:01/01/2009 Debit 

  • Smart playlists disappeared in iPhone after syncing

    Is there a way to make my Smart Playlists reappear in Music?  After recently syncing my iPhone, all of the smart playlists disappeared on the phone itself. The entire library is on the phone as well as playlists I created, but the standard smart play

  • How to display "%" with %A  CKF

    Hi gurus, I have 2 CKF based on %A, its both give me the right result. My problem is : - one CKF is cumulated and shows me "%" after the calculation - the other is not cumulated and doesn't show me "%" after the calculation If anybody has an idea ...

  • I delete my camara app on my 4s how can i get it back

    i delete my camara app on my 4s how can i get it back i delete it from da home screen bt when serch it i can c it bt i wants da app on my hm screen