I want to see the previous month workload statistics for my system.

Hello,
I want to see the previous month workload statistics for my system. When I go to st03n ->expert mode, go to month view and when I click on previous month workload analysis I see data for 12 days only. However, the data is available in weekly view.
What can be the problem?
Please help.

which version of SAP System you are using
try this option ST03N -> Expert mode -> Total -> Choose the month

Similar Messages

  • Want to see the previous file name in the selection screen field

    Hi,
    I am working with flat file upload. Now my problem is in the selection screen field when i press space bar or backspace i want to see the previous file path which i have taken before. How to do this functionality.
    Thanks in advance,
    Vijay.

    Hi,
    Hope the following code will help u.
    PARAMETER: in_file type ibipparms-path MEMORY ID FID.
    at selection-screen on value-request for in_file.
      call function 'KD_GET_FILENAME_ON_F4'
        exporting
          mask      = ',CSV,*.csv,'
        changing
          file_name = in_file.
    But here when u give a path and execute and come back or executing it again the previous path will automatically come to the in_file field.
    Just check this code.
    Thanks.

  • User wants to see the previous year's W-2 forms, while he is accessing the present year W-2 form

    Hi Folks ,
    I need your expertise in resolving the issue,
    Requirement: User wants to see the previous year’s W-2 forms, while he is accessing the present year W-2 form (2011, 2012 and 2013 years)
    Need to get the information whether we could able to get the previous year’s W-2 forms using standard functionality? Or we should use the customize functionality
    If we want to use the custom functionality , please let us know how to do it ?
    Thanks and Regards ,
    Deepak

    you can use the Features UTREL and UTRES
    Read complete configuration & guide document
    W-2 Online User Guide - ERP Human Capital Management - SCN Wiki
    Configuring Online W-2 - Online W-2 - SAP Library

  • How to download  Standard Price of the Previous Months

    Hi,
    I have a request to download the standard prices of the previous month.
    Below is the Example:
    Material A having the current standard price of $ 100 in Jan,2011 and $ 90 in Dec,2010.
    I can see the standard price of  $90 under Accounting View 1 against "Period 12.2010" Tab.
    I would like to know how can I download the previous month standard prices for the whole list of Materials using Tables or any standard Report.
    Pandu

    Hi Pandu,
    You can meet your requirement through SAP standard report. Find more details:
    Use t-code: S_P99_41000111 - Analyze/Compare Material Cost Estimates.
    Enter the below details in selction screen:
    Plant,
    Material................ To ................
    Costing Variant,
    Costing Date, Valid From (enter the range of dates. e.g. 01.10.2010 to 01.01.2011)
    Costing Status = FR (Released Without Errors).
    Execute the above selction.
    Check in your output layout/change the layout to get Costing date (Key), Costing Status. Material, Plant, etc.
    You will be able to view/download the current month & previous month standard prices.
    Thanks & Regards,
    ADI

  • How to get the previous month and year accordingly

    Hi friends,
    I wanted to select month as number like 4 and year as 2011
    but I want to select the previous month as of sysdate
    like if the sysdate is 10-jun-2011
    it should give me 5 as month and
    in the year it should give as 2011
    if the sysdate is 01-jan-2012
    the month should be as 12 and year should be as 2011
    thanks

    Hi,
    776317 wrote:
    thanks a lot I just dont need the 0 being prefixed... can you pls tell how to avoid that as well pls
    TO_CHAR ( ADD_MONTHS (SYSDATE, -1)
            , 'FMmm yyyy'
           )For details about how the FM modifier works, wee the SQL Language manual:
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/sql_elements004.htm#sthref456

  • I want to see the history of the mozilla browser in my computer for the month of November 2013 but I can not be you that there is a solution that is very urgent

    on my browser history are displayed months since December 2013 until now but I want to see the month of November 2013 to help me find the solution that is very urgent

    Hi Maha123,
    If your Firefox history only goes as far back as December, I'm afraid it's unlikely that you'll be able to retrieve information from any earlier.
    It might worth contacting your Internet Service Provider (ISP) as they may have logs of the websites you visited in November.
    Regards,
    Jayelbe

  • SAP Trans.Code-To view the previous month's OSP Report

    Pl.mention the SAP trans.code for view the OSP status as on previous month.For an example,I want to see the status of OSP stocks as on 30.11.2010.How can I see?From MBLB,we can see the current OSP stock status.Is there any trans.Code for view the previous month OSP stock status?
    Regards

    hi,
        there is no t code specific to your requirement, but you can get the details through MB51, by metioning repective date and movement types like 541,543 etc..
         hope this will help..
    Regards
    Manohar

  • Function to retrieve all days of the previous month.

    Hi,
    Yes, it's a monthly report i've been given the task to achieve.
    So, all I need is all days of previous month (even if there is no data for this day)
    I've been instructed to use the following code, but it does not return any value:
    DECLARE
       CURSOR CUR_LAST_DAY IS
          SELECT TO_CHAR (LAST_DAY (ADD_MONTHS (SYSDATE, -1) ), 'DD')
            FROM DUAL;
       VVA_LAST_DAY   VARCHAR2 (2);
       VNU_JOUR       NUMBER       := 0;
    BEGIN
       OPEN CUR_LAST_DAY;
       FETCH CUR_LAST_DAY
        INTO VVA_LAST_DAY;
       CLOSE CUR_LAST_DAY;
       WHILE VNU_JOUR <= TO_NUMBER (VVA_LAST_DAY) - 1
       LOOP
          VNU_JOUR := VNU_JOUR + 1;
       END LOOP;
    END;
    --CLOSE CUR_LAST_DAY
    --DEALLOCATE CUR_LAST_DAY-----
    On the other end, i've developped this code:
    SELECT TO_CHAR(SYSDATE,'dd')
    FROM DUAL
    WHERE TO_CHAR(SYSDATE,'dd') >= to_char(to_date(to_char(ADD_MONTHS(SYSDATE, -1),'yyyy-mm')||'-01'),'yyyy-mm-dd')
    AND TO_CHAR(SYSDATE,'dd') < to_char(LAST_DAY(to_date(to_date(to_char(ADD_MONTHS(SYSDATE, -1),'yyyy-mm')||'-01'),'yyyy-mm-dd')));Which is returning a null value. :(
    Regards

    Hello,
    You want to retrieve complete days of last month from one query...so here it is..
    SELECT
    TO_DATE(LEVEL||'-'||TO_CHAR(ADD_MONTHS(SYSDATE,-1),'MON-YY'),'DD-MON-YY') COMP_DATE,
    TO_CHAR(TO_DATE(LEVEL||'-'||TO_CHAR(ADD_MONTHS(SYSDATE,-1),'MON-YY'),'DD-MON-YY'),'DD') ONLY_DD,
    TO_CHAR(TO_DATE(LEVEL||'-'||TO_CHAR(ADD_MONTHS(SYSDATE,-1),'MON-YY'),'DD-MON-YY'),'MM') ONLY_MM,
    TO_CHAR(TO_DATE(LEVEL||'-'||TO_CHAR(ADD_MONTHS(SYSDATE,-1),'MON-YY'),'DD-MON-YY'),'YY') ONLY_YY
    FROM DUAL
    CONNECT BY LEVEL <= TO_NUMBER(TO_CHAR(LAST_DAY(ADD_MONTHS(SYSDATE,-1)),'DD'))I am not at database machine so therefore not tested.
    But one thing keep in mind that this forum only for reports there is separate forum for sql and pl/sql.
    Function to retrieve all days of the previous month.
    -Ammad
    Edited by: Ammad Ahmed on Apr 22, 2010 10:53 PM
    Spelling Mistake

  • For selection parameter the default date should be of the previous month.

    Hi all,
    In my selection-screen what i want is  for the selection parameter "Selection period month" the default value to be the previous month.
    For example today is 24.09.2008 so the default value of this field has to be 200808 instead of 200809 today.
    please tell me how should i do this.
    thanks in advance.

    Hi,
    Check the following code:
    data: f_date type sy-datum,
          f_dd(2) type c,
          f_mm(2) type c,
          f_yyyy(4) type c,
          f_pdt type sy-datum.
    parameters: p_date like sy-datum.
    initialization.
    f_date = sy-datum.
    f_dd = sy-datum+6(2).
    f_mm = sy-datum+4(2) - 1.
    f_yyyy = sy-datum+0(4).
    if f_mm eq 0.
    concatenate f_yyyy '12' f_dd  into f_pdt.
    elseif f_mm eq 1 or
       f_mm eq 2 or
       f_mm eq 3 or
       f_mm eq 4 or
       f_mm eq 5 or
       f_mm eq 6 or
       f_mm eq 7 or
       f_mm eq 8 or
       f_mm eq 9.
    concatenate f_yyyy '0' f_mm f_dd  into f_pdt.
    else.
    concatenate f_yyyy f_mm f_dd  into f_pdt.
    endif.
    p_date = f_pdt.
    start-of-selection.
    write : / f_date,
             / f_pdt.
    Regards,
    Bhaskar
    Edited by: Bhaskar Chikine on Sep 24, 2008 12:49 PM

  • Regarding the first day of the previous month

    hi experts,
                  suppose the date is '010406' what i want that is der any function module so that i can get the first date of the previous month i.e '010306' plz let me know......or sud i add logic for that if yes plz help me........

    better to use own logic for your requirement....
    suppose you have date field
    data : date1 like sy-datum,
    mon(2) type n,
    year(4),
             prev like sy-datum.
    date1 = '20070720'.
    mon = date1+4(2).
    year = date1+0(4).
    if mon ne '01'.
    mon = mon - 1.
    concatenate year mon '01' into prev.
    else.
    mon = '12'.
    year = year - 1.
    concatenate year mon '01' into prev.
    endif.
    write : / prev.
    if the date is like your format i.e. 010406 then
    data : date1(6) value '010406',
    mon(2) type n,
    year(4),
             prev like sy-datum.
    date1 = '20070720'.
    mon = date1+2(2).
    year = date1+4(2).
    if mon ne '01'.
    mon = mon - 1.
    concatenate year mon '01' into prev.
    else.
    mon = '12'.
    year = year - 1.
    concatenate year mon '01' into prev.
    endif.
    write : / prev.
    regards
    shiba dutta

  • HT3275 I've 1.85TB empty space on my time Machine, but it only backs up to the beginning of the previous month. it should have weekly back-ups for every month before that. Any ideas why it deletes stuff older than a month?

    I've 1.85TB empty space on my Time Machine, but it only retains back-ups to the beginning of the previous month. I should be able to access weekly back-ups for every month before that until the disk is full. Any ideas why it deletes stuff older than a month?
    Thanks, Rigby.

    If you are using Ethernet to connect your Mac to the Time Capsule, are you allowing at least 2-3 minutes for Time Machine to fully load when you open the application to see your backups?
    If you are using wireless to connect, you may need to allow 8-10 minutes or longer for everything to fully load, depending on the speed of your wireless connection.
    If you see only white time "bars" on the timeline at the right of the screen, you are seeing temporary backups. Permanent backups are displayed with purple "bars".

  • 28th day of the previous month to 27th of the current month

    Hi,
    I am designing a report wherein the data should range from 12:01am on the 28th day of the previous month to 11:59 pm on the 27th of the current month.. This should be a dynamic one as this would be scheduled.
    Any help will be greatly appreciated!
    Thanks & Regards
    BMC

    Hi
    Thanks for your reply and I have been using the same formula given by you but unfortunately it stopped giving the result.  This is how i have given the syntax:
    Create a new field name say From (this will calculate all the data of preceding month starting from 28th)
    if not(month(CurrentDate)=1) then
    date(year(CurrentDate),month(CurrentDate)-1,28)
    else
    date(year(CurrentDate)-1,12,1)
    Creat an another field say To (this will calculate all the data of current month as of 27th)
    if (month(CurrentDate)=1) then
    date(year(CurrentDate),month(CurrentDate),27)
    else
    date(year(CurrentDate)-1,12,1)
    Now create one more field say Time that will include the above two syntaxes.
    {CHG_Change.Considered Res Time}>DateTime({@From}) and {CHG_Change.Considered Res Time}<=DateTime({@To})
    This did work  but seems now its not working.. Can you see if am missing out something here..
    Regards
    Cauvery

  • Function module to get the same date of the previous month

    Hi
    Can anybody tell me how to get the
    same date of the previous month.
    example if i am entering date as 30 may 2007
    i want the date as 30 april 2007

    CALL FUNCTION 'RP_CALC_DATE_IN_INTERVAL'
    EXPORTING
    date = pa_end
    days = '00'
    months = '01'
    signum = '-'
    years = '00'
    IMPORTING
    calc_date = pa_end.
    ENDIF.
    nd try below FMs as well...
    CCM_GO_BACK_MONTHS
    HR_PT_ADD_MONTH_TO_DATE
    RP_CALC_DATE_IN_INTERVAL
    Hope it will solve your problem...
    Reward points if useful..
    Thanks & Regards
    ilesh 24x7

  • Function module which could calculate the previous month's start date.....

    hi,
    I want a function module which could calculate the previous month's start date and end date...
    Say todays date is  like 29.05.2007(start date) it should return
    01.04.2007 and 30.04.2007...
    IS there any FM for this ... or how to go about this scenario ???
    thanks in advance
    samm

    See the below Logic :
    DATA :g_date(2) TYPE n,           " Date
          g_month(2) TYPE n,          " Month
          g_year(4) TYPE n ,          " Year
          g_bill_low(10) TYPE n,       " From date
          g_bill_high(10) TYPE n,      " To date
          g_month1(2) TYPE n,         " Month
          g_year1(4) TYPE n,          " Year
          g_date1(2) TYPE n,          " Date
          g_year2(4) TYPE n,          " Year
          g_datum LIKE sy-datum.      " System date
    RANGES : r_bdate  FOR vbrk-fkdat.             " Billing date
      g_datum = p_date + 10.
      g_month = g_datum+4(2).
      g_year = g_datum+0(4).
      IF g_month = 1.
        g_year = g_year - 1.
        g_month = 12.
        g_date = 1.
      ELSE.
        g_month = g_month - 1.
        g_date = 1.
      ENDIF.
    Passing the date to billing date-low
      CONCATENATE  g_year g_month g_date  INTO g_bill_low.
      r_bdate-low = g_bill_low.
      r_bdate-sign = 'I'.
      r_bdate-option = 'BT'.
      g_month1 = g_datum+4(2).
      g_year1 = g_datum+0(4).
      IF g_month1 = 1.
        g_year1 = g_year1 - 1.
        g_month1 = 12.
      ELSE.
        g_month1 = g_month1 - 1.
      ENDIF.
      CASE g_month1.
        WHEN 1.g_date1 = '31'.
        WHEN 3.g_date1 = '31'.
        WHEN 4.g_date1 = '30'.
        WHEN 5.g_date1 =  '31'.
        WHEN 6.g_date1 = '30'.
        WHEN 7.g_date1 = '31'.
        WHEN 8.g_date1 = '31'.
        WHEN 9.g_date1 = '30'.
        WHEN 10.g_date1 = '31'.
        WHEN 11.g_date1 = '30'.
        WHEN 12.g_date1 = '31'.
      ENDCASE.
      g_year2 = g_year1.
      IF g_month1 = 2.
        g_year2 = g_year2 MOD 4 .
        IF g_year2 = 0.
          g_date1 = 29.
        ELSE.
          g_date1 = 28.
        ENDIF.
      ENDIF.
    Passing the date to billing date-high
      CONCATENATE  g_year1  g_month1  g_date1 INTO g_bill_high.
      r_bdate-high = g_bill_high.
      APPEND r_bdate.
    Reward Points if it is helpful
    Thanks
    Seshu

  • Posting Depreciation for the previous months

    HI Experts,
    We got new asset  AS100SA  capitalized on 28.02.2013 (Fiscal Year Period 4  2014 )  and we want to start depreciation  this  asset
    start from  Feb 2014 (Fiscal Year Period 4 2014),
    We have run the  depreciation  for all asset in current Month ( Period 5 2014) , when we try run the  depreciation for new asset  AS100SA
    for the previous months in the Current Period , system prompt error msg : "Period  4 is already posted".
    Asset Master Data
          when I view the posted values Tab in the Asset Explorer (AW01N), system is showing the planned values beginning period 5 (Fiscal Year =  March 2014)  
           AFAB - Depreciation Run
           Period 4 (Previous Month for new asset)
          Error Message 
             kindly advise on this issue. thanks in advance.

    Hi Ginee,
    Radio button planned posting run can only be choose once per period and when you choose planned posting run you should not specify your asset number.
    As for your case, you can run the depreciation (AFAB) by choosing the repeat button (specify your asset number) since you already done the planned posting run for period 4 and after the depreciation posted you can check the posted value tab in AW01N again, system will show the posted value in period 4.
    Ex : asset acquisition : 01.01.2014, in AW01N it start with period 2 but the depreciation start from period 1.
    run AFAB with this parameter
    AW01N after AFAB
    Regards,
    Lelyana

Maybe you are looking for