How to display Previous Entire QTR  bookings

Hi All,
I have one requirement, my client need to display the records are previous entire QTR bookings and Previous Year QTR Bookings.
My ETL team created one Agg table based on Date level. I joined with date dimension table but I am not able get proper result values.
The user input parameter should be give date like 05/10/12 or 16/10/12. Records should be displayed entire quarter Values. But if any Dimension Columns(Geo, Channel and Product) to be added reports based on that values should be changed sum should be displayed entire QTR Values on combination of dimension columns.
The Logic should be implement in RPD level only not in Answers Level.
Report Columns are
Date PRV_QTR_BKG PRV_YEAR_QTR_BKG
05/10/12 100 100
(OR)
16/10/12 100 100
Thaks,
Raja

Hi MK,
My requirement is displayed in bellow columns
Ex:
Date Geo PRV_QTR_BKG PRV_YEAR_QTR_BKG PRV_ENT_QTR_BKG PRV_ENT_YEAR_BKG
05/10/2012 US 30 50 200 300
05/11/2012 IND 35 40 200 300
Conclusion:
PRV_QTR_BKG should be calculate on user parameter date like 05/10/2012 means 2012 Q1 in 40 days sum of bookings with combination of dimension columns like geo, product, channel. Same as PRV_year_QTR_BKG
PRV_ENT_QTR_BKG should be calculate on same parameter but sum(90) days bookings with combination of dimension columns like geo, product, channel. Same as PRV_YEAR_ENT_QTR_BKG
Thanks,
Raja

