Display information on Month wise

We have one requirement and we need to display the Month wise information on the report (Sysdate - 1, sydate -2 ....etc)
for example today is 08 Sept 2011 In template level we need to display below
Sept 2011 Aug 2011 Jul 2011 Jun 2011 May 2011 Apr 2011
Please let me know if it's possible to do in RTF Template.

Pull all the required date and data from DB using queries,.

Similar Messages

  • Display schedule qty - Month wise in ALV Grid

    Hi Experts,
    I have a requirement to display the schedule line quantities month wise in ALV  Grid. The columns sholud be dynamic columns based on the input date range. I got some idea about how to create dynamic ALV but it is not clear to implement in my requirement.
    Please Guide me in achiving the same.
    Example:
    Jan 2011      Feb 2011     March 2011
    100               2000            300
    Thanks&Regards,
    Karthik

    Hi.,
    Create field catalog dynamically as like this.,
    select-options s_date for sy-datum.
    data: n type i,
          count type i,
          cnt type string,
          field type string,
          descr type string.
    DATA: m TYPE t247-mnr,
          month_name type char10,
          m1 type i.
    n = s_date-high+4(2) - s_date-low+4(2) .   " getting number of months
    m1 = s_date-low+4(2).
    m = m1.
    n = n + 1.
    DO n TIMES.   " building field catalog dynamically
      m = m + 1.
      count = count + 1.
      cnt = count.
      concatenate 'FIELD' cnt into field.
      CALL FUNCTION 'ISP_GET_MONTH_NAME'    " FM to get month name
          EXPORTING
            LANGUAGE           =  sy-langu
            MONTH_NUMBER       =   m
         IMPORTING
    *    LANGU_BACK         =
           LONGTEXT           =  month_name .
      concatenate month_name s_date-low+0(4) into descr separated by ''.
      wa_fieldcat-col_pos = count.
      wa_fieldcat-row_pos = '1'.
      wa_fieldcat-fieldname = field.
      wa_fieldcat-seltext_m = descr.
      append wa_fieldcat to it_fieldcat.
      clear wa_fieldcat.
    ENDDO.
    After this create dynamic table using,
    CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog = t_fldcat
        IMPORTING
          ep_table        = t_newtable.
    then loop the internal table and assign the component to final internal table,.
    like .,
    CONCATENATE 'FIELD' index INTO  fieldvalue.     " do same like fieldcatalog
        ASSIGN COMPONENT  fieldvalue   OF STRUCTURE <fs_dyntable> TO <fs_fldval>.
        <fs_fldval> = wa-fieldvalue.
    hope this helps u.,
    Thanks & Regards,
    Kiran

  • Display data in month wise

    Hi all,
    I have my data in the table as date wise. I need to sum this data in month wise.
    Can anyone tell me how to do it. Is their any fm to do it or any sample pgm of this kind.
    For ex my output should be like this :
    field1 field2 Month1 Month2 Month3 Month4 ..
    Waiting for reply,
    Regards,
    Priya

    hi priya,
    First of all sort the whole set of values as per date wise into an internal table.
    Sort the table as per the date .
    CONCATENATE PR_MONTH '01' INTO W_FIRST_DATE.
            CALL FUNCTION 'LAST_DAY_OF_MONTHS'
              EXPORTING
                DAY_IN            = W_FIRST_DATE
              IMPORTING
                LAST_DAY_OF_MONTH = W_LAST_DATE
              EXCEPTIONS
                DAY_IN_NO_DATE    = 1
                OTHERS            = 2.
            IF SY-SUBRC <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
            ENDIF.
                  W_DATE = W_FIRST_DATE.
    With this try to determine the first and last days of the month
    From where u want to start .
    Capture the month field from date field into pr_month.
    Set the first date of the month to 01 like 02/01/2006
    Suppose u had 02/02/2006 as the first occurance of the date then
    U r trying to determine the first date and last date of ur feb month for the year 2006 .
    Now 02/01/2006 and 02/28/2006 are determined by this process .
    Set date_low  = 02/01/2006 .
        Date_high = 02/28/2006.
    Now into ur select statement capture the fields between 02/01/2006 and 02/28/2006 just like range .
    U can use select between or range
    ,so this covers all the fields for feb ,
    Use collect on ur final output table which will give u the final sum values.
    Now next field is say 03/10/2006 , then use the same process to capture the values .
    Itab say is containg date fields
    Logic is
    Loop at itab.
    Month = itab-date+(x)
    At new month.
       Perform operation .
    Endat.
    Endloop.

  • Report display will be 2010,2011 year wise display and 2012 Month display

    Hi,
           I want to Create Report, output will be 2010,2011 year wise display, 2012,2013 month wise display and Fiscal year quarter display, all are display based on input value of Fiscal year data, please anyone guide me, How to do?
    Thanks,
    Nandish

    Hi, 
          How to assign KF to Time Characteristics,My report dsplay will be like this, For example
          Input Fiscal YEAR=2010 to 2013
                        Material              2010   2011  APR.2012 to MARCH 2013 
    Quantity              A1              200      300        *                    *
    Quantity              A2              300      400        *                    * 
    Also Display quarter wise display. How to do
    Thanks,
    Nandish

  • Month wise display

    Hi
    I have a requiement , I need to display a report which will give sales target and Actual , month wise for respective sales representative
    the format is as follows
    Sales Representative Jan           feb        upto Dec
                        target Actual  target Actual
    I have a ODS which will give the Actual Fig and I am using a flat file to upload the target values into another ODS
    I will use a Infoset or multiprovider to merge it
    Pl suggest how to go about it ?
    I mean do I need to create 12 Target Infoobjects(Key Fig)
    and how i will do mapping and  compare month wise target and actual values
    regrds
    kisholoy

    Hi kisholoy,
    According to me u need not to have separate ODS for the Target figures, u can have the target data into the Actual figure ODS with different infosource arrangement for the Target figures.
    I have done such thing previously and it works fine in the same situation.
    Well at a reporting side u can keep Sales representative in selection so that viewer can see report for the perticular sales representative or can see for all sales representative.
    For this arrangement follow the things i have mentioned hereabove.
    1. create a structure for the months in a year. PS: Also put Fiscal year in Selection. (Put this fiscal year and sales representative in the Free characteristics.)
    2. Show Text and key for sales representative by ticking ovet this display option in the properties.
    3. Go in the Columns create strcture for actual and target figures.
    Thus ur query is ready. Do some additional settings as per custemer need.
    Hope it helps.
    Assign the points if it works.

  • Display total dmbtr according to mat type and month wise

    hi all,
    i want to display total dmbtr according to mat type and month wise. like
    month       mat.type  total_dmbtr
    jan 2008   fert           xxxxxxxxxx
    jan 2008   mcfe         yyyyyyyy
    feb 2008  fert  mmmmm

    this is my prog..but am gettin o/p for one month irrespective of material type..
    tables : mseg, mkpf, mara, S031.
    ********************DECLARATION******************************************
    types : begin of ty_mkpf,
            budat type budat,
            mblnr type mblnr,
            end of ty_mkpf.
    TYPES : BEGIN OF TY_S031,
            WERKS TYPE werks_d,
            SPMON TYPE SPMON,
            matnr TYPE matnr,
            END OF TY_S031.
    types : begin of ty_mseg,
            mblnr type mblnr,
            matnr type matnr,
            werks type werks_d,
            menge type menge_d,
            dmbtr type dmbtr,
            bwart type bwart,
            end of ty_mseg.
    types : begin of ty_mara,
            matnr type matnr,
            mtart type mtart,
            end of ty_mara.
    data : it_mkpf type ty_mkpf occurs 0 with header line,
           it_mseg type ty_mseg occurs 0 with header line,
           it_mara type ty_mara occurs 0 with header line,
           IT_S031 TYPE TY_S031 OCCURS 0 WITH HEADER LINE.
          it_final TYPE ty_final OCCURS 0 WITH HEADER LINE.
    data : flag type dmbtr,
           flag1 type dmbtr ,
           flag3 type dmbtr ,
           flag4 type dmbtr,
           flag5 type dmbtr,
           flag6 type dmbtr,
           flag7 type dmbtr,
           f1 type i VALUE 0,
           num_of_loops TYPE i VALUE 0,
           flag2 TYPE spmon.
    **********************************INITIALIZATION***************************
    flag  = 0.
    flag1 = 0.
    flag3 = 0.
    flag4 = 0.
    flag5 = 0.
    flag6 = 0.
    flag7 = 0.
    ******************selection screen*****************************************
    selection-screen begin of block b1 with frame title txt_001.
    select-options : plant for S031-werks,
                     month for S031-SPMON.
                    date for mkpf-budat. "+4(2).
                    MONTH FOR MONTH_NAMES_GET.
    selection-screen end of block b1.
    flag2 = month-low.
    f1 = month-high - month-low.
    if month-high is initial.
      num_of_loops = 1.
    else.
      num_of_loops =  f1 + 1.
    endif.
    start-of-selection.
      perform getdata1.
    *&      Form  get_data
          text
    form getdata1.
    if month-high is INITIAL.
    write : / 'for month  ' COLOR COL_GROUP, flag2 COLOR COL_GROUP.
      Select WERKS SpMON matnr from S031 into corresponding fields of table it_S031
      where SpMON = flag2 AND WERKS IN PLANT.
       loop at IT_S031.
         at first.
            write : /5 'mat_num', 20 'month', 40 'QTY',58'amt',68'movement_type', 85'mat_type'. ",105 'qty remaining'.
            skip.
         endat.
      select single mblnr werks matnr menge dmbtr bwart from mseg into corresponding fields of it_mseg
        where werks = IT_S031-werks and ( bwart = '102' or bwart = '101' or bwart = '601' or bwart = '602' )
          and matnr = it_s031-matnr.
        if it_mseg-bwart = '101'.
          flag = flag + it_mseg-dmbtr.
        elseif it_mseg-bwart = '102'.
          flag1 = flag1 + it_mseg-dmbtr.
        elseif it_mseg-bwart = '601'  .
          flag4 = flag4 + it_mseg-dmbtr.
        elseif it_mseg-bwart = '602'  .
          flag5 = flag5 + it_mseg-dmbtr.
        endif.
        flag3 = flag - flag1. "101-102
        flag6 = flag4 - flag5. "601-602
        select SINGLE matnr mtart from mara into corresponding fields of  it_mara
          where matnr = it_mseg-matnr. " and mtart = 'FERT' .
       loop at it_mara.
          write : / it_mara-matnr,20  IT_S031-SPMON, it_mseg-menge, it_mseg-dmbtr, 70 it_mseg-bwart, 88 it_mara-mtart.
          skip.
        endloop.
      endloop.
      skip 1.
      write : / 'TOTAL QTY RECVD (a = 101-102)      ' , flag3.
      write : / 'TOTAL QTY CONSUMED ( b = 601-602)  ' , flag6.
      flag7 = flag3 - flag6.
      write : / 'QTY REMAINING (a-b)                ' , flag7.
    skip 2.
    flag  = 0.
    flag3 = 0.
    flag4 = 0.
    flag5 = 0.
    flag6 = 0.
    flag7 = 0.
    flag2 = flag2 + 1.
    endif.
      do num_of_loops times.
      if not flag2 gt month-high.
        write : / 'for month  ' COLOR COL_GROUP, flag2 COLOR COL_GROUP.
      Select WERKS SpMON matnr from S031 into corresponding fields of table it_S031
      where SpMON = flag2 AND WERKS IN PLANT.
       loop at IT_S031.
         at first.
            write : /5 'mat_num', 20 'month', 40 'QTY',58'amt',68'movement_type', 85'mat_type'. ",105 'qty remaining'.
            skip.
         endat.
      select single mblnr werks matnr menge dmbtr bwart from mseg into corresponding fields of it_mseg
        where werks = IT_S031-werks and ( bwart = '102' or bwart = '101' or bwart = '601' or bwart = '602' )
          and matnr = it_s031-matnr.
        if it_mseg-bwart = '101'.
          flag = flag + it_mseg-dmbtr.
        elseif it_mseg-bwart = '102'.
          flag1 = flag1 + it_mseg-dmbtr.
        elseif it_mseg-bwart = '601'  .
          flag4 = flag4 + it_mseg-dmbtr.
        elseif it_mseg-bwart = '602'  .
          flag5 = flag5 + it_mseg-dmbtr.
        endif.
        flag3 = flag - flag1. "101-102
        flag6 = flag4 - flag5. "601-602
        select matnr mtart from mara into corresponding fields of table it_mara
          where matnr = it_mseg-matnr. " and mtart = 'FERT' .
        loop at it_mara.
          write : / it_mara-matnr,20  IT_S031-SPMON, it_mseg-menge, it_mseg-dmbtr, 70 it_mseg-bwart, 88 it_mara-mtart.
          skip.
        endloop.
      endloop.
      skip 1.
      write : / 'total recd qty (a = 101-102)       ' , flag3.
      write : / 'total Qty consumed ( b = 601-602)  ' , flag6.
      flag7 = flag3 - flag6.
      write : / 'Qty remaining (a-b)                ' , flag7.
    skip 2.
    flag  = 0. flag3 = 0. flag4 = 0. flag5 = 0. flag6 = 0. flag7 = 0.
    flag2 = flag2 + 1.
    endif.
    enddo.
      endform.                                                    "getdata1

  • Can I change the way iCal displays events in Month view?

    I don't like the way iCal in the new OS displays events in Month view.  It's counter intuitive to have the time of the event be at the far right and grayed out.  I find myself staring and slowly scanning down the display just to find out when I have to be at an appointment.  I wish they had stayed with the other display, not only was it much clearer, it also word wrapped so you could see the entire description.  I have blank space at the bottom of the day, and at the same time missing information because of the lack of wrapped text.

    Hi Daniel,
    The option you have there is to change the calendar of the event (currently the "University" calendar in your screen shot) not the colour.  It is the calendars that have colours in iCal not the events.
    To change the calendar colour in OSX 10.7:
    Click Calendars (in the top-left corner of the iCal window), and select the calendar by clicking its name in the Calendars pop-up list.
    Choose Edit > Get Info.
    Choose a new colour from the pop-up menu in the top-right corner of the Info window.
    To customize the colour, choose Other, and then make your colour selections in the Colours window.
    I hope that helps.
    Best wishes
    John M

  • How to get database growth month wise

    Hi All,
    Can any one help me getting the growth of production database month wise for the current year.
    I mean I need a script which will display the growth of my database month wise for the year 2010.
    Regards,

    hi,
    try something along the lines of this
    --Run the following create table to create segment info.
    create table stats$segment_info as
    select
      sysdate snap_time,owner, segment_name,segment_type , tablespace_name,sum(bytes) bytes from dba_segments group by owner,segment_type, segment_name,tablespace_name /
    -- Run the following once a calendar month via dba_jobs.
    insert into stats$segment_info
    select
    sysdate snap_time,owner, segment_name,segment_type , tablespace_name,sum(bytes) bytes from dba_segments group by owner,segment_type, segment_name,tablespace_name / commit;
    -- run the following report to get tablesapace growth
    column this_mon new_value this_mon
    column last_mon new_value last_mon
    column prev_mon new_value prev_mon
    select to_char(sysdate,'MON YYYY') This_mon
         , To_char(add_months(sysdate,-1),'MON YYYY') Last_mon
         , to_char(add_months(sysdate,-2),'MON YYYY') prev_mon from dual;
    column mins format 99999
    column size_mb heading '&&this_mon' format 99999 column size_mb2 heading '&&prev_mon' format 99999 column size_mb1 heading '&&last_mon' format 99999
    column growth heading 'Growth(%)|   in   |last month' format 9999.99
    select tablespace_name,
    --       to_char(snap_time,'MON YYYY') Month
           max(decode(trunc(snap_time,'MON'),trunc(add_months(sysdate,-2),'MON'),size_m,0))  size_mb2
          ,max(decode(trunc(snap_time,'MON'),trunc(add_months(sysdate,-1),'MON'),size_m,0))  size_mb1
          ,max(decode(trunc(snap_time,'MON'),trunc(sysdate,'MON'),size_m,0))  size_mb
           ,100*(max(decode(trunc(snap_time,'MON'),trunc(sysdate,'MON'),size_m,0))
         -    max(decode(trunc(snap_time,'MON'),trunc(add_months(sysdate,-1),'MON'),size_m,0)))
                     /max(decode(trunc(snap_time,'MON'),trunc(add_months(sysdate,-1),'MON'),size_m,1)) growth from (select  tablespace_name, snap_time
         ,sum(bytes)/1024/1024 size_M
    from stats$segment_info
      where snap_time > trunc(add_months(sysdate,-2),'MON')-2
    group by tablespace_name,snap_time) a
    group by tablespace_name
    order by tablespace_name
    /as far as I am aware this is database independent.
    regards
    Alan

  • Customer  month wise sales

    Dear All
    Any Standared Report Available Customer  month wise sales available?
    Thanks and Regards
    Suresh

    Hi,
    To determine which info blocks should be displayed in the sales summary and how they should be combined in views, see the IMG under Sales and Distribution - Sales Support (CAS) - Sales Summary.
    If you want the sales summary to appear differently to specific users, you can assign views to users in this Customizing step.
    If you do not do this, the system displays the standard reporting view.
    regards,
    Siddharth.

  • Sales voluem monthly wise report

    Hi BW expert,
    I need a repor like apr09,may09,june09 Q1, apr08,may08,june08 Q1 LY. but i restricted apr, may june on posting period its displaying only q1 . i need monthly wise like apr08,may08,june08.i searced this forum as per requirement its not displaying plz any one idea on this how to get montly wise .
    Regards
    ramakrishna

    Hi
    Yes, it is possible to compare the sales for two different periods (be it date, month, quarter, half-year, full year, etc.).   I used the fields "Calendar Year /Month period 1" and "Calendar Year /Month period 2" and also added a formula to show the growth in terms of percentages.    And it is working well in my company.
    In fact I designed the query in the following way:-
    1.   Month - (single month - say Sept. 2009)
    2.   Month - (single month - say Sept. 2008)
    3.  Months - (Jan/Sept. 2009)
    4.    Months - (Jan/Sept. 2008).
    In the query I have made a comparison of sales, ie. sales of Sept. 2009 compared to Sept. 2008 and Sales of Jan/Sept. 2009 compared to Jan/Sept. 2008.   
    All the above done in a single query.
    Regards
    Jayan
    Bangalore, India

  • T-Code for how to check depriciation month wise

    Hi,
    Please provide a T-Code or information how to check depriciation month wise and asset wise on a monthly basis.
    Thanks..

    Thanks for reply...
    My Requirement is this:----
    Suppose My Asset value is 50,00,000 in march 2009 and in April 2009, it is 30,00,000 (below 20,00,000 from March)...we are unable to identify, how that huge diff. comes in it... and in May it is 32,00,000 (only 2,00,000 diff.)...
    So, we want to examine that diff. b/w March and April months....
    How can we check the depreciation month wise.....
    regards....

  • Problem with Policy "Display information about previous logons during user logon"

    Hello,
    I've a problem with the Policy "Setting Display information about previous logons during user logon".
    It is applied correctly on computer, but I can't login anymore and message "Security policies on this computer are set to display information about the last interactive logon. Windows could not retrieve this information. Please contact your network administrator
    for assistance" is appearing.
    My home test domain has 2008 R2 functionality level since months, and I've raised my company infra level functionality to 2012 this morning. Both domain are making the same error.
    This is non-sense, so any idea how to troubleshoot it ? Thanks in advance ! ;-)
    PS : I was able to remove it in order to login again, no worries on this one...

    Did you follow the guidance in http://technet.microsoft.com/en-us/library/dd446680%28v=ws.10%29.aspx?
    Especially the following paragraph - the setting has to be applied to DCs and Members...:
    You configure last interactive logon through a GPO. You must configure the following setting for the GPO with domain controllers in its scope of management if you want to report last interactive logon information to the directory service:
    Computer Configuration| Policies | Administrative Templates | Windows Components | Windows Logon Options | Display information about previous logons during user logon = Enabled
    If you want to display last interactive logon information to the user, you must configure this setting for both the GPO with domain controllers in its scope of management as well as any GPO with Windows Server 2008 and Windows Vista client
    computers in its scope of management.
    Martin
    NO THEY ARE NOT EVIL, if you know what you are doing:
    And if IT bothers me - :))
    Restore the forum design -
    Martin-
    I'm struggling with the TechNet article you direct us to.  We see in the TechNet article that Last Login Notification works ONLY with Server 2008 R2 and Vista.  Do we interpret that correctly?
    We need it to work with Server 2003, Server 2008, Win7, Win8, Win8.1, Server 2012, et. al.
    What is the work around to enable *Last Login Notifications to Users* functionality for these OSs?
    Thanks in advance,
    Robin

  • Is it possible to change the number of weeks to be displayed in the month view in calendar (mavericks)?

    I'd like to know if it's possible to change the number of weeks to be displayed in the month view in calendar? Thanks!

    No.
    There are up to six calendar weeks that might be used to display the 31 possible days in a month.
    So the month view displays six weeks.

  • How to make a report to display next 18 months of data with when user select a particular month from the filter in power pivot tabular model.

    Hi,
    i have a  dimension table  with month_key having values (201201,201202,201203.......202011,202012) and month name ( Jan 12, feb 12,......NOV 20, Dec 20)  and a fact  table with columns (month_key ,measure_types, Amount)
    My requirement is to create a power pivot report  in which when a user select a month from the filter, the report should display the (selected month+18 ) month's data against each type . when JAN 12 is selected ,the jan 2012 +18 = june 2013
    , month name should be populated with months till june 2013 only .
    i tried creating calculated column"END DATE " in the fact table with  dax expression to calculate the 18th monh from the current month  as below 
    month_key END DATE
    201201       201306    
    201202       201307      
    and thought of filtering the table with month key <= ENDDATE but it is not working as expected. could you please guide me on this ? Is there any time intelligence function that serve the purpose . Iam using  excel 2010
    ..hence could not do any calculation on the report side also. please suggest .
    Thanks in advance                                                                                                                                               

    Do you need to show the measure calculated for those 18 months as a total on 1 row, or do you need to select a single month and then display on row filters 18 distinct rows?
    The first is trivial as driezl has suggested.
    The second will require a second calendar table.
    I created this example workbook for a coworker who had a similar problem. You will have to use the disconnected table as your filter and pull your related table onto the rows.
    Finally, the easiest way to deal with the sort of date arithmetic you need to do is to restructure your date table to have a series of "Sequential" fields. These fields should be the number of units of time since the beginning of your calendar.
    For example, consider a calendar starting on January 1, 2010. For January - December 2010, [MonthSequential] = 1, 2, ..., 12. For January - December 2011, [MonthSequential] = 13, 14, ..., 24, and so on, incrementing by 1 for each sequential month in time.
    Assuming you have this set up in your date tables (one related to your model - DimDate - and one disconnected - DisconDimDate) your measure would look like this:
    18 Month Measure:=
    CALCULATE( [Measure]
    , FILTER( DimDate
    , DimDate[MonthSequential] >= MAX( DisconDimDate[MonthSequential] )
    && DimDate[MonthSequential] <= MAX( DisconDimDate[MonthSequential] ) + 18
    Please review this example along with the workbook I have linked above.

  • Stock report with value and qauntity for given date not month wise

    Hi gems,
    can any body give me the standard report for Stock value and qauntity for given date not month wise at storage location level

    Hi
    check the report S_P00_07000139 with the option inventory and raw material report- detail and selection date (from, to date same). List will give opening & closing balances with goods movment and their values.
    Thanks

Maybe you are looking for

  • Planned Delivery Time of Schedule Line

    Dear Gurus, I have done the setting in SPRO >MM>PURCHASING>PP>PROCESSING TIME from 1 day to 0 day bt still  it is picking up one day for schedule lines.There is 0 days planned delivery time in VendorMaster,Material Master,Vendor info record. I hv run

  • Can't get my Limewire music into iTunes - get an error message

    I downloaded some music from Limewire, in my iTunes shared folder, it give an error message that it wont work with the iTunes upgrade, how can I get these songs into my iTunes library? Thanks

  • User accounts (help for a School)

    Need to create user accounts for 15 teachers on a single machine is it possible to dupplicate the accounts and just change there name instead of going through the process of selecting all thanks craig osgood

  • Date in File name is importing date, not shooting date

    Lightroom 2.0 on Windows XP I always used the model (in the french version) "{Nom de fichier>>}_{Date (AAAAMMJJ)>>}" for importing my images (RAW files from Nikon D50, option "convert to DNG"). It gave me names like _DSC8347_20080715 for a picture wh

  • Does the mbp have a tv tuner built-in?

    hi, i'm on the verge of buying a mbp for college/university this year. i just wanted to ask if it was possible to watch TV on the laptop. i know you can watch on demand tv services, such as the bbc's iplayer service, but i wanted to know if you could