BW reporting question (want to break down the data for 13 weeks)

Hi All,
I am building one report in BEx and in that report I need to calculate the data for last 13 weeks.
What I want here is to breakdown the OTD to CT2R%   and Average delta for 13 weeks.  I mean I want to repeat the same calculation for 13 weeks.
How can I repeat this calculation and how can I restrict per week.
OTD to CT2R  (On time delivery to Cycle time to replenish)
See below the template of my report.
                              week 1                                   week 2
Item    OTD to CT2R%    Average delta   OTD to CT2R%   Average delta
x                 x                      x
Thanks,
Kam

hi, usaully production system will be non changeable for all objects.. but as far as SAP BW is concerned we can make certain objects changeable by setting as follows..
in production go to RSA1 - Transport Connection, select Object changeability button from tool bar, here you will find a list of objects which can be made changeable in a closed system.. just click on required objects and set it to Everything Changeable..
Reg,
Pradhiba
<REMOVED>

Similar Messages

  • Want to break down a date into 4 lines in one field

    Hi all,
    In report 10g , when a date value mask is like 'DY. MON. DD,YYYY' in a field,
    it will be display whole date 'Mon. Apr.14,2008' in one line
    but in the report i want it shows like below in one field (break in every word, four lines) because the filed honrizontal width is limited
    Mon.
    Apr.
    14,
    2008
    how can i reach this in format trigger, i already use srw.set_value(0, to_char(sysdate))
    but doesn't work.
    Thanks for your help!
    appcat

    Try this
    select to_char(hiredate, 'Dy.') || chr(10) || to_char(hiredate, 'Mon.') || chr(10) || to_char(hiredate, 'dd,') || chr(10) || to_char(hiredate, 'yyyy') cdate
    from emp
    It was just an example. Use chr(10) for carriage return, whereever it is needed.

  • Web ADI Report set, excel is not showing the data for any of the three repo

    We are currently working on 11.5.10.2 and moving from Desktop ADI to Web ADI. At the time of publishing report in Web ADI the excel is empty.
    AFter successfully running the WEB Adi reportset for Consolidate Balncesheet ( for a period ex: APR-2012), there were 3 reports that were publlished as a set. Then I went to Repository Management and went to the folder and subfolder where I saved all the above 3 reports. When I click on view on one of the reports, the excel spreadsheet opens and try to load something for a while but finally ends up loading nothing.
    I am unable to figure out what went wrong. Do you have any idea.
    If someone can help me, I really appreciate.
    Thanks
    Uday

    Hi ,
    In u r query what I observed was unit cost*gross profit is Amount Sold. Can u make this calculation with Physical calculation rather than and logical calculation.
    See if u have kept logical joins for both the tables with the fact and set the content level at detail level in the content level of fact.
    Then it will work
    Thanks
    S

  • Breaking down Spry Data Repeat

    Hi,
    I'm trying to create a spry data set  in a table from a XML data file. I have done that in below are the  codings I obtained from Spry tool.
    <div  spry:region="KomtarETA">
      <table>
        <tr  class="TableHeader">
          <td width="100">Route</td>
           <td width="1266">Current</td>
          <td  width="1366">Destination</td>
          <td  width="1266">Next</td>
          <td  width="100">Lane</td>
        </tr>
        <tr  class="TableContent" spry:repeat="KomtarETA">
           <td>{route}</td>
          <td>{desitnation</td>
           <td>{current}</td>
          <td>{next}</td>
           <td>>{lane}</td>
    I have some individual  codings need to be done on each individual  data field. I need to  seperate all the spry data into each individual  column.
    My question  is how I can control these data individually when it's in the table ? Is  there any codings changes need to be done ?
    Please advise.
    Thanks.

    Hi,
    Actually what I mean by breaking down the data and not by means of filtering.
    I still want to display every single data but I wan it to be individualised.
    Here's the link to the test site.
    http://www.pcsb.my/test/KomtarETA.html
    What I need is that some column will be static and some will be dynamic. The actual external XML data will be dynamic as there will be a live server feeding and overwritting it.
    If you look at the Spry table portion coding inside the HTML file, it's actually a Spry repeat and I don't have much control over each individual data I want to manipulate the codings.
    Please take a look at it.
    Thanks.

  • Where can we get the data for pre calculated reports

    Hi,
    i want to see the data for pre calculated reports (Reporting agent)
    where can we get the data for pre calculated reports
    Thanks & Regards,
    Shaliny. M

    Dear,
    This feature of precalculating reports is to enhance the report performance. You will need to schedule this periodically, so that the report is fetched and cached. This allows faster retrieval of report data. Plz. understand that, this scheduling needs to run after every data load in the corresponding cube, so that, the latest data is cached, else the report data will be obsolete.
    Thanks

  • How to get the data for last 3rd business day and also include saturday and sunday if its a wednesday?

    Hi All,
    I have a simple query which is below:-
    Declare @reportdate date
    set @reportdate= (DATEADD(dd,-5,getdate()))
    select * from dbo.Table
    where date IN (@reportdate)
    I need this query to pull the data for the last 3rd business day .So lets say today is monday then i need the data for last week wednesday which is 3 business days back from monday, if today is a tuesday it would be for last thursday ( as 3 business days for
    tuesday would be thursday). But if today is wednesday then i need to be last 3rd business day which is last friday and i also need to get the data for saturday and sunday.
    Can someone please help me how cani change my filter to do this?
    Please let me know if i am still unclear.
    Thanks

    Hi SqlDev12,
    Based on my understanding on your requirement, you can reference the below sample.
    CREATE TABLE BusinessTable
    Bdate DATE,
    Wd VARCHAR(10)
    ;WITH Cte(DT,WD) AS
    SELECT CAST('20150401' AS DATE),DATENAME(WEEKDAY,CAST('20150401' AS DATE))
    UNION ALL
    SELECT DATEADD(DAY,1,DT),DATENAME(WEEKDAY,DATEADD(DAY,1,DT)) FROM Cte
    WHERE DT<GETDATE()
    INSERT INTO BusinessTable SELECT * FROM Cte
    SELECT * FROM BusinessTable
    SET DATEFIRST 7 -- Set Sunday as the first day of a week
    DECLARE @givenDay DATE ='20150415' --Wednesday
    SELECT * FROM BusinessTable
    WHERE Bdate BETWEEN
    --For Monday and Sunday, select last wednesday
    (CASE WHEN DATEPART(WEEKDAY,@givenDay) IN(1,2) THEN DATEADD(DAY,2,DATEADD(WEEK,DATEDIFF(WEEK,0,@givenDay)-1,0))
    --For Tuesday and Wednesday, last week's Thursday and Friday
    WHEN DATEPART(WEEKDAY,@givenDay) IN(3,4) THEN DATEADD(DAY,-5,@givenDay)
    --For Thursday and Friday, current week's Monday and Tuesday
    WHEN DATEPART(WEEKDAY,@givenDay) IN(5,6) THEN DATEADD(DAY,-3,@givenDay)
    --For Saturday, current week's Wednesday
    ELSE DATEADD(DAY,2,DATEADD(WEEK,DATEDIFF(WEEK,0,@givenDay),0)) END)
    AND
    (CASE WHEN DATEPART(WEEKDAY,@givenDay) IN(1,2) THEN DATEADD(DAY,2,DATEADD(WEEK,DATEDIFF(WEEK,0,@givenDay)-1,0))
    WHEN DATEPART(WEEKDAY,@givenDay) IN(3) THEN DATEADD(DAY,-5,@givenDay)
    WHEN DATEPART(WEEKDAY,@givenDay) IN(4) THEN DATEADD(DAY,-3,@givenDay)
    WHEN DATEPART(WEEKDAY,@givenDay) IN(5,6) THEN DATEADD(DAY,-3,@givenDay)
    ELSE DATEADD(DAY,2,DATEADD(WEEK,DATEDIFF(WEEK,0,@givenDay),0)) END)
    DROP TABLE BusinessTable
    If you have any feedback on our support, you can click
    here.
    Eric Zhang
    TechNet Community Support

  • How to break down the total stock level in multiple items ECC6.0 ERP

    Have a requirement for being able to break down the total stock of material into multiple items.
    E.g.
    Total stock: 1000 mtr. Unr.
    Consists of lenghts of:
    500 mtr.
    200 mtr.
    200 mtr.
    100 mtr.
    The different stocks should be displayed to sales persons and also 3rd party web applications towards customers
    Using 3rd party WMS system for all LE processes and currently handling this requirement using batch management, but using batch management also has some really strict rules which is why I would like to find other solutions
    Searching for any methods to solve this problem.
    Regards.
    Robin

    If tracking each "size " is important, then you can go for a seperate material code itself for each size.
    eg: 1000mtr = A
    500 mtr= B etc .
    you can show conversion of 1000 Mtr -> 500 MTR by subcontracting/ production /material t material transfer.
    -We had used split valuation in one clients system, where they wanted to track the Uncut Iron rods and iron rods cut into different sizes seperately .
    -Some  people use batch management with characteristics as well .
    Cnsidering your system is in live stage,  you have to consider the impact of each type of change.

  • The status bar is pushed up at about 3/4 of the screen, so I can view onlu firefox at about 1/4, good thing there is a scroll bar, but below the status bar is white display? can u please help me, I want to drag down the status bar so I can have a full vi

    The status bar is pushed up at about 3/4 of the screen, so I can view only Firefox at about 1/4, good thing there is a scroll bar, but below the status bar is white display? can u please help me, I want to drag down the status bar so I can have a full view
    == This happened ==
    Every time Firefox opened

    Your code is absolutely unreadable - even if someone was willing to
    help, it's simply impossible. I do give you a few tips, though: If you
    understand your code (i.e. if it really is YOUR code), you should be
    able to realize that your minimum and maximum never get set (thus they
    are both 0) and your exam 3 is set with the wrong value. SEE where
    those should get set and figure out why they're not. Chances are you
    are doing something to them that makes one 'if' fail or you just
    erroneously assign a wrong variable!

  • Full load with breaking down the loads in particular range - any progrom?

    Hello all,
    We are trying to do the first full load to our BW production system. We are doing Full load and then we are going to do the Init without data transfer to get the delta going.
    The full load is so big that we have to break down the loads by particular ranges, we have done it once previosuly by creating 30 infopackages and typing the consecutive ranges in the Infopackages selection criteria.
    I am just wondering, is there any other way we can do it which is much more easier, any code or program rather than having to create so many Infopackages and stuff.
    Please help with any suggestions/advice.
    Thanks in advance,

    Hello sasi,
    i am planning to use process chain, but what I am doing is since the load is so big I am putting range in the data selection of each infopackage (e.g. STNUMBER = 1000000000 to 1000005000) and there are such infopackages which gets the range in increasing order of 5000. (e.g. second infopackage will be STNUMBER = 1000005001 to 1000010000)
    So I was wondering if there was easy way to do this instead of creating like this 30 infopackages manually and putting them in process chain.
    anymore suggestions
    Thanks

  • Error while drilling down the data from reports

    Hi friends,
    I have created dimension hierarchies in rpd for drilling down the data.. While i drill down its showing no results at some level when i am clicking on the data.. but when i am clicking on the same levels column header its drilling down properly and i can view the next level for the data item which has shown no results while clicked on it.. Please help me and helps will be appreciated..

    Hi,
    >when i click on 2000 results displaying is no results
    but when i click on the header year its showing the results with 3 for 2000.
    So you are able to drill when you click on header..Go to column properties and make heading interaction to no interaction under column format,put value interaction to default and try to drill clicking on value.
    in RPD i have some derived columns like month .I created month as derived column from date using logical formula and i used this derived columns as the key.. Is it a problem?No I dont think its a problem
    Regards,
    Srikanth

  • Can we lock down the system for BW object and not bex objects

    Hello,
    I have a question about object changeability. We want to lock down the BW production system but leave it open for adhoc query. Can we lock down the BW system only for few objects like Cubes, ODS, Infoobjects, Infosets, Multiproviders, and keep the system open for Bex objects like Query, varaibles and also for Infopackges and DTP's.
    Which tcode can we use for this ?
    Thanks,
    Message was edited by:
            Kiran Mehendale

    hi, usaully production system will be non changeable for all objects.. but as far as SAP BW is concerned we can make certain objects changeable by setting as follows..
    in production go to RSA1 - Transport Connection, select Object changeability button from tool bar, here you will find a list of objects which can be made changeable in a closed system.. just click on required objects and set it to Everything Changeable..
    Reg,
    Pradhiba
    <REMOVED>

  • HT201328 I have been given permission for unlocking my iphone 3 GS from Orange. I want to set up the phone for my wife to use with a new number and carrier. Do I unlock under my itunes account first or set one up for her and then unlock the phone.

    I have been given permission for unlocking my iphone 3 GS from Orange. I want to set up the phone for my wife to use with a new number and carrier. Do I unlock under my itunes account first ( I now have a new iphone on this account) or set one up for her and then unlock the phone. I am worried about upsetting the new phone.

    I would complete unlocking as is and then
    restore as new once you know the iPhone is unlocked
    Be aware Orange will process the request at their speed
    one of the reasons they usually reside at bottom of User Sat surveys
    will likely take weeks
    This may also help
    http://support.apple.com/kb/HT5014

  • Is there a way to turn the wireless capabilities off on an AirPort Express?  I have an AirPort Extreme as my main router and use the express to just extend it. I only really want to you use the express for hard ethernet connections

    Is there a way to turn the wireless capabilities off on an AirPort Express?  I have an AirPort Extreme as my main router and use the express to just extend it. I only really want to you use the express for hard ethernet connections. For whatever reason when I have my express extend my wifi at home the download speed from just the express is absolutely terrible, drops to about 1.5 mb compared to when it's on the extremes part of the network the speed goes up to 50-75mb. These terrible download speed really only affects the iPhones as my MacBook Pro usually gets the good speed no matter where it is. I don't believe there is anything wrong with my phone because if I am in the part of the house that uses just the extreme the download speeds on the iphone goes up to 50-75mb. As a note I have an AirPort Extreme on the top floor of my house (second floor) that's where my modem is located. On the first floor that's where one airport express is located. I also have another airport express in the basement that is accessed by my landlord. Any thoughts on how to fix this would be helpful.

    Is there a way to turn the wireless capabilities off on an AirPort Express?  I have an AirPort Extreme as my main router and use the express to just extend it. I only really want to you use the express for hard ethernet connections.
    It appears that your networking goals with the AirPort Express is to use it as a wireless Ethernet bridge instead of using it to extend the wireless range of your AirPort Extreme. The latter requires that the Express Wi-Fi radios be enabled.
    If you intended to use the Express as a wireless bridge, you just need to reconfigure it to "Join a wireless" network instead of "Extend a wireless network."
    For whatever reason when I have my express extend my wifi at home the download speed from just the express is absolutely terrible, drops to about 1.5 mb compared to when it's on the extremes part of the network the speed goes up to 50-75mb.
    In an extended network, the placement of the extending base station is critical as it can only extend the wireless network at the bandwidth at which it receives it.
    Please check out the following AirPort User Tip for details on optimal base station placement.

  • My Macbook pro was stolen 09/12, the police just returned it to me. I want to remove all the data and start over. Format the drive's etc. I have windows 7 on 1 partion and mountain lion OSX on the apple partition. How is the best way to do this?

    My Macbook pro was stolen 09/12, the police just returned it to me. I want to remove all the data and start over. Format the drive's etc. I have windows 7 on 1 partion and mountain lion OSX on the apple partition. How is the best way to do this?

    Have a look here...
    what-to-do-when-your-hard-drive-is-full.html

  • How to set the filter on a report to show the data for the Current Month

    Hi all,
    I am working on a report, which currently has this filter: Date First Worked is greater than or equal to 10/01/2010. This reports show the data for the current month, so at the beginning of each month we have to remember to change the date on the filter.
    Does anyone know what the criteria should say, so that it automatically changes and shows the information for the current month, without us having to go in and change anything?
    Any help would be greatly appreciated!
    Thanks,
    AA

    You need to add a session variable to date fir worked assuming that this is a date field.
    To do this open up the filter on the field then at then press add Variable then "session" and enter the following CURRENT_MONTH into the Server Variable section.

Maybe you are looking for

  • HT1947 Can I control the volume of my MacBook Pro with the remote app on my IPhone or IPad?

    Can I control the volume of my MacBook Pro with the remote app on my IPhone or IPad?

  • Xcode on 10.4 Tiger

    Hello, I would like to become an app developer and I have got an app inmind in a area which is quite new on the app store. I don't want to buy a new Apple PC for cost reasons but I need Xcode to develope my app. But what I need to know is what versio

  • Why did itunes 11 crash?

    Why did itunes crash?

  • Adding more memory...

    Hello everyone. I currently own a 15" MacBook Pro w/ a single 512MB RAM. I use a lot of Adobe products (I'm a Graphic Design major), and unforetunately they all run under Rosseta. Now, I don't know if it's hella slow because of Rosseta, or the memory

  • Why the standalone server unable to instantiate a bean?

    I am using JDeveloper 11.1.1.2 and working on an application that has dynamic regions. The application was running fine within the Integrated WLS. But I got the following errors when the application run within the standalone WLS 10.3.2: : JspServlet