Need to show a data in weeks for stacked column

  I need to show the data broken down in weeks if you choose the start date and end date.   I have to show in a stacked column chart. I am trying to show the values if you choose for example last month i need to show it by weeks for example 
week    user name   total approved first approved    last aprovedDate  totalitemsAdded
week 1   XYZ                 3                10/01/2012       10/05/2012         5
week2   XYZ                  5                 etc                      etc            
  etc
week 3 
Below is the code and the result  i am getting now . 
Current Results
UserName TotalApproved
FirstApprovedDate LastApprovedDate
   TotalItemsAdded
XYZ            9
           2011-11-19 16:56:49.960
     2011-11-19 18:18:20.783
               2
DECLARE @StartDate DATETIME
DECLARE @EndDate DATETIME
SET @StartDate = '10/1/2012 '
SET @EndDate = '10/31/2012'
;with Items as(
       SELECT
              UserName = Profile.Description,
              TotalItems = COUNT(TransactionID),
              FirstAddedDate = MIN(UTCDate),
              LastAddedDate = MAX(UTCDate)
       FROM Transactiondatabase.dbo.transaction
                JOIN Biography.dbo.Profile ON transaction.ProfileId = Profile.ProfileID
       WHERE 
              Data like '%ItemAdded%'
                AND UTCDate BETWEEN @StartDate AND DATEADD(dd,1,@EndDate)
       GROUP BY
              Profile.Description 
Approved as
       SELECT 
              UserName = Profile.Description,
              TotalApproved = COUNT(TransactionID),
              FirstApprovedDate = MIN(UTCDate),--Demo
              LastApprovedDate = MAX(UTCDate)                 
       FROM Transactiondatabase..transaction
                JOIN Biography.dbo.Profile ON transaction.ProfileId = Profile.ProfileID
       WHERE 
              Data like '%Approved%'
                AND UTCDate BETWEEN @StartDate AND DATEADD(dd,1,@EndDate)
       GROUP BY
                Profile.Description
Select Distinct Approved.*, TotalItemssAdded = sum(distinct Items.TotalItems)
from Items, Approved  
Group by Approved.UserName, Approved.FirstApprovedDate, Approved.LastApprovedDate, Approved.TotalApproved
using ssrs 2005 

Hi Sunny04,
If I understand correctly, you want to display the data by weeks in a stacked column chart. If in this case, we can add a calculated field named week to display the week name, and then group it. For more details, please see the following steps:
Right-click the dataset to add a calculated field with the values below:
Name: Week
Calculated field: =DatePart(DateInterval.WeekOfYear,Fields!FirstApprovedDate.Value,0,0)
Add Week field to category group area in a stacked column chart.
Right-click Week field to open the Properties dialog box, modify the expression of Label to like this:
="week"&Fields!Week.Value
Add TotalApproved or TotalItemsAdded field to data area in the chart.
If there are any misunderstanding, please elaborate the issue for further investigation.
Thanks,
Katherine Xiong
Katherine Xiong
TechNet Community Support

Similar Messages

  • I have created a form which needs to be completed once a week for 6 weeks. On completing week 1, weeks 2 - 6 are completed at the same time with week 1 information. please help?

    I have created a form which needs to be completed once a week for 6 weeks. On completing week 1, weeks 2 - 6 are completed at the same time with week 1 information. please help?

    Hello, thanks for replying.
    Yes they just copy to the next page, the fields are the same. The document is an observation to school lessons so it needs to be consistent but with different data on.

  • Current date of birth for my column is null getting error....

    Hi All..
    i am calucating the current date of birth for my column which is date field and accept nulls (cust_dob) in my table.
    select cust_dob,Add_Months(
    to_date(cust_dob, 'dd/mm/yyyy'),
    Months_Between(
    trunc(sysdate, 'year'),
    trunc(to_date(cust_dob, 'dd/mm/yyyy'), 'yyyy')
    ) as current_dob from m_customer_hdr
    when i execute my query in toad. it is showing the result. but when i scroll down to see data it thow error as
    ORA-01858: a non-numeric character was found where a numeric was expected...
    Thanks in advance..
    Abdul rafi

    What datatype is cust_dob datatype. Somehow I have a feeling it is DATE. If so, expression:
    to_date(cust_dob, 'dd/mm/yyyy')Implicitly converts cust_dob to a string using session nls_date_format and then converts it back to date using 'dd/mm/yyyy' format. Now if NULL dob are fetched first, you might get something like:
    SQL> ALTER SESSION SET NLS_DATE_FORMAT='DD-MON-RR';
    Session altered.
    SQL> SET SERVEROUTPUT ON
    SQL> BEGIN
      2      FOR v_rec IN (SELECT  TO_DATE(cust_dob,'mm/dd/yyyy') cust_dob
      3                      FROM  (
      4                             SELECT TO_DATE(NULL) cust_dob FROM DUAL UNION ALL
      5                             SELECT TO_DATE(NULL) cust_dob FROM DUAL UNION ALL
      6                             SELECT TO_DATE(NULL) cust_dob FROM DUAL UNION ALL
      7                             SELECT sysdate cust_dob FROM DUAL
      8                            )
      9                   ) LOOP
    10        DBMS_OUTPUT.PUT_LINE('DOB = "' || v_rec.cust_dob || '"');
    11      END LOOP;
    12  END;
    13  /
    DOB = ""
    DOB = ""
    DOB = ""
    BEGIN
    ERROR at line 1:
    ORA-01858: a non-numeric character was found where a numeric was expected
    ORA-06512: at line 2So if column CUST_DOB is DATE, use:
    select cust_dob,Add_Months(
    cust_dob,
    Months_Between(
    trunc(sysdate, 'year'),
    trunc(cust_dob, 'yyyy')
    ) as current_dob from m_customer_hdrSY.

  • Dsiplay data values and data lables in a stacked column chart

    Hi All
    Is there a way to display data values and data labels in a stacked column chart. Mouse over or display of labels in legends wont help. It has to be in the chart .
    Regards,
    anshul

    Hi Anshul,
    You can display either data value or data label in a stacked column chart by checking the Data Label Displaying Mode option under Format Chart->Data Values.
    You can also do the same by checking the same option under Format chart->Area Display->Data Values.
    I dont think you would be able to display both in a column chart whereas you would be able to do it in a pie chart.
    Hope this helps.
    Regards
    Sri Harsha

  • Need to load the data through excel for plan data through IP?

    Hi all,
    The user needs to load the data through the excel and click on the save button so that the data is saved in the cube through integrated planning.
    The objects used are
    customer, material, plant, calendarmonth sales qty, gross billing!!
    Can anyone pls let me know how to do this?
    Thanks

    Hi,
    You can use the following How to guide to load data from file into transactional cube.
    If using IP :
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/90cef248-29e0-2910-11bb-df8dece7e22c?quicklink=index&overridelayout=true
    Can also Refer to Marc's Blog:
    /people/marc.bernard/blog/2007/11/25/how-to-load-a-file-into-sap-netweaver-bi-integrated-planning-part-1
    If you are using bPS you can get the details in Wiki also for the same.
    You can then create the hyperlink in Excel ,which user can use to upload data which can then be saved to cube using save button.

  • Decimal Point data for Stacked Column Chart

    Hi,
    I use a basic version of a Column chart for one of my projects. I use a stacked column chart with 2 data series namely "Expenses" & "Profit".
    I use decimal point numbers (with only two or three places after the decimal point) for both series.
    When I mouse over the bars of the output for tool tip, I view more numbers after the decimal point for some data.
    How to fix the decimal point to only 2 places & what is the reason for this behaviour?
    Attached is the sample output (output.gif) showing the above condition for the mentioned data.
    -Sen

    Create an toolTipShow event handler and use a NumberFormatter to set the precision of the numbers (sample code from LiveDocs):
    <?xml version="1.0"?>
    <!-- formatters\MainNumberFormatter.mxml -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:Script>
            <![CDATA[
                // Define variable to hold the number.       
                [Bindable]
                private var bigNumber:Number = 6000000000.65;
            ]]>
        </mx:Script>
        <!-- Declare and define parameters for the NumberFormatter.-->
        <mx:NumberFormatter id="PrepForDisplay"
            precision="0"
            rounding="up"
            decimalSeparatorTo="."
            thousandsSeparatorTo=","
            useThousandsSeparator="true"
            useNegativeSign="true"/>
        <!-- Trigger the formatter while populating a string with data.-->
        <mx:TextInput text="{PrepForDisplay.format(bigNumber)}"/> 
    </mx:Application>

  • Modify DATE format only for a column

    DB table has two or more columns of DATE type of which a column representing "Date of Birth" should not be of the format of TIMESTAMP . When queried it should return "mm/dd/yyyy" format without 'hh:mm:ss' . The others should be as usual.
    This is to ensure no changes in the applications querying this columns
    Any hints appreciated
    Thanks

    It depends on NLS_DATE_FORMAT and NLS_TIMESTAMP_FORMAT that is set in the database or session and the datatye used in the table, here is an example:-
    U1@BABU>  CREATE TABLE TEST_TAB (DATE1 DATE, DATE2 TIMESTAMP);
    Table created.
    U1@BABU> INSERT INTO TEST_TAB VALUES (SYSDATE,SYSDATE);
    1 row created.
    U1@BABU>  COMMIT;
    Commit complete.
    U1@BABU> SELECT * FROM TEST_TAB;
    DATE1 DATE2
    22-DEC-06 22-DEC-06 11.44.18.000000 AM
    U1@BABU> SELECT * FROM NLS_SESSION_PARAMETERS;
    PARAMETER                      VALUE
    NLS_LANGUAGE                   AMERICAN
    NLS_TERRITORY                  AMERICA
    NLS_CURRENCY                   $
    NLS_ISO_CURRENCY               AMERICA
    NLS_NUMERIC_CHARACTERS         .,
    NLS_CALENDAR                   GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE              AMERICAN
    NLS_SORT                       BINARY
    NLS_TIME_FORMAT                HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT             HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT        DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY              $
    NLS_COMP                       BINARY
    NLS_LENGTH_SEMANTICS           BYTE
    NLS_NCHAR_CONV_EXCP            FALSE
    17 rows selected.
    U1@BABU> ALTER SESSION SET NLS_DATE_FORMAT='DD-MON-YYYY HH24:MI:SS';
    Session altered.
    U1@BABU> SELECT * FROM TEST_TAB;
    DATE1 DATE2
    22-DEC-2006 11:44:18 22-DEC-06 11.44.18.000000 AM
    U1@BABU> SELECT TO_CHAR(DATE1,'MON-DD-YYYY HH24:MI:SS') DATE1, TO_CHAR(DATE2,'Month DD YYYY') DATE2
    FROM TEST_TAB;
    DATE1                DATE2
    DEC-22-2006 11:44:18 December  22 2006

  • Need: report showing modification dates for all files in WA

    We're having struggles in our first major product release of BC4J components on OC4j
    using OSCM for version control.
    Mood and release processes are getting more and more extreme as a result of not
    being able to easily manage our release configurations (CM).
    We're desparately in need of a report that shows:
    - what files have been modified VS a configuration name.
    - What files have been modified since I refreshed my WA
    In both we need to be able to print the list.
    Any sql scripts to share or cmd line script would greatly be appreciated!
    Thanks,
    curt

    David,
    Great, I'm making progress! Thanks.
    Yes on the CLI compare of two cfg's, got this working. THANKS
    use of the -fs<myfile> exports this to a printable file too.
    Work in progress:
    - Compare a cfg{N.M} to what's in a pwa or what would be in a pwa if refreshed?
    Experiments here haven't yeilded good results:
    CLI: set workarea myReleaseWA
    CLI: compare -rpmyCfg{1.0} -rpFolderInWA{MAIN;LATEST}
    Some how the directory walking is comparing apples VS oranges and all paths are different.
    - What files have been checked into a branch and I would get if I refreshed my PWA?
    Your SQL above doesn't exactly do this from my experiments.
    The c.spec_entry is null filters on currently checked out files.
    Config. Management may (usually) doesn't care about checked out files, just new checkins that
    a new release would get from a download latest.
    The best I've been able to hack are:
    CLI: set workarea my_release_pwa
    CLI: dir -s-nh-u-pth
    Since dir doesn't support -fs<myfile> or >myfile one needs to cut and past and save to a file
    or use CLI in one shot mode.
    This allows for greping/searching on current month and looking for files newer than the last release date.
    Another SQL based solution that orders the above same info from dir (I'm guessing?) is:
    select w.NAME wa_name
    ,va.changed_by
    ,to_char(va.date_changed,'DDMONYY HH:MI:SS')
    ,va.created_by
    ,to_char(va.date_created,'DDMONYY HH:MI:SS')
    ,jr_name.get_path(c.object_ivid,'VLABEL') obj
    from i$sdd_wa_context c
    ,i$sdd_workareas w
    ,i$sdd_version_associations va
    where w.irid = c.workarea_irid
    and w.name = 'smithc04_commissary_wa'  ---- my pwa
    and va.to_ivid = c.object_ivid
    and c.spec_entry is not null
    and va.date_changed is not null
    order by va.date_changed desc
    /This creates the same report as from dir only sorted conveniently.
    Still the use case question hasn't been precisely answered. I'm still guessing what new files/versions
    would be downloaded vs a release configuration or vs my [release_pwa]?
    I'm alot closer though and thanks,
    curt

  • Each message shows same date and time for sent and received.

    Each of the thousands of messages in Mail shows that the message was sent and received at the same time. Somehow, Mail is displaying incorrect information. In other words, the "date sent" and "date received" columns are identical. What can I do to Mail to get it to put the correct "sent" time in the column?

    Are you asking a question or making a suggestion? If you're asking if you can change Messages to show the time stamp for every message, no, you can't. If you are trying to make a suggestion to Apple, the appropriate place to do that is here:
    http://www.apple.com/feedback

  • I need a memory management/ data storage recomendation for my IMac 2 GH Intel Core 2 Duo

    Since giving my mid 2007 IMac a 2GB memory boost to accommodate Lion all has been well however my memory is full. I have a sizable ITunes library and 6000 photos in IPhoto, Me thinks I should store this all more effectively for the safety of the music and photos and for the well-being of the computer....but there seems to be choices. Is this where ICloud comes into play or time capsule or should I just get an external mini hard drive. Can anyone help me with some pearls of wisdom with data storage.

    Greetings John,
    There are two types of memory which you mention here.
    The 2 GB memory you refer to is RAM.  It is not used for storing information.  Rather for giving the computer a place to do much of its work.
    File storage is handled by the hard drive of the computer.
    If your available hard drive space is getting low you can move larger files to a Mac Formatted external drive:
    Faster connection (FW 800) drives:
    http://store.apple.com/us/product/H2068VC/A
    http://store.apple.com/us/product/TW315VC/A
    http://store.apple.com/us/product/H0815VC/A
    Normal speed (USB) drives:
    http://store.apple.com/us/product/H6581ZM/A
    Larger files can include entire databases like iTunes, iMovie, or iPhoto.
    Keep in mind that if you move these items to an external drive you will have to have the drive plugged in and powered on to access the data on them.  In addition, if you move important information off your internal drive to an external, you should be sure that your backup solution is backing up that external drive to keep your information safe.
    iCloud is not a file storage solution and TimeCapsule is not suited for storing databases like those mentioned above (its meant primarily as a backup solution).  I would stick with an external drive (1 to hold your big files and another one big enough to backup both your computer and the first drive).
    Here are some other general computer clean up suggestions: http://thexlab.com/faqs/freeingspace.html.
    Hope that helps.

  • What account info will I need to buy the data add on for europe

    Only know my mobile number will I need my EE account number when I buy the add on?

    You don't need any account info to buy roaming data when you are abroad, simply turn on data roaming and start browsing the net as normal. You will automatically be directed to the EE data roaming add-on page.
    EE automatically detects your mobile number and account info and charges your account accordingly.
    Do be aware that if you are in pay monthly, you don't see data roaming add-on charges until your next bill is issued.

  • I need to show the date of a file

    I tried to take a screenshot with command control shift 4 click and drag which would include date created and a thumb. I select the area, hear a
    good click, but no save window. Can it be done or should I give up?

    Nini Tjader wrote:
    Screenshots has nothing to do with Bridge unless you mean taking a screenshot of something IN Bridge that shows the thumbnail and date etc from within Bridge…
    Even in that case, the screen shoot of any Bridge window or panel is taken by the Mac OS, not by Bridge.
    This screen shot of a thumbnail being displayed by Bridge in the Bridge's Content panel was created by the Mac OS (Command+Shift+4).
    Wo Tai Lao Le
    我太老了

  • How come Apple Pay only shows time date city state for my transactions with it? It doesn't even show the name of the store or the amount-

    Using two separate Chase Visas, Apple Oay is working fine but the transaction list is very generic. It lists time, date, city, state and two dashes where amount should be. Shouldn't it at least show the name of the store and the amount?

    Hi.  I don't know if this will help, but I had this problem too.  Mine quit working after I used earbuds.  I was told that there is a switch inside the earbud port that tells the device to divert sound to earbuds.  This can get "stuck" and the device keeps thinking the earbuds are plugged in.  After reinserting the earbuds a few times, the switch was released and my speakers started working again.
    I'm not a techie.... this is just what I found to work after my iPhone 4S speakers quit.

  • How to insert long text data in oracle for LONG column type??

    Anybody who can tell me what is best way to store long text (more than 8k) in Oralce table.
    I am using Long datatype for column but it still doenst let me insert longer strings.
    Also I am using ODP.Net.
    Anybody with a good suggestion???
    Thanks in advance

    Hi,
    Are you getting an error? If so, what?
    This works for me..
    Greg
    create table longtab(col1 varchar2(10), col2 long );
    using System;
    using System.Data;
    using Oracle.DataAccess.Client;
    using Oracle.DataAccess.Types;
    using System.Text;
    public class longwrite
    public static void Main()
    // make a long string
    StringBuilder sb = new StringBuilder();
    for (int i=0;i<55000;i++)
    sb.Append("a");
    sb.Append("Z");
    string indata = sb.ToString();
    Console.WriteLine("string length is {0}",indata .Length);
    // insert into database
    OracleConnection con = new OracleConnection("user id=scott;password=tiger;data source=orcl");
    con.Open();
    OracleCommand cmd = new OracleCommand();
    cmd.CommandText = "insert into longtab values(1,:longparam)";
    cmd.Connection = con;
    OracleParameter longparam = new OracleParameter("longparam",OracleDbType.Long,indata .Length);
    longparam.Direction = ParameterDirection.Input;
    longparam.Value = indata ;
    cmd.Parameters.Add(longparam);
    cmd.ExecuteNonQuery();
    Console.WriteLine("insert complete");
    //now retrieve it
    cmd.CommandText = "select rowid,col2 from longtab where col1 = 1";
    OracleDataReader reader = cmd.ExecuteReader();
    reader.Read();
    string outdata = (string)reader.GetOracleString(1);
    Console.WriteLine("string length is {0}",outdata.Length);
    //Console.WriteLine("string is {0}",outdata);
    reader.Close();     
    con.Close();
    con.Close();
    }

  • Select true date from week/day/time columns

    the scenario
    i have a table with 4 columns
    weekno
    dayno
    start
    finish
    w d st ft
    1     1     0     0
    1     2     480     990
    1     3     480     990
    1     4     480     990
    1     5     480     990
    1     6     480     930
    1     7     480     720
    2     1     0     0
    2     2     480     990
    2     3     480     990
    2     4     480     990
    2     5     480     990
    2     6     480     930
    2     7     480     720
    3     1     0     0
    3     2     480     990
    3     3     480     990
    3     4     480     990
    3     5     480     990
    3     6     480     930
    3     7     480     720
    etc, etc for every day in the year.
    the 3rd and 4th columns are minutes but in decimal time.
    the problem
    what i require is a query to return 2 date columns a start datetime and an end datetime, but from today forward for 365 days (every row) in 'DD-MM-RR HH24-MI' format
    eg
    '10-04-08 08:00' ''10-04-08 16:30'
    '11-04-08 08:00' ''11-04-08 12:00'
    '12-04-08 08:00' ''12-04-08 12:00'
    followed by 364 other days a year from today.
    hope this makes sense.
    any help appreciated
    cheers

    by using
    to_char(TRUNC(sysdate, 'I') + 7 *(wages2_wk_no -1) + wages2_dayno-2 + wages2_n_st / 60 / 24, 'DD-MM-YYYY HH24:MI') start_date,
    to_char(TRUNC(sysdate, 'I') + 7 *(wages2_wk_no -1) + wages2_dayno-2 + wages2_n_end / 60 / 24, 'DD-MM-YYYY HH24:MI') end_date
    i achieved the following. which is correct from today onward (in bold), but anything before today should should follow through to 2009 if that makes sense...
    1     1     SUN     30-12-2007 00:00     30-12-2007 00:00
    1     2     MON     31-12-2007 08:00     31-12-2007 16:30
    1     3     TUE     01-01-2008 08:00     01-01-2008 16:30
    1     4     WED     02-01-2008 08:00     02-01-2008 16:30
    1     5     THU     03-01-2008 08:00     03-01-2008 16:30
    1     6     FRI     04-01-2008 08:00     04-01-2008 15:30
    1     7     SAT     05-01-2008 08:00     05-01-2008 12:00
    2     1     SUN     06-01-2008 00:00     06-01-2008 00:00
    2     2     MON     07-01-2008 08:00     07-01-2008 16:30
    2     3     TUE     08-01-2008 08:00     08-01-2008 16:30
    2     4     WED     09-01-2008 08:00     09-01-2008 16:30
    2     5     THU     10-01-2008 08:00     10-01-2008 16:30
    2     6     FRI     11-01-2008 08:00     11-01-2008 15:30
    2     7     SAT     12-01-2008 08:00     12-01-2008 12:00
    3     1     SUN     13-01-2008 00:00     13-01-2008 00:00
    3     2     MON     14-01-2008 08:00     14-01-2008 16:30
    3     3     TUE     15-01-2008 08:00     15-01-2008 16:30
    3     4     WED     16-01-2008 08:00     16-01-2008 16:30
    3     5     THU     17-01-2008 08:00     17-01-2008 16:30
    3     6     FRI     18-01-2008 08:00     18-01-2008 15:30
    3     7     SAT     19-01-2008 08:00     19-01-2008 12:00
    4     1     SUN     20-01-2008 00:00     20-01-2008 00:00
    4     2     MON     21-01-2008 08:00     21-01-2008 16:30
    4     3     TUE     22-01-2008 08:00     22-01-2008 16:30
    4     4     WED     23-01-2008 08:00     23-01-2008 16:30
    4     5     THU     24-01-2008 08:00     24-01-2008 16:30
    4     6     FRI     25-01-2008 08:00     25-01-2008 15:30
    4     7     SAT     26-01-2008 08:00     26-01-2008 12:00
    5     1     SUN     27-01-2008 00:00     27-01-2008 00:00
    5     2     MON     28-01-2008 08:00     28-01-2008 16:30
    5     3     TUE     29-01-2008 08:00     29-01-2008 16:30
    5     4     WED     30-01-2008 08:00     30-01-2008 16:30
    5     5     THU     31-01-2008 08:00     31-01-2008 16:30
    5     6     FRI     01-02-2008 08:00     01-02-2008 15:30
    5     7     SAT     02-02-2008 08:00     02-02-2008 12:00
    6     1     SUN     03-02-2008 00:00     03-02-2008 00:00
    6     2     MON     04-02-2008 08:00     04-02-2008 16:30
    6     3     TUE     05-02-2008 08:00     05-02-2008 16:30
    6     4     WED     06-02-2008 08:00     06-02-2008 16:30
    6     5     THU     07-02-2008 08:00     07-02-2008 16:30
    6     6     FRI     08-02-2008 08:00     08-02-2008 15:30
    6     7     SAT     09-02-2008 08:00     09-02-2008 12:00
    7     1     SUN     10-02-2008 00:00     10-02-2008 00:00
    7     2     MON     11-02-2008 08:00     11-02-2008 16:30
    7     3     TUE     12-02-2008 08:00     12-02-2008 16:30
    7     4     WED     13-02-2008 08:00     13-02-2008 16:30
    7     5     THU     14-02-2008 08:00     14-02-2008 16:30
    7     6     FRI     15-02-2008 08:00     15-02-2008 15:30
    7     7     SAT     16-02-2008 08:00     16-02-2008 12:00
    8     1     SUN     17-02-2008 00:00     17-02-2008 00:00
    8     2     MON     18-02-2008 08:00     18-02-2008 16:30
    8     3     TUE     19-02-2008 08:00     19-02-2008 16:30
    8     4     WED     20-02-2008 08:00     20-02-2008 16:30
    8     5     THU     21-02-2008 08:00     21-02-2008 16:30
    8     6     FRI     22-02-2008 08:00     22-02-2008 15:30
    8     7     SAT     23-02-2008 08:00     23-02-2008 12:00
    9     1     SUN     24-02-2008 00:00     24-02-2008 00:00
    9     2     MON     25-02-2008 08:00     25-02-2008 16:30
    9     3     TUE     26-02-2008 08:00     26-02-2008 16:30
    9     4     WED     27-02-2008 08:00     27-02-2008 16:30
    9     5     THU     28-02-2008 08:00     28-02-2008 16:30
    9     6     FRI     29-02-2008 08:00     29-02-2008 15:30
    9     7     SAT     01-03-2008 08:00     01-03-2008 12:00
    10     1     SUN     02-03-2008 00:00     02-03-2008 00:00
    10     2     MON     03-03-2008 08:00     03-03-2008 16:30
    10     3     TUE     04-03-2008 08:00     04-03-2008 16:30
    10     4     WED     05-03-2008 08:00     05-03-2008 16:30
    10     5     THU     06-03-2008 08:00     06-03-2008 16:30
    10     6     FRI     07-03-2008 08:00     07-03-2008 15:30
    10     7     SAT     08-03-2008 08:00     08-03-2008 12:00
    11     1     SUN     09-03-2008 00:00     09-03-2008 00:00
    11     2     MON     10-03-2008 08:00     10-03-2008 16:30
    11     3     TUE     11-03-2008 08:00     11-03-2008 16:30
    11     4     WED     12-03-2008 08:00     12-03-2008 16:30
    11     5     THU     13-03-2008 08:00     13-03-2008 16:30
    11     6     FRI     14-03-2008 08:00     14-03-2008 15:30
    11     7     SAT     15-03-2008 08:00     15-03-2008 12:00
    12     1     SUN     16-03-2008 00:00     16-03-2008 00:00
    12     2     MON     17-03-2008 08:00     17-03-2008 16:30
    12     3     TUE     18-03-2008 08:00     18-03-2008 16:30
    12     4     WED     19-03-2008 08:00     19-03-2008 16:30
    12     5     THU     20-03-2008 08:00     20-03-2008 16:30
    12     6     FRI     21-03-2008 08:00     21-03-2008 15:30
    12     7     SAT     22-03-2008 08:00     22-03-2008 12:00
    13     1     SUN     23-03-2008 00:00     23-03-2008 00:00
    13     2     MON     24-03-2008 08:00     24-03-2008 16:30
    13     3     TUE     25-03-2008 08:00     25-03-2008 16:30
    13     4     WED     26-03-2008 08:00     26-03-2008 16:30
    13     5     THU     27-03-2008 08:00     27-03-2008 16:30
    13     6     FRI     28-03-2008 08:00     28-03-2008 15:30
    13     7     SAT     29-03-2008 08:00     29-03-2008 12:00
    14     1     SUN     30-03-2008 00:00     30-03-2008 00:00
    14     2     MON     31-03-2008 08:00     31-03-2008 16:30
    14     3     TUE     01-04-2008 08:00     01-04-2008 16:30
    14     4     WED     02-04-2008 08:00     02-04-2008 16:30
    14     5     THU     03-04-2008 08:00     03-04-2008 16:30
    14     6     FRI     04-04-2008 08:00     04-04-2008 15:30
    14     7     SAT     05-04-2008 08:00     05-04-2008 12:00
    15     1     SUN     06-04-2008 00:00     06-04-2008 00:00
    15     2     MON     07-04-2008 08:00     07-04-2008 16:30
    15     3     TUE     08-04-2008 08:00     08-04-2008 16:30
    15     4     WED     09-04-2008 08:00     09-04-2008 16:30
    15     5     THU     10-04-2008 08:00     10-04-2008 16:30
    15     6     FRI     11-04-2008 08:00     11-04-2008 15:30
    15     7     SAT     12-04-2008 08:00     12-04-2008 12:00
    16     1     SUN     13-04-2008 00:00     13-04-2008 00:00
    16     2     MON     14-04-2008 08:00     14-04-2008 16:30
    16     3     TUE     15-04-2008 08:00     15-04-2008 16:30
    16     4     WED     16-04-2008 08:00     16-04-2008 16:30
    16     5     THU     17-04-2008 08:00     17-04-2008 16:30
    16     6     FRI     18-04-2008 08:00     18-04-2008 15:30
    16     7     SAT     19-04-2008 08:00     19-04-2008 12:00
    17     1     SUN     20-04-2008 00:00     20-04-2008 00:00
    17     2     MON     21-04-2008 08:00     21-04-2008 16:30
    17     3     TUE     22-04-2008 08:00     22-04-2008 16:30
    17     4     WED     23-04-2008 08:00     23-04-2008 16:30
    17     5     THU     24-04-2008 08:00     24-04-2008 16:30
    17     6     FRI     25-04-2008 08:00     25-04-2008 15:30
    17     7     SAT     26-04-2008 08:00     26-04-2008 12:00
    18     1     SUN     27-04-2008 00:00     27-04-2008 00:00
    18     2     MON     28-04-2008 08:00     28-04-2008 16:30
    18     3     TUE     29-04-2008 08:00     29-04-2008 16:30
    18     4     WED     30-04-2008 08:00     30-04-2008 16:30
    18     5     THU     01-05-2008 08:00     01-05-2008 16:30
    18     6     FRI     02-05-2008 08:00     02-05-2008 15:30
    18     7     SAT     03-05-2008 08:00     03-05-2008 12:00
    19     1     SUN     04-05-2008 00:00     04-05-2008 00:00
    19     2     MON     05-05-2008 08:00     05-05-2008 16:30
    19     3     TUE     06-05-2008 08:00     06-05-2008 16:30
    19     4     WED     07-05-2008 08:00     07-05-2008 16:30
    19     5     THU     08-05-2008 08:00     08-05-2008 16:30
    19     6     FRI     09-05-2008 08:00     09-05-2008 15:30
    19     7     SAT     10-05-2008 08:00     10-05-2008 12:00
    20     1     SUN     11-05-2008 00:00     11-05-2008 00:00
    20     2     MON     12-05-2008 08:00     12-05-2008 16:30
    20     3     TUE     13-05-2008 08:00     13-05-2008 16:30
    20     4     WED     14-05-2008 08:00     14-05-2008 16:30
    20     5     THU     15-05-2008 08:00     15-05-2008 16:30
    20     6     FRI     16-05-2008 08:00     16-05-2008 15:30
    20     7     SAT     17-05-2008 08:00     17-05-2008 12:00
    21     1     SUN     18-05-2008 00:00     18-05-2008 00:00
    21     2     MON     19-05-2008 08:00     19-05-2008 16:30
    21     3     TUE     20-05-2008 08:00     20-05-2008 16:30
    21     4     WED     21-05-2008 08:00     21-05-2008 16:30
    21     5     THU     22-05-2008 08:00     22-05-2008 16:30
    21     6     FRI     23-05-2008 08:00     23-05-2008 15:30
    21     7     SAT     24-05-2008 08:00     24-05-2008 12:00
    22     1     SUN     25-05-2008 00:00     25-05-2008 00:00
    22     2     MON     26-05-2008 08:00     26-05-2008 16:30
    22     3     TUE     27-05-2008 08:00     27-05-2008 16:30
    22     4     WED     28-05-2008 08:00     28-05-2008 16:30
    22     5     THU     29-05-2008 08:00     29-05-2008 16:30
    22     6     FRI     30-05-2008 08:00     30-05-2008 15:30
    22     7     SAT     31-05-2008 08:00     31-05-2008 12:00
    23     1     SUN     01-06-2008 00:00     01-06-2008 00:00
    23     2     MON     02-06-2008 08:00     02-06-2008 16:30
    23     3     TUE     03-06-2008 08:00     03-06-2008 16:30
    23     4     WED     04-06-2008 08:00     04-06-2008 16:30
    23     5     THU     05-06-2008 08:00     05-06-2008 16:30
    23     6     FRI     06-06-2008 08:00     06-06-2008 15:30
    23     7     SAT     07-06-2008 08:00     07-06-2008 12:00
    24     1     SUN     08-06-2008 00:00     08-06-2008 00:00
    24     2     MON     09-06-2008 08:00     09-06-2008 16:30
    24     3     TUE     10-06-2008 08:00     10-06-2008 16:30
    24     4     WED     11-06-2008 08:00     11-06-2008 16:30
    24     5     THU     12-06-2008 08:00     12-06-2008 16:30
    24     6     FRI     13-06-2008 08:00     13-06-2008 15:30
    24     7     SAT     14-06-2008 08:00     14-06-2008 12:00
    25     1     SUN     15-06-2008 00:00     15-06-2008 00:00
    25     2     MON     16-06-2008 08:00     16-06-2008 16:30
    25     3     TUE     17-06-2008 08:00     17-06-2008 16:30
    25     4     WED     18-06-2008 08:00     18-06-2008 16:30
    25     5     THU     19-06-2008 08:00     19-06-2008 16:30
    25     6     FRI     20-06-2008 08:00     20-06-2008 15:30
    25     7     SAT     21-06-2008 08:00     21-06-2008 12:00
    26     1     SUN     22-06-2008 00:00     22-06-2008 00:00
    26     2     MON     23-06-2008 08:00     23-06-2008 16:30
    26     3     TUE     24-06-2008 08:00     24-06-2008 16:30
    26     4     WED     25-06-2008 08:00     25-06-2008 16:30
    26     5     THU     26-06-2008 08:00     26-06-2008 16:30
    26     6     FRI     27-06-2008 08:00     27-06-2008 15:30
    26     7     SAT     28-06-2008 08:00     28-06-2008 12:00
    27     1     SUN     29-06-2008 00:00     29-06-2008 00:00
    27     2     MON     30-06-2008 08:00     30-06-2008 16:30
    27     3     TUE     01-07-2008 08:00     01-07-2008 16:30
    27     4     WED     02-07-2008 08:00     02-07-2008 16:30
    27     5     THU     03-07-2008 08:00     03-07-2008 16:30
    27     6     FRI     04-07-2008 08:00     04-07-2008 15:30
    27     7     SAT     05-07-2008 08:00     05-07-2008 12:00
    28     1     SUN     06-07-2008 00:00     06-07-2008 00:00
    28     2     MON     07-07-2008 08:00     07-07-2008 16:30
    28     3     TUE     08-07-2008 08:00     08-07-2008 16:30
    28     4     WED     09-07-2008 08:00     09-07-2008 16:30
    28     5     THU     10-07-2008 08:00     10-07-2008 16:30
    28     6     FRI     11-07-2008 08:00     11-07-2008 15:30
    28     7     SAT     12-07-2008 08:00     12-07-2008 12:00
    29     1     SUN     13-07-2008 00:00     13-07-2008 00:00
    29     2     MON     14-07-2008 08:00     14-07-2008 16:30
    29     3     TUE     15-07-2008 08:00     15-07-2008 16:30
    29     4     WED     16-07-2008 08:00     16-07-2008 16:30
    29     5     THU     17-07-2008 08:00     17-07-2008 16:30
    29     6     FRI     18-07-2008 08:00     18-07-2008 15:30
    29     7     SAT     19-07-2008 08:00     19-07-2008 12:00
    30     1     SUN     20-07-2008 00:00     20-07-2008 00:00
    30     2     MON     21-07-2008 08:00     21-07-2008 16:30
    30     3     TUE     22-07-2008 08:00     22-07-2008 16:30
    30     4     WED     23-07-2008 08:00     23-07-2008 16:30
    30     5     THU     24-07-2008 08:00     24-07-2008 16:30
    30     6     FRI     25-07-2008 08:00     25-07-2008 15:30
    30     7     SAT     26-07-2008 08:00     26-07-2008 12:00
    31     1     SUN     27-07-2008 00:00     27-07-2008 00:00
    31     2     MON     28-07-2008 08:00     28-07-2008 16:30
    31     3     TUE     29-07-2008 08:00     29-07-2008 16:30
    31     4     WED     30-07-2008 08:00     30-07-2008 16:30
    31     5     THU     31-07-2008 08:00     31-07-2008 16:30
    31     6     FRI     01-08-2008 08:00     01-08-2008 15:30
    31     7     SAT     02-08-2008 08:00     02-08-2008 12:00
    32     1     SUN     03-08-2008 00:00     03-08-2008 00:00
    32     2     MON     04-08-2008 08:00     04-08-2008 16:30
    32     3     TUE     05-08-2008 08:00     05-08-2008 16:30
    32     4     WED     06-08-2008 08:00     06-08-2008 16:30
    32     5     THU     07-08-2008 08:00     07-08-2008 16:30
    32     6     FRI     08-08-2008 08:00     08-08-2008 15:30
    32     7     SAT     09-08-2008 08:00     09-08-2008 12:00
    33     1     SUN     10-08-2008 00:00     10-08-2008 00:00
    33     2     MON     11-08-2008 08:00     11-08-2008 16:30
    33     3     TUE     12-08-2008 08:00     12-08-2008 16:30
    33     4     WED     13-08-2008 08:00     13-08-2008 16:30
    33     5     THU     14-08-2008 08:00     14-08-2008 16:30
    33     6     FRI     15-08-2008 08:00     15-08-2008 15:30
    33     7     SAT     16-08-2008 08:00     16-08-2008 12:00
    34     1     SUN     17-08-2008 00:00     17-08-2008 00:00
    34     2     MON     18-08-2008 08:00     18-08-2008 16:30
    34     3     TUE     19-08-2008 08:00     19-08-2008 16:30
    34     4     WED     20-08-2008 08:00     20-08-2008 16:30
    34     5     THU     21-08-2008 08:00     21-08-2008 16:30
    34     6     FRI     22-08-2008 08:00     22-08-2008 15:30
    34     7     SAT     23-08-2008 08:00     23-08-2008 12:00
    35     1     SUN     24-08-2008 00:00     24-08-2008 00:00
    35     2     MON     25-08-2008 08:00     25-08-2008 16:30
    35     3     TUE     26-08-2008 08:00     26-08-2008 16:30
    35     4     WED     27-08-2008 08:00     27-08-2008 16:30
    35     5     THU     28-08-2008 08:00     28-08-2008 16:30
    35     6     FRI     29-08-2008 08:00     29-08-2008 15:30
    35     7     SAT     30-08-2008 08:00     30-08-2008 12:00
    36     1     SUN     31-08-2008 00:00     31-08-2008 00:00
    36     2     MON     01-09-2008 08:00     01-09-2008 16:30
    36     3     TUE     02-09-2008 08:00     02-09-2008 16:30
    36     4     WED     03-09-2008 08:00     03-09-2008 16:30
    36     5     THU     04-09-2008 08:00     04-09-2008 16:30
    36     6     FRI     05-09-2008 08:00     05-09-2008 15:30
    36     7     SAT     06-09-2008 08:00     06-09-2008 12:00
    37     1     SUN     07-09-2008 00:00     07-09-2008 00:00
    37     2     MON     08-09-2008 08:00     08-09-2008 16:30
    37     3     TUE     09-09-2008 08:00     09-09-2008 16:30
    37     4     WED     10-09-2008 08:00     10-09-2008 16:30
    37     5     THU     11-09-2008 08:00     11-09-2008 16:30
    37     6     FRI     12-09-2008 08:00     12-09-2008 15:30
    37     7     SAT     13-09-2008 08:00     13-09-2008 12:00
    38     1     SUN     14-09-2008 00:00     14-09-2008 00:00
    38     2     MON     15-09-2008 08:00     15-09-2008 16:30
    38     3     TUE     16-09-2008 08:00     16-09-2008 16:30
    38     4     WED     17-09-2008 08:00     17-09-2008 16:30
    38     5     THU     18-09-2008 08:00     18-09-2008 16:30
    38     6     FRI     19-09-2008 08:00     19-09-2008 15:30
    38     7     SAT     20-09-2008 08:00     20-09-2008 12:00
    39     1     SUN     21-09-2008 00:00     21-09-2008 00:00
    39     2     MON     22-09-2008 08:00     22-09-2008 16:30
    39     3     TUE     23-09-2008 08:00     23-09-2008 16:30
    39     4     WED     24-09-2008 08:00     24-09-2008 16:30
    39     5     THU     25-09-2008 08:00     25-09-2008 16:30
    39     6     FRI     26-09-2008 08:00     26-09-2008 15:30
    39     7     SAT     27-09-2008 08:00     27-09-2008 12:00
    40     1     SUN     28-09-2008 00:00     28-09-2008 00:00
    40     2     MON     29-09-2008 08:00     29-09-2008 16:30
    40     3     TUE     30-09-2008 08:00     30-09-2008 16:30
    40     4     WED     01-10-2008 08:00     01-10-2008 16:30
    40     5     THU     02-10-2008 08:00     02-10-2008 16:30
    40     6     FRI     03-10-2008 08:00     03-10-2008 15:30
    40     7     SAT     04-10-2008 08:00     04-10-2008 12:00
    41     1     SUN     05-10-2008 00:00     05-10-2008 00:00
    41     2     MON     06-10-2008 08:00     06-10-2008 16:30
    41     3     TUE     07-10-2008 08:00     07-10-2008 16:30
    41     4     WED     08-10-2008 08:00     08-10-2008 16:30
    41     5     THU     09-10-2008 08:00     09-10-2008 16:30
    41     6     FRI     10-10-2008 08:00     10-10-2008 15:30
    41     7     SAT     11-10-2008 08:00     11-10-2008 12:00
    42     1     SUN     12-10-2008 00:00     12-10-2008 00:00
    42     2     MON     13-10-2008 08:00     13-10-2008 16:30
    42     3     TUE     14-10-2008 08:00     14-10-2008 16:30
    42     4     WED     15-10-2008 08:00     15-10-2008 16:30
    42     5     THU     16-10-2008 08:00     16-10-2008 16:30
    42     6     FRI     17-10-2008 08:00     17-10-2008 15:30
    42     7     SAT     18-10-2008 08:00     18-10-2008 12:00
    43     1     SUN     19-10-2008 00:00     19-10-2008 00:00
    43     2     MON     20-10-2008 08:00     20-10-2008 16:30
    43     3     TUE     21-10-2008 08:00     21-10-2008 16:30
    43     4     WED     22-10-2008 08:00     22-10-2008 16:30
    43     5     THU     23-10-2008 08:00     23-10-2008 16:30
    43     6     FRI     24-10-2008 08:00     24-10-2008 15:30
    43     7     SAT     25-10-2008 08:00     25-10-2008 12:00
    44     1     SUN     26-10-2008 00:00     26-10-2008 00:00
    44     2     MON     27-10-2008 08:00     27-10-2008 16:30
    44     3     TUE     28-10-2008 08:00     28-10-2008 16:30
    44     4     WED     29-10-2008 08:00     29-10-2008 16:30
    44     5     THU     30-10-2008 08:00     30-10-2008 16:30
    44     6     FRI     31-10-2008 08:00     31-10-2008 15:30
    44     7     SAT     01-11-2008 08:00     01-11-2008 12:00
    45     1     SUN     02-11-2008 00:00     02-11-2008 00:00
    45     2     MON     03-11-2008 08:00     03-11-2008 16:30
    45     3     TUE     04-11-2008 08:00     04-11-2008 16:30
    45     4     WED     05-11-2008 08:00     05-11-2008 16:30
    45     5     THU     06-11-2008 08:00     06-11-2008 16:30
    45     6     FRI     07-11-2008 08:00     07-11-2008 15:30
    45     7     SAT     08-11-2008 08:00     08-11-2008 12:00
    46     1     SUN     09-11-2008 00:00     09-11-2008 00:00
    46     2     MON     10-11-2008 08:00     10-11-2008 16:30
    46     3     TUE     11-11-2008 08:00     11-11-2008 16:30
    46     4     WED     12-11-2008 08:00     12-11-2008 16:30
    46     5     THU     13-11-2008 08:00     13-11-2008 16:30
    46     6     FRI     14-11-2008 08:00     14-11-2008 15:30
    46     7     SAT     15-11-2008 08:00     15-11-2008 12:00
    47     1     SUN     16-11-2008 00:00     16-11-2008 00:00
    47     2     MON     17-11-2008 08:00     17-11-2008 16:30
    47     3     TUE     18-11-2008 08:00     18-11-2008 16:30
    47     4     WED     19-11-2008 08:00     19-11-2008 16:30
    47     5     THU     20-11-2008 08:00     20-11-2008 16:30
    47     6     FRI     21-11-2008 08:00     21-11-2008 15:30
    47     7     SAT     22-11-2008 08:00     22-11-2008 12:00
    48     1     SUN     23-11-2008 00:00     23-11-2008 00:00
    48     2     MON     24-11-2008 08:00     24-11-2008 16:30
    48     3     TUE     25-11-2008 08:00     25-11-2008 16:30
    48     4     WED     26-11-2008 08:00     26-11-2008 16:30
    48     5     THU     27-11-2008 08:00     27-11-2008 16:30
    48     6     FRI     28-11-2008 08:00     28-11-2008 15:30
    48     7     SAT     29-11-2008 08:00     29-11-2008 12:00
    49     1     SUN     30-11-2008 00:00     30-11-2008 00:00
    49     2     MON     01-12-2008 08:00     01-12-2008 16:30
    49     3     TUE     02-12-2008 08:00     02-12-2008 16:30
    49     4     WED     03-12-2008 08:00     03-12-2008 16:30
    49     5     THU     04-12-2008 08:00     04-12-2008 16:30
    49     6     FRI     05-12-2008 08:00     05-12-2008 15:30
    49     7     SAT     06-12-2008 08:00     06-12-2008 12:00
    50     1     SUN     07-12-2008 00:00     07-12-2008 00:00
    50     2     MON     08-12-2008 08:00     08-12-2008 16:30
    50     3     TUE     09-12-2008 08:00     09-12-2008 16:30
    50     4     WED     10-12-2008 08:00     10-12-2008 16:30
    50     5     THU     11-12-2008 08:00     11-12-2008 16:30
    50     6     FRI     12-12-2008 08:00     12-12-2008 15:30
    50     7     SAT     13-12-2008 08:00     13-12-2008 12:00
    51     1     SUN     14-12-2008 00:00     14-12-2008 00:00
    51     2     MON     15-12-2008 08:00     15-12-2008 16:30
    51     3     TUE     16-12-2008 08:00     16-12-2008 16:30
    51     4     WED     17-12-2008 08:00     17-12-2008 16:30
    51     5     THU     18-12-2008 08:00     18-12-2008 16:30
    51     6     FRI     19-12-2008 08:00     19-12-2008 15:30
    51     7     SAT     20-12-2008 08:00     20-12-2008 12:00
    52     1     SUN     21-12-2008 00:00     21-12-2008 00:00
    52     2     MON     22-12-2008 08:00     22-12-2008 16:30
    52     3     TUE     23-12-2008 08:00     23-12-2008 16:30
    52     4     WED     24-12-2008 08:00     24-12-2008 16:30
    52     5     THU     25-12-2008 08:00     25-12-2008 16:30
    52     6     FRI     26-12-2008 08:00     26-12-2008 15:30
    52     7     SAT     27-12-2008 08:00     27-12-2008 12:00

Maybe you are looking for

  • Questions in Lync - ICE Integration.

    Hello Team, We have a end customer who are currently using the third party telephone system  http://www.ctalk.co.uk Questions 1. Can we use/integrate ICE with Mutitenant Lync 2013 version?  If so, how do we license it? 2. If licensing is not possible

  • Essbase server is invalid. Not registered with Shared Services

    Hi, I am trying to deploy EPMA Essbase application after we upgrade to 11.1.2.2 from 11.1.2.0. I get this error. Application server '<Server>:1423' is invalid. It is not registered with Shared Services. URI: http://<Server>/awb/integration.verifyAppl

  • 6th generation iPod nano automatically turns off when I push het sleep/wake button or when screen turns black after a while. How can I solve this ?

    My 6th generation iPod nano automatically turns off (=stops the music) when I push het sleep/wake button or when screen turns black for power saving mode. Does anyone know how to solve this ? I have already tried resetting, connecting to PC/iTunes to

  • "Partners" tab in SRM ECS PO

    If a PO is created for main vendor in SRM ECS and replicated to the backend, does the "partners" tab available in the PO in backend. please let me know of any customization on how to transfer different addresses for vendor from SRM PO to backend PO,

  • 9i Net Configuration Assistant problem

    Hello I've installed 10g for Windows (XPSP1 PC) where there were separate installations of 9i client and 9i db. All have different home and seems to work fine. The problem is that both 9i client and 9i db Net Configuration Assistant do not work. Foll