Call object was called with start date in the previous month

We have a single cycle maintenance plan for 30 days.
Shift Factor Late Compl.   : 100%
Tolerance                    :  10%
Shift Factor Early Compl. :  100%
Tolerance                    :    10%
Cycle modification factor:    1
Factory calendar            :  NIL
Call horizon                    : 100%
Scheduling period          :  90 DAY
Scheduling indicator       : Time
Call no . 11 was a plan date of 14.08.2009 has completion date 14.08.2009. Schedule type/status has "scheduled complete".
Call no. 12 was called on 13.09.2009 which is in the past.
Can someone explain why the system called the order with a starting date in the previuos month , that is , 13.09.2009.
And how to rectify it to make it current date for the next call object?
Thanks,
Manohar

I checked the algorithm for call no. 12
Start of Cycle                07.08.2008
Last planned date         14.08.2009
Compl.Predecess           14.08.2009        Absolute shift                +   0 Da
Planned cycle/offset      +    30 Da          Relative shift            0 % =   0 Da
Shift                                 +     0 Da           erance value           0 % =   0 Da
Planned Dates Due   13.09.2009    Completed on
Last call on              15.10.2009    Called by               IP1020091015
Workorder generated has start date 13.09.2009.
Should we restart this plan , as the start dates in call object are at least 1 month old ?
Thanks,
Manohar