Similar Messages

  • How to display the entire application in two different languages in apex

    Hi,
    How to display the entire application in two different languages in apex...
    For example i need to display each item in both English and Hindi..
    To achieve this initially i have the select the language otherwise the item label alone ll be displayed in both languages ...
    Anyhow how it ll be apex is it possible
    Regards,
    Pavan

    Hi pars,
    http://www.packtpub.com/sites/default/files/1346-chapter-6-creating-multilingual-apex-applications.pdf?utm_source=packtp…
    In this link also i struck in
    In page 10  of that document
    The application is now ready to be translated. Everything is in place to run it in any language imaginable.To ca ll the application in another language, change the URL of your application to the following:
    http://yourdomain:port/pls/apex/f?p=&APP_ID.:&PAGE_ID.:&SESSION_ID.:LANG:NO::FSP_LANGUAGE_PREFERENCE:nl
    This example will call the chosen page in the application and show it in the Dutch language instead of in English. To select another language change the property nl at the end of the URL to your desired language code.
    Thanks alot for ur suggestions.kindly provide more inputs..............

  • How to display previously entered data in TableModel

    This post is continued from the last one. I was having problem displaying previously entered data into TableModel. someone suggested whether my TableModel is persistent.
    I am sorry to say I am not sure how to make TableModel persistent. Can someone tell me what to do.
    Following is my implementation of TableModel:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.table.*;
    import java.util.*;
    import java.io.*;
    public class UsersModel implements TableModel {
    public static final String[] colNames ={
    "Usernmae",
    "Location"
    public static final Class[] colClasses ={
    String.class,
    String.class,
    public static final int
    USERNAME_COL = 0,
    LOCATION_COL = 1;
    //used to hold a list of TableModelListeners
    protected java.util.List tableModelListeners = new ArrayList();
    protected java.util.List data = new ArrayList();
    public static void main(String []args){
    new UsersModel();
    }//end main
    public UsersModel(){
    public void add(Users u){
    data.add(u);
    and when I need to add new users, I do it in the following way:
    Users u= new Users(n,l);
                        model.add(u);
                                  table.setModel(model);
    I hope someone can help

    Please post the entire class, this certainly won't compile because it does not implement all the TableModel methods. Also, why not base it off of AbstractTableModel?

  • How to display the entire RSS article in Mail?

    OK, this is what I really thought RSS in Mail was going to be... Since I only have access to email at work and no web browser, I had hoped to forward all those RSS feeds to my work inbox so I could then read the paper or whatever, while still looking like I'm at my desk doing work! Ha!
    So, how can you get Mail RSS to display the entire article right in Mail so I can use the forward feature and forward all those articles that I want to my work email address?
    Any ideas would be greatly appreciated!
    This way I don't have to click on my web browser, "Email article", as they would already be in my mailbox ready to be forwarded!
    Thanks.

    RSS (http://www.rssboard.org/rss-specification) is an open format that allows users to aggregate content from different web-sites into a single "channel". The standard has very few "required fields" that boil down to:
    title
    brief description
    link
    The rest is optional, i.e. up to the publishing website to decide whether to make available or not. It is also important to know, that many RSS feeds refer to content that is protected by copyright and hence must be reproduced under the terms decided by the publisher.
    Full text is not an optional field of RSS. Some websites may decide to use "brief description" to feed an entire piece of content, but that is not a standard behavior.
    In other words: what You're looking for can not be achieved through RSS feeds. Getting back to Your original problem - no web access at work – I'm wondering: how come You get RSS feeds and can not read the web pages? RSS feeds are using the same protocol (HTTP) as web pages and unless there's a very sneaky firewall involved, Web browsing should not be a problem.

  • How to display previous settlement rules (CJ70)

    Hi,
    Is there any transaction code to view the list of settlement rule from CJ70.
    We settle from 1 WBS - 1 AUC - many Fixed Assets
    After I made final settlement rules in CJ70 and run CJ88, the lines of settled items are gone. How to display the list of previous final settlement rules (i.e this WBS has been settled to what assets)
    Currently, I could get the list from FBL3N, find the GL posting with WBS number, click Original Document then it will display previous settlement. Then I click settlement rules and it will display previous settlement rules. Any other way besides FBL3N? Because it will only display rules from particular WBS and I have to find the GL posting first.

    Go to CNS41/CN41. Select the WBS Element for which you want to see the settlement rules. Then Click on the Settlement Rule button. This will dispaly all the settlement receivers. i.e to AUC as well as the multiple  Fixed Assets.
    Hope it helps..
    Seek for some points if it helps.
    Thanks

  • How to display the entire double number without the Exponent

    I know this is silly, but please help.
    myString ="45.5"
    myBytes = Double.parseDouble(myString );
    convertedBytes = (myBytes * 1048576.0);
    System.out.println(myBytes + "MegaBytes = " + convertedBytes + "Bytes");
    prints:
    45.5MegaBytes = 4.7710208E7Bytes
    How do I output:
    45.5MegaBytes = 47710208.0Bytes

    Thanks,
    I think I am just going to go with
    println((int)Math.floor(mydouble + 0.5d));Note:
    - you shouldn't cast to an int, we never know (e.g. try with > 2048MB.)
    - you could use round(mydouble) instead of (long)floor(mydouble + 0.5d) (both are equivalent, but the first one looks clearer IMHO.)

  • OBIEE:How to display row/columns where no data is present in pivot results?

    I have a request from some team members to provide an OBIEE report of 7 teams and the number of open incidents for each team by week.
    I was able to create the pivot listing the teams vertically and the age (by week#: 1 week, 2 weeks, 3 weeks, 4 weeks & > 4weeks) horizontally.
    The dilemma I have is that of the 7 teams that have incidents tickets only 4 of them have data, thus only those 4 teams that have ticket data show up in my pivot. I would like to be able to reflect ALL 7 teams even if representing a dash or null value across the pivot for those teams that don't have data.
    Does anyone know if this is possible and if so, how would I do this? I've tried searching the internet and found out how to replace a null value with a dash in columns/rows when a cell is null. But not how to display an entire row (or column) where no data is present.
    Edited by: coutya on May 22, 2012 11:01 AM
    Edited by: coutya on May 22, 2012 11:02 AM

    You are correct; if there are no data at all, those teams won't show in a pivot table. NULLs or dashes only work if a particular column is null. There are two ways to accomplish what you wish. The first example I thought when I wasn't aware of being able to do a LEFT OUTER JOIN in Answers using the Advanced tab. The first method works nicely, though and is simpler to execute.
    Read my solution here:
    Re: Section Values showing NULL in Pivot
    To do the LEFT OUTER JOIN read this:
    http://gerardnico.com/wiki/dat/obiee/multiple_subject_area
    Both will get you what you want...

  • How to display the Previous years

    Hi
      CJE0 - 12KST1A costs:budget/actual/commt/rem.plan/assd
    How to display the previous years budget in above mentioned report. at present the report is showing only cumulative value of previous years,2009 and 2010.....
    My requirement is from 2005 to 2009 i want display the value in this report, please through some light on this.
    Thanks
    S.Murali

    Hi
    But i want check the previous years budget for some number of projects not one by one, because the number of project are more.
    The above mentioned solution is for one by one i can check the pervious years budget. But my requirement is collective.
    Thanks
    S.Murali

  • How to display entire name (0calmonth2) of a filter value into my workbook

    Hi people:
    I have 0calmonth2 filter value at the begenning of my query. When interval period is selected, in my query displays the abreviation of the period ("Jan-Jul").I have filled the text values for 0calmonth2, but the problem stills.
    How can I make in order to display the entire name of the interval January-July?
    Thanks in advanced. Points for helpfull answers

    Thanks for the tips:
    I've changed the bex description of the infoobject displaying long text.In my text variable I have checked the box "Visualize month filter/text" . Unfortunately I steel seeing "Jan-Jul", even when i put them individually. When I see help of my variable, y just see  values 1-2-3-4-5......without name.
    Any clue what I'm doing wrong?
    Thanks

  • Is it possible to display the entire list in Background ?

    Hi all,
    I have alv report(Oops) , it is grid display and having more than 300 columns , when i execute that report in background i am getting only 132 columns and 65 lines per page, Is it possible to display the entire list , If it is possible then how we can do that? if it is not what is the reason? .
    Thanks in Advance.

    Hi,
    If use Grid in BG u will get o/p In ALV List Itself, second thing is u will get Croped o/p bcos of Print Format 65255 , in this case u have to create/change a new Print Format only for BG jobs like 651000.
    for more info ask ur basis person to create a new print formats in such cases.
    Regards,
    shiva.

  • How to display data from a recordset based on data from another recordset

    How to display data from a recordset based on data from
    another recordset.
    What I would like to do is as follows:
    I have a fantasy hockey league website. For each team I have
    a team page (clubhouse) which is generated using PHP/MySQL. The one
    area I would like to clean up is the displaying of the divisional
    standings on the right side. As of right now, I use a URL variable
    (division = id2) to grab the needed data, which works ok. What I
    want to do is clean up the url abit.
    So far the url is
    clubhouse.php?team=Wings&id=DET&id2=Pacific, in the end all
    I want is clubhouse.php?team=Wings.
    I have a separate table, that has the teams entire
    information (full team name, short team, abbreviation, conference,
    division, etc. so I was thinking if I could somehow do this:
    Recordset Team Info is filtered using URL variable team
    (short team). Based on what team equals, it would then insert this
    variable into the Divisional Standings recordset.
    So example: If I type in clubhouse.php?team=Wings, the Team
    Info recordset would bring up the Pacific division. Then 'Pacific'
    would be inserted into the Divisional Standings recordset to
    display the Pacific Division Standings.
    Basically I want this
    SELECT *
    FROM standings
    WHERE division = <teaminfo.division>
    ORDER BY pts DESC
    Could someone help me, thank you.

    Assuming two tables- teamtable and standings:
    teamtable - which has entire info about the team and has a
    field called
    "div" which has the division name say "pacific" and you want
    to use this
    name to get corresponding details from the other table.
    standings - which has a field called "division" which you
    want to use to
    give the standings
    SELECT * FROM standings AS st, teamtable AS t
    WHERE st.division = t.div
    ORDER BY pts DESC
    Instead of * you could be specific on what fields you want to
    select ..
    something like
    SELECT st.id AS id, st.position AS position, st.teamname AS
    team
    You cannot lose until you give up !!!
    "Leburn98" <[email protected]> wrote in
    message
    news:[email protected]...
    > How to display data from a recordset based on data from
    another recordset.
    >
    > What I would like to do is as follows:
    >
    > I have a fantasy hockey league website. For each team I
    have a team page
    > (clubhouse) which is generated using PHP/MySQL. The one
    area I would like
    > to
    > clean up is the displaying of the divisional standings
    on the right side.
    > As of
    > right now, I use a URL variable (division = id2) to grab
    the needed data,
    > which
    > works ok. What I want to do is clean up the url abit.
    >
    > So far the url is
    clubhouse.php?team=Wings&id=DET&id2=Pacific, in the end
    > all
    > I want is clubhouse.php?team=Wings.
    >
    > I have a separate table, that has the teams entire
    information (full team
    > name, short team, abbreviation, conference, division,
    etc. so I was
    > thinking if
    > I could somehow do this:
    >
    > Recordset Team Info is filtered using URL variable team
    (short team).
    > Based on
    > what team equals, it would then insert this variable
    into the Divisional
    > Standings recordset.
    >
    > So example: If I type in clubhouse.php?team=Wings, the
    Team Info recordset
    > would bring up the Pacific division. Then 'Pacific'
    would be inserted into
    > the
    > Divisional Standings recordset to display the Pacific
    Division Standings.
    >
    > Basically I want this
    >
    > SELECT *
    > FROM standings
    > WHERE division = <teaminfo.division>
    > ORDER BY pts DESC
    >
    > Could someone help me, thank you.
    >

  • Display the entire path to the term in the field option programmatically

    hi,
     I am having hundreds of doc libs with a  taxonomy column .now i want to change the property diaplay format:
    Display the entire path to the term in the field option, programmatically.
    can anyone pls help how to achieve this. i am thinking of writing  a consoel appln which iterates through all the sub sites on my site collec and  all doclibs and want to access this taxonomy columns and change this  display format .
    but i am stuck with whats the property responsible for this.
    help is appreciated! 

    hi Benjamin,
    Please try IsPathRendered Property of the taxonomy field. It is a Boolean field which related to display format of a taxonomy field.
    FALSE - Display term label in the field
    TRUE - Display entire path of the term in the field
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.taxonomy.taxonomyfield.ispathrendered(v=office.14).aspx
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • How to display menus on 40" TV

    I just started connecting my MB to a 40" Samsung LCD TV via a mini display port to HDMI cable. The picture is fine except the menu dos not show on the TV. I have tried the different display resolution preferences and that doesn't work. Should I be able to display the menu and if so, how?
    Thanks.

    The "Overscan" option in Mac OS X's Displays panel only applies to analog TVs (in fact it isn't even available unless you are using one of Apple's video converter that's outputting NTSC or PAL signals). Or, at least that's been my experience with my MacBook when connected to my high-definition digital TV.
    When you connect to a high-definition TV using HDMI or DVI for all intents and purposes you are connecting to a computer monitor and thus your TV must have a setting that allows it to behave as such. On my Toshiba Regza high-definition LCD TV this is called its "Native" picture size mode (as opposed to other settings like "Natural," "4:3 HD," "TheaterWide1," and others). On my Toshiba the "Native" mode is described as follows (in the user manual):
    Native mode scales the video to display the entire picture within the borders of the screen (i.e.
    no overscanning).
    However, I think support for such scaling and picture handling is dependent on the manufacturer and thus it's possible that not every HD TV will offer these options.

  • How to display dates on which the field of an infotype is changed

    there are two fields   in an infotype and both the fields are changed on different dates then how to display those dates on which the two fields are changed

    Hi ankit,
    If you want the change log for one infotype with one two fields, then write one custom program with following logic. If you want the log for multiple infotypes for multiple fileds then you have to use that program 'RPUAUD00'. Read the documentation of the program to check how to use it.
    select * from pa0000 into table it_pa0000
                                   where pernr = v_pernr.
    sort it_pa0000 by begda descending.
    loop at it_pa0000 into wa_pa0000.
    write your own logic to compare the previous record PERSG with current record PERSG.
    if this doesnt match then get the Changed DATE from AEDTM field.
    wa_pa0000-AEDTM = changed date.
    Else.
    continue with loop.
    exit.
    endloop.
    regards,
    Shrinivas

  • How to display a oracle table from a java program?

    How to display a oracle table from a java program.
    Hello friends, I have written a Java program, using oracle 10g as backend.
    I want to display a oracle table as output. Im not getting how to display oracle table as a output table.. Pls help me
    Thank you

    jayanthds, you're not going to get a satisfactory
    answer to this here. it's too big a task to justbe
    quickly outlined in a forum - the reply "all youneed
    to do is to query you table and return it asJTable"
    is worthless, for example, since the solution to
    any problem can be distilled to such a
    soundbite, if need be. doesn't make the solutionany
    simpler
    essentially you're asking "how do I write adatabase
    application?". all you'll get is snippets of code
    that, when fitted together, will eventually helpyou
    do this, but you'll spend days and days comingback
    saying "right, I've done that, now what?" until
    either you or the forum gets frustrated with the
    whole affair and the process stops
    there are entire books written about this subject,
    and countless tutorials and guides on theinternet.
    you're better off going down that routehehehe.well, it's true! I used to have a manager that would outline the solution to a problem in a few lines of pseudocode, and then firmly believe that the actual solution would be just as brief and simple. shame his pseudocode included such lofty abstractions as "reformat all data"

Maybe you are looking for