Current period, Previous Period and Sum from starting to current period

Dear Friends,
I have a typical requirements to push the following 3 KF into a .CSV format from BW CUBE.
1.Amount of Current period,
2............Previous Period
3............Sum from starting to current period
Cube is stored at period level..
Can anyone through me your views of doing, posibilities and prefered ways of the 2 approaches below
a) Infospoke, Badi enhancements
b) New cube to caliculate abouve things and then infospoke
c) Query and useing RSCRM... tool to run the query to dump into .CSV
Thanks for your valuable time.
regards,
hari

Another possibility is taking a snapshot to a transactional ODS using the APD. This creates an outbound layer that you can then use Open Hub to push out.

Similar Messages

  • HT4483 Trying to download previous apps and videos from previous lost ipod to recently purchased ipod

    Trying to download previous apps and videos from previous lost ipod to recently purchased ipod

    Holmes girl wrote:
    Trying to download previous apps and videos
    Make sure you are using the Apple ID that made the Original Purchase/Download.
    More Info here  > http://support.apple.com/kb/HT2519

  • HT3805 My Aperture 3 just crashed, i.e., it would not open and showed an error message -1712.  I sent the current version to trash and reinstalled from my A3 disk, but after installing again it still says "Aperture can not open -1712."

    My Aperture 3 just crashed...by that I mean it would not open and showed the message: "Aperture 3 cannot open.  -1712."  I have the latest A3 version and had been using it continually for 3 years.  This was the first crash.  And it will not open as often as I tried.
    I am using a 13" Macbook Pro with OSX 10.8.5.
    I tried sending the A3 application to trash, and reinstalling from my A3 disk.  Install message said "installation successful."  But A3 would still not open and gave same message with -1712.
    Any suggestions what I should do or try?
    Thanks

    Perhaps your Aperture library was damaged, when Aperture crashed. What where you doing, right before the crash happened?
    - If you installed new software - programs, plug-ins, preferences panels, check, if they are compatible.
    - If you imported new images, you may have imported corrupted files, that crash Aperture.
    Can Aperture launch correctly, when you try to open a new Aperture library?
    Hold down the options-key, when you launch Aperture and select to create a new library. Import a few images. Does that work?
    If Aperture will launch on a new Library, try to repair your current library. Hold down the key-combination option-command ⌥⌘  firmly while double-clicking the Aperture library to open in First Aid Mode. Hold the keys down, until the panel appears, and then try  the First Aid Options in turn.
    I have the latest A3 version
    Is it Aperture 3.4.5? The latest Aperture 3.5.1 will not work with Mt. Lion.

  • How To Start Forms and Reports From Start Command

    Hi All,
    How to start Oracle Forms and Reports in Oracle8i My OS is Windows 2000.Please tell the procedure to get into forms and reports.
    Otherwise we have to install other software for Forms and Reports.
    Thanks
    Sujan

    Sujan,
    what does the database have to do with starting Forms and Reports ? If you are on Wondows2000 then navigate to the \bin directory if the Oracle Home you installed Oracle9iDS to. Type ifbld90 for Forms and rwbuilder for Reports design environment.
    If your ability to start Forms and Reports from the command line is your only exit criteria in evaluating software for a project , how far will you go with it?
    Frank

  • Count distinct  from a master table and sum from a detail

    Hello to all,
    I have  a query like as:
             select a,b,c,     SUM(fa.ip1) S1, SUM(fa.ip2)   S2
             FROM tab1 FI, tab2 FA
             where fi.x1 = fa.x1
             and fi.x2 = fa.x2
             group by    a,b,c;
    tab1's table is master table for tab2's table (one tab1 records there are   many tab2 records), (one to many relation)
    My question is, how can I get to sum of columns: ip1 and ip2 from tab2 Fa, with only count(how many) of rows of tab1? 
    Somethings similar to;
    Select a,b,c, count(distinct fi.x1, fi.x2 ) nrec_of_FI,   SUM(fa.ip1)S1, SUM(fa.ip2)   S2
    Thanks in advance

    Hi,
    Sorry, I can't tell what you want just by looking at code that does not do it.
    Whenever you have a problem, please post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) from all tables involved, so that the people who want to help you can re-create the problem and test their ideas.
    Also post the results you want from that data, and an explanation of how you get those results from that data, with specific examples.
    Always say which version of Oracle you're using (for example, 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002
    Perhaps you want to get the totals in 2 stages, like this:
    WITH  five_column_totals  AS
        select    a, b, c
        ,         fi.x1, fi.x2       -- For debugging only
        ,         SUM (fa.ip1)   AS prelim_S1
        ,         SUM (fa.ip2)   AS prelim_S2
        FROM      tab1 FI
        ,         tab2 FA
        where     fi.x1 = fa.x1
        and       fi.x2 = fa.x2
        group by  a, b, c
        ,         f1.x1, f2.x2
    SELECT    a, b, c
    ,         COUNT (*)             AS nrec_of_f1
    ,         SUM (prelim_s1)       AS s1
    ,         SUM (prelim_s2)       AS s2
    FROM      five_column_totals
    GROUP BY  a, b, c
    Notice that the sub-query called five_column_totals is essentially what you posted, except that there fi.x1 and fi.x2 are included in the GROUP BY clause.  That means the sub-query will hve a separate row for each distinct combination of x1 and x2, which you can COUNT in the main query, GROUPing only BY a, b and c.

  • How to get elapsed time from start of current day

    Hello,
    I've tried to use the DateDiff function to calculate the elapsed time, starting from 00:00:00:000 (Midnight of current day), but I'm getting hung up on how to inform the function of what date values it should use.  I could parse off the time section
    of the
    GetDate() function, but that doesn't seems a little klunky to me. 
    So, what I'm trying to capture is this (pseudo code): 
    Elapsed Time (int) =    Select DateDiff(seconds, Current Day.Midnight, CurrentDay.CurrentSecond)
    Any help is greatly appreciated.
    Cap

    Hello,
    So something like this? You can change it around, I used variables so you can see and check (and play with) the values.
    DECLARE @CurDay DATE = GETDATE()
    Declare @SecondsToDate INT
    SELECT @SecondsToDate = DATEDIFF(SECOND, @CurDay, GETDATE())
    SELECT @SecondsToDate AS SecondsPastMidnight
    -- do the check
    SELECT DATEADD(SECOND, @SecondsToDate, CAST(@CurDay AS DATETIME))
    Sean Gallardy | Blog | Microsoft Certified Master

  • HT1751 i cant play my songs in my itunes that i previously bought and burned from my CD's

    I can't play my itunes songs that I previosly purchased it keeps saying unable to locate file. Ever since i went to Geek Squad to reset my pc cuz it had a virus it started doing that. The problem is that Geek Squad backed up everything in a hard drive but i dont know what file is it in so i can locate it, its frustrating... Anyone that can help please?

    Hello cdignam,
    I understand you are wishing to transfer purchases from your iPhone 5 to an already-authorized computer. The following article outlines how to do so in iTunes 11:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    http://support.apple.com/kb/HT1848
    After connecting your device to the computer and its icon appears in iTunes, go to the File menu, then Devices, and choose Transfer Purchases from "(Your device name)".
    Or, you can Show Sidebar from the View menu, and then right-click (Windows or Mac) or Control-click (Mac only) your device in the iTunes Source list, then choose Transfer Purchases from the shortcut menu that appears.
    Please note that this feature works only for items that were purchased on the iTunes Store. Any items imported from audio CDs or acquired from other sources will not copy from your device to the iTunes library. Please see this article for more details.
    Thanks,
    Matt M.

  • Integration with Outlook - how to increment end date and time from start date/time

    Hi,
    I want to add a variable amount of time to an appointment start date and time in outlook, through vba in access.  Code below shows what I've done:
    ======================================
        Dim olApp As New Outlook.Application
        Dim olAppointment As AppointmentItem
        Dim myRequiredAttendee As Outlook.Recipient
        Set olAppointment = olApp.CreateItem(olAppointmentItem)    
        With olAppointment
            .Start = DateValue(strStartDate) + TimeValue(strStartTime)
            .Duration = intDuration
            .End = DateValue(strStartDate) + ????????
    =======================================
    What do I replace the ????? with so that it increments the start time by any duration I decide in minutes?  Using the duration doesn't seem to work and I also want to be able to have the appointment span a number of days, e.g. could start at 930am on
    Monday and end at 10am on Weds, but want to set the end time relative to the start time.
    Thanks,
    Chris.
    _________________________________________________________ Every day is a school day!

    I've tried that, but it throws out a datatype mismatch error :(
    It would be helpful if you posted the exact code you tried.  In my tests, setting teh .Duration property appears to work.  However, if you want to set the .End property to a specific number of minutes after the date/time of the .Start property,
    this works for me:
    With olAppointment
    .start = DateValue(strStartDate) + TimeValue(strStartTime)
    .End = .start + TimeSerial(0, intDuration, 0)
    End With
    Assuming, that is, that intDuration contains the number of minutes the appointment should last.
    Dirk Goldgar, MS Access MVP
    Access tips: www.datagnostics.com/tips.html

  • Why is that when I have my computer on and firefox open and I shut firefox and reopen I get the restore previous button and when I start my computer there is no restore previous button and I have to reset my tabs. This is very unproductive

    I have asked this before and did not get a answer. Is there a way I can reinstall version 3. Also, how do I get to the tools option can't find

    There was a different question here which I replied to, when I hit Post Rely, this question came up as the one my reply is to! It was from Larry also, but just the same, Why did the reply jump from one question to a different unrelated one? I hope Larry gets the problem he has fixed!
    Hey Larry, I had the same problem when I down loaded Fire Fox 4.0! Go to the upper left corner of the screen. Is there a small red box with an arrow that says Fire Fox? Left click there and a new menu drops down. Go to Options DO NOT CLICK!, scroll over to Menu Bar and left click on it and the red box goes away and leaves all the options your looking for! To remove it back to the other way, left click on Views, scroll down to Toolbars, DO NOT CLICK!, scroll over to Menu Bar and click on that and it will revert to the original set, with red Fire Fox bar in corner again! Have a Nice Day! :)

  • Set default fill and stroke from start up?

    Hello, would it be possible to set no fill and 1px black stroke as the default fill when I start up illustrator?

    Yes. Just change the Default Graphic Style in whatever New Document Profile you use most. You can do that by making an object with the attributes you want and Option(Alt)-dragging onto the left most Graphic Style and save the file.

  • HT1766 how do i acess my previous pictures and videos from my iphone , that was stored on a different computer

    is it possible to retrieve photos and videos that was uploaded to itunes account but on a different computer

    I'm not clear on what it is you are trying to do or why.  Certainly, if you have access to the other computer.  Put it this way.  The files are either on your phone, the other computer, or in iCloud if you send bckups there (I'm not sure about videos).  There's also different grouping for these items depending upon the source.  As you can see it gets complicated, especially when we don't get the details from you.  Are these photos you just took or ones you uploaded from your computer?  What's the origin of the videos?
    Photos missing after iOS upgrade - https://discussions.apple.com/message/19787456 - different groupings for photos on mobile device and recovery options

  • HT201272 i deleted a book i previously purchased and deleted from itunes

    I deleted a couple of books from my account and now they dont show up as previouly purchased. when i find them in the store, i can not download them without repurchasing them.

    If they are hidden are you able to unhide them : hiding and unhiding ? If you are on iOS 6 on your iPod then hiding doesn't work, and you also can't unhide items, but you should be able to see what is hidden and be able to re-download them

  • Mdx : Sum up the measure from start but need only non empty rows

    Hi All
    i have created a calculated measure where it suming up all its previous avaialable values based on Date dimension.
    Everything is working but we are getting all rows from that datetimension . how can get only till current date,
    SUM(NULL:[Date].[Hierarchy].currentmember,[Measures].[SIMID])
    Surendra Thota

    Hi Surendra,
    According to your description, you want to calculate the sum up the measure from start for those non empty rows, right?
    In this case, please try the query below.
    WITH MEMBER [Measures].[Sum from start]
    AS
    SUM ({NULL:[Date].[Calendar].CurrentMember},
    [Measures].[Internet Sales Amount])
    SELECT {[Measures].[Internet Sales Amount],[Measures].[Sum from start]} ON 0 ,
    nonempty([Date].[Calendar].[Calendar Year].MEMBERS) ON 1
    FROM [Adventure Works]
    Result
    Besides, here is a blog which describe various way to calculate running total, please see:
    http://blog.sqltechie.com/2011/01/various-way-to-calculate-running-total.html
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here.
    Charlie Liao
    TechNet Community Support

  • Will installing PS4 and ACR 5 wreck my current PS3 and ACR 4?

    If I installed PS4 (and of course ACR5) into a separate directory in my hard drive, will that stop my current copy of PS3 and ACR4 from working? I don't mind if new versions takes over the file extension associations, but will it totally corrupt my current versions making them unusable?

    If I can humbly add an extra comment to the DEFINITIVE EXPERT answers;
    Installing the upgrade version of CS4 without removing CS3 also leaves CS3 functional. Now I just have to figure out if I can safely remove CS3 without messing up anything.
    However this is the paid for (upgrade) version. With an install of a trial version a couple of numbers back, removal of the trial damaged Bridge and after a lot of troubleshooting, I had to completely reinstall the whole earlier suite (I have CS2 suite as well) to get back. Since that was an upgrade as well it ended up being a painful and long winded recovery.
    The best solution is just to buy whatever version of CS4 you qualify for and forget about trials. There are a LOT of really useful improvements as well as a big leap with layers and masks and non-modal edits. Brilliant!

  • How do I keep iPhoto and iTunes from loading at startup or wakeup from sleep?

    I'm trying to keep iPhoto and iTunes from starting up each time MacBook Pro restarts or wakes up. Any help would be appreciated.
    Thanks,
    Unkei

    Close the windows and quit the applications from the menubar before shutting down the computer.
    System Preferences > Users & Groups > Your account > Login items.
    Click the lock, authenticate and remove those applications from Login items.
    Best.

Maybe you are looking for

  • Transfer posting with MT 321

    Hi PP/QM Expert, I am facing a problem while Transfer Posting using M Ty 321... Performance Assistance giving the solu as follows The inspection stock should be increased, although an inspection is not foreseen for the current goods movement. The ins

  • EXIT NAME OR BADI FOR FIELD IN MIGO TRANSACTION

    Hai all, In MIGO transaction,  I want to know the BADI or EXIT NAME in which the following fields are avilable . Fields name: exgrp, EXCISE_ACTION exact screen field name is : J_1IEXHEAD-EXGRP                                          J_1IEXHEAD-EXCIS

  • The 15 puzzle problem !!!

    hey , can nebody help me with the code of the autosolve solution of the 15 block puzzle...or atleast the algorithm that is to be used .....???? The program requires the computer to solve the puzzle .....oe move at a time ..... How will i go about it

  • I downloaded some books that appeared to be in English but they aren't, how can I get my money back?

    I downloaded some books that appeared to be in English but they aren't, how to I get my money back?

  • Title Case Indesign Script?

    I have paragraph/character styles set. But I need a script to change these to title case (currently all lower case). I know there is a script, but the only ones I have come across seem to be for CS5 or below. I'm currently on CC 2014. Any sources for