Similar Messages

  • Filter a List for data from the Previous Month

    Hello,
    I have audit data for each month of the year.  At the beginning of one month I pull a report from the previous month.  I would like to have a view in my SharePoint list that shows only the data from the previous month.
    I am not a programmer or developer, so I was wondering if this is possible without out of the box tools.
    Here is what I have done so far:
    Created two calculated columns to find the start and end date of the previous month
              Previous Month Start =DATE(YEAR([Date of Review]),MONTH([Date of Review])-1,1)
              Previous Month End   =DATE(YEAR([Date of Review]),MONTH([Date of Review]),0)
    I have verified these two calculations do show the correct dates. 
    So I can generate the dates, but I don't know how to set up a view filter that will show only data from the previous month. 
    Please help.

    What you need is the calculated column to display the start and the end of the next month, not the previous month. Then you can do a view filter where Start<Today & End>Today.
    EX: If you have a document with date 15-03-2014, you need to save the dates 01-04-2014(start) and 30-04-2014(End).
    Then If Start < [Today] and End > [Today], you can show the document

  • Is there a way to show the end dates of the previous month stand out?

    is there a way to show the end dates of the previous month in bold or make it stand out? so 30,31 and 1st of this month don't all look the same? For example the 30,31st get a regular text since they are a part of the the last month and this month gets bold dates? Its hard to read the dates anyways.

    Pics and more
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.
    5:05 PM Sunday; January 4, 2009

  • 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

  • Getting last date of the previous  month

    Hi
       Am giving one date. FOr that day i hav to take previous month last date.
    How can i do. IMportant : Last date of previous month

    u can make the code work like this.
    data: date like sy-datum,
          date1 like sy-datum.
    date = sy-datum.
    CALL FUNCTION 'RP_LAST_DAY_OF_MONTHS'
      EXPORTING
        day_in                  = date
    IMPORTING
       LAST_DAY_OF_MONTH       = date1
    EXCEPTIONS
       DAY_IN_NO_DATE          = 1
       OTHERS                  = 2
    add 1 to date1.
    write:/ 'next month start date:', date1.
    *to fetch the march month last date.
    date1+4(2) = 03.
    CALL FUNCTION 'RP_LAST_DAY_OF_MONTHS'
      EXPORTING
        day_in                  = date1
    IMPORTING
       LAST_DAY_OF_MONTH       = date1
    EXCEPTIONS
       DAY_IN_NO_DATE          = 1
       OTHERS                  = 2
    write:/ 'last date of march:', date1.
    Please close your previous threads.

  • I need help. My new iphone 4s was working with no errors for the past month. I was out one right and it was below 30 degrees. when i came in ny house it was about 75-80. I went to sleep and nothing was wrong with my iphone. I woke up and it won't turn on.

    If anyone could help?

    Hello dvf276
    Follow the steps in the article below to resolve issues with your iPhone not powering on.
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/ts3281
    Regards,
    -Norm G.

  • FM for the last date of the previos month

    Hi folks
    my requirement is if we enter the calendar month say YYYYMM in the selection
    screen. it has to get the previous month last date in the format DDMMYYYY
    For eg.,  selection screen input  200704
                required output : 31/03/2007
    Is there any standard function module.
    please urgent
    Thanks in Advance
    Rao

    Hi,
    Please try this.
    data: wa_idate like sy-datum,
          wa_odate like sy-datum.
    wa_idate(6) = p_date.
    wa_idate+6(2) = '01'.
    wa_odate = w_idate - 1.
    OR
    call function 'RP_CALC_DATE_IN_INTERVAL'
      exporting
        date      = wa_idate
        days      = 0
        months    = 1
        signum    = '-'
        years     = 0
      importing
        calc_date = wa_odate.
    write: / 'Last date of the previous month: ', wa_odate.
    Regards,
    Ferry Lianto

  • Struggling with MDX Filter Expression for Previous Month in SSRS

    I am trying to query only data from the previous month. 
    I looked at my Month member and the it looks like so... [Date].[Calendar].[Month].&[2015-04-01T00:00:00]
    Here is my filter expression:
    StrToMember ("[Date].[Calendar].[Month].&[" + format(now(),"yyyy-MM") +  "-01T00:00:00]" ).lag(1)
    I am not getting any errors, I am just getting getting "No rows found" - however there is certainly data in last month. I even tried removing the lag() function thinking that might be causing it, but there are still no errors, just no rows returned.
    Here is the complete query:
     SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, NON EMPTY { ([Date].[Calendar].[Date].ALLMEMBERS ) } DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS FROM ( SELECT ( StrToMember ("[Date].[Calendar].[Month].&[" +
    format(now(),"yyyy-MM") +  "-01T00:00:00]" ) ) ON COLUMNS FROM [Data Warehouse]) 

    Hi S,
    I can't tell exactly what your issue is, but I can give you a couple of tips to help diagnose it.
    Try the following queries. They aren't fixes, just simplifications of your query to help you diagnose where the issue is.
    --This query will let you what your string function is returning with what you want.
    With member measures.x as "[Date].[Calendar].[Month].&["
    + format(now(),"yyyy-MM") +  "-01T00:00:00]" 
    member measures.y as [Date].[Calendar].currentmember.uniquename
    select {measures.x,measures.y} on 0
    [Date].[Calendar].[Month].&[2015-04-01T00:00:00] on 1
     from [data warehouse]
    --This query will give you the date without lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, StrToMember ("[Date].[Calendar].[Month].&["
    + format(now(),"yyyy-MM") +  "-01T00:00:00]" )  on rows FROM [Data Warehouse]) 
    --This query will give you the date with lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, [Date].[Calendar].[Month].&[2015-04-23T00:00:00].lag(1)  on rows FROM [Data Warehouse]) 
    --This query will give you the date with lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, StrToMember ("[Date].[Calendar].[Month].&[" + format(now(),"yyyy-MM") +  "-01T00:00:00]" ).lag(1)  on rows FROM [Data Warehouse]) 
    --This query will show you the member without lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, NON EMPTY
    { ([Date].[Calendar].[Date].ALLMEMBERS ) } DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS FROM ( SELECT ( StrToMember ("[Date].[Calendar].[Month].&[2015-04-01T00:00:00]" ) ) ON COLUMNS FROM [Data Warehouse]) 
    --This query will show you the member without lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, NON EMPTY
    { ([Date].[Calendar].[Date].ALLMEMBERS ) } DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS FROM ( SELECT ( StrToMember ("[Date].[Calendar].[Month].&[2015-04-01T00:00:00]" ) ) ON COLUMNS FROM [Data Warehouse]) 
    --This query will give you the date without lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, StrToMember
    ("[Date].[Calendar].[Month].&[" + format(now(),"yyyy-MM") +  "-01T00:00:00]" )  on rows FROM [Data Warehouse]) 
    --This query will give you the date without lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, StrToMember
    ("[Date].[Calendar].[Month].&[" + format(now(),"yyyy-MM") +  "-01T00:00:00]" )  on rows FROM [Data Warehouse]) 
    --This query will give you the date without lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, StrToMember
    ("[Date].[Calendar].[Month].&[" + format(now(),"yyyy-MM") +  "-01T00:00:00]" )  on rows FROM [Data Warehouse]) 
    Richard

  • All the dayname dates of a previous month

    i have a date '01/25/2015' which is sunday. how to get all the sunday dates of the previous month 
    so the result is
    07/12/2014,   14/12/2014,   21/12/2014,    28/12/2014

    Because you asked to see all Sundays in Previous Month. I am guessing you want the same day(Monday, Tuesday, ...) from previous month based on the day that you passed. 
    If so, please check:
    DECLARE @Today DATE = CURRENT_TIMESTAMP -- You can change to any date that you want
    DECLARE @myDate DATE = DATEADD(MONTH, DATEDIFF(MONTH, '01/01/1900', @Today) - 1, '01/01/1900')
    WHILE @myDate < DATEADD(MONTH, DATEDIFF(MONTH, '01/01/1900', @Today), '01/01/1900')
    BEGIN 
    IF DATEPART(WEEKDAY, @myDATE) = DATEPART(WEEKDAY, @Today) 
    BEGIN 
    PRINT(@myDate) 
    END 
    SET @myDate = DATEADD(DAY, 1, @myDate) 
    END 
    Best Wishes, Arbi; Please vote if you find this posting was helpful or Mark it as answered.

  • How to call Absence start date in absence Dff in SSHR.

    How to call Absence start date in absence Dff in SSHR.

    Did you try querying '%Absence%' in Flexfield Form Extension? You Should see 'Absence Descriptive Flex Field'.
    Thanks, Naveen G

  • Calls with mobile data

    Hello.
    I can't make calls with mobile data, on mobile skype to other phone numbers, I can only make with wifi connect, does somebody knows who to make calls with mobile data?
    Thanks

    You should be able to make calls with mobile data, unless your carrier's network is poorly configured and/or they are explicitly blocking skype. Audio quality can be quite shoddy on the slowest networks such as EDGE/GPRS though.

  • HCM errors in phase Identify Objects for Transfer and Start Data Selection.

    Hello Colleagues ,
    Background: We are using TDMS HCM PA PD Expert package to transfer all of the HCM data
    We are using TDMS 4.0 SP 5. We are trying to do the Configuraition in Identify Objects for Transfer and Start Data Selection.. In this phase, we are encountering the issue of 'choose to confirm to trigger data selection'.  The only option in this activit is'confirm batch' and 'confirm online'. Even if we press the button, we are still encountering issues. What selections then or values can we use?Thank you. Kindly see screen shot
    Regards,
    Meinard

    Hello Meinard,
    There could be two issues:
    First check if you have assigned the target ranges for the dialog user which you are using to select data from sender system. You need to maintain target ranges in activity 'Define target ranges for users' which you can find under activity "Configuration and Utilities in Control system".
    Secondly, there could be authorizaton issues for the sender system user. Check for any authorization issue in SU53 in sender system for the user which you used to logon to sender system.
    Thanks
    Anita

  • AEX CS3 error  {SetOutputWorld called with a world of the wrong size}

    I am getting the following message:
    After Effects error: internal verification failure, sorry! {SetOutputWorld called with a world of the wrong size}
    ( 78 :: 4 )
    Any suggestions?

    Check this:
    http://aeerrors.myleniumstuff.de/?p=547
    Beyond that, you will have to provide more info on what you actually do. Could be a couple of things from the CoDec issues mention in my collection to outdated plug-ins doing something weird...
    Mylenium

  • Problem-planned order start date in the past

    I use PP-PI - After MRP run, planned order was created and has exception message "06-start date in the past" its make me wonder because before this problem occur we already tested many time and never found this message(06). then i check in OPPR- field "start in past" is blank, OPPQ- field "Start in past" are not check, OPUZ-Scheduling Type is backwards and field "Start in the Past" is blank, OPU5-Scheduling Type is backwards and field "Start in the Past" is blank.
    do any guru know why system not use forward scheduling when found that start date in the past? or have any config of other module which may lead to this issue?
    thank in advance.

    In OPU5,
    Check the setting for correct MRP group which is assigned in  material master or in the SPRO node
    Production >Material Requirements Planning>MRP Groups-->Define MRP Group for Each Material Type.
    check and come back

  • Burn failed: there was an error producing data for the burn

    Getting the following message after trying to bounce a project to CD:
    Burn Fail: There was an error producing data for the burn.
    Using Logic Pro 9. Burn has worked with all projects up til now. Not sure what is different about this one. Still works with old projects. ANy ideas? Thanks.

    Thanks very much for responding John, Minimum was to the CD. I have an Internal Superdrive. it does dvd and cd-rs. At this time, since my original post, I have burned four smallish rolls like 200 photos at 200+ MB's with success. And then I can try less say 100 photos @ 110MB and I get the error, and coaster that is unreadable. I have a partition area on another internal hard drive that I may try to transfer to so I can get these off my computer and maybe reinstall iPhoto. I will try to pop them into a folder and copy with Toast , which i use at times for other projects. I just like the idea of keeping all the rolls in order and not losing any of the data that is part of the originals. Any other ideas would be appreciated. The photos are sort of important.

Maybe you are looking for

  • I created a form, how do I save it?

    I created a form, how do I save it?

  • Arbitration settings on R-series FPGA

    I have a PXI-7854R on which I'm attempting to sample an Analog Input at its fastest possible rate (nominally 750kHz).  By setting "Arbitrate if Multiple Requestors Only" I can set the tick rate to 52 which gives ~769 kHz.  Recently I extended my code

  • Working in Elements Editor

    After I select a photo from the organizer (elements 12) that I wish to edit - then open the editor - the photo is not there - how do I get it to load into the editor space?

  • Generate WWPN from Multiple Servers

    Hello, I am trying to make this script that will generate the WWPNs from multiple servers, but for some reason it is only generating the WWPN of the machine but not the hostnames, how do I make it generate the hostname of each WWPN that it lists? $co

  • Monitor Is Flickering - ATI Display Driver Problem Error Message

    Hello, for the last few weeks, I have been having a monitor issue. Everytime I turn my computer and monitor on, it is flickering like crazy on my HP 2509B Desktop Monitor, and on the right bottom corner a flag shows up with ATI Display driver, and I