Start of cycle date is not taking while scheduling

Hi
I have created a maintainance plan with scheduling indicator TIME and scheduling period 365 days . I am giving start of cycle date as 04-02-2011 but while scheduling the plan it is taking 19-02-2011 as first plan date . my maintainance plan cycle is 15 days.
I want that date as 04-02-2011 . how can I get that.
Regards
Kumar

The system is working fine. Once you decide the start cycle date then first plan /Order will come only after the cycle duration from the start cycle date. You can put 15 day before date from 4-2-2011. then you will get first call on desired date.
Raj

Similar Messages

  • Data Associtions not enabling  while i am  trying to do data mapping with data Associtions in BPM studio what is the reson?

    Data Associtions not enabling  while i am  trying to do data mapping with data Associtions in BPM studio what is the reson?

    Shouldn't @StartDate be an input parameter to the stored procedure? @RunDate also?
    Example for sp with parameters:
    http://www.sqlusa.com/bestpractices2008/stored-procedure-parameters/
    The last error will go away upon a successful sp compile.
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Change start of cycle date in maintenance plan

    Dear Experts,
    We would like to change start of cycle date in maintenance plan. Iwe have rescheduled the plan but the start of cycle date remains the same.
    could you please confirm, whether it can be changed. The requirement is because of some Mt plan created with future start date in production (Year-2020) and we want to correct the same.
    Thanks

    Don,
    To determine the next maintenance call date you need to tell the system when the last maintenance call occured
    Example:
    You want the next call date on the 1 June based on a six month cycle. Therefore the last maintenance date would have been 1 January (assuming key date scheduling).
    In your case you need to RESTART your single-cycle plan on the 1 January and the system then calculates the next maintenance calls.
    PeteA

  • SNP Planned order start and end dates are not calculated correctly

    Hello SNP Guru's
    The SNP planned orders generated after the Heuristics run, have a start and end date based on the Activity Duration (Fixed), while the resource consumption is based on the Bucket Consumption (Variable), which is correct.
    The Activity Duration (Fixed) is based on the BOM Base Quantity. So if the Activity Duration = 1 day, and if the order quantity is more than a day, the start and end dates, still shows as 1 day. So no matter what is the order quantity, the start and end dates is always = 1 day.
    Does anyone have any experience in implementing any code to change the start and end dates on SNP Planned Order?
    Seems like it should work as standard.
    Am i missing something?
    Thanks,
    Mangesh

    Dear Mangesh,
    SNP is a infinite planning tool. If you have defined fixed duration to be 1 DAY in the activity, no matter how many quantity you input for your planned order, the order will last for one day. If the resourced is overloaded, you then run capacity levelling to
    banlance the capacity. What your expected beahavior happens in PPDS planning.
    Claire

  • Basic Start and Finish Date coming as default while Order Creation (IW31)

    Hi Members,
    I am in situation where in i am trying to cretae an order from IW31 but after the order creation basic start and basic finish date is being updated as default date which is the current date of creation.
    I have written my code in Include LCOINFNJ where basic start and basic finish date should get populated as per my written code .After debugging i found that the code is populating the dates in structure CAUFVD-GSTRP(basic start date)  and
    CAUFVD-GLTRP(basic end date) but whill posting at user command  SAVE the fields are getting updated back to default dates.
    Even after adding an enhancement point at the end of below given FM where in i am hardcoding the values still the issue remains the same .
    Function Module : CO_ZV_ORDER_POST is the FM responsible for posting.
    Please help regarding this issue .  
    Thanks and Regards.
    Gaurav Chopra

    Hi ,
          If you do not want start and finish date as current date then u can do it via config
    spro ->pm -->maintenance order processing -->Maintenance and service orders -->general data -->Activate default date for current date as basic date  here for a particular plant remove the tick mark in default current date , thus when u create MO on that plant then u will not get any default dates in basic start date and finish date ...
    regrds
    pushpa

  • Line item data is not saving while creating a Sales order using Interactive

    Hi all,
    I am creating a sales order Using Interactive forms. In the form i am having Header data and line item data.I had created two structures one for Header data and one for Line item data. For entering  the LINE ITEM DATA i had created a Dynamic table with Buttons ADD ROW and DELETE ROW.
    User will Add the Row or Delete the Row based on the requirement.
    My issue is When ever the user clicks the SUBMIT button after entering the header data and 3 line items data , Sales order has been created with only first line item and the remaining two line items are not created.
    My Interactive form is like below
    HEADER DATA
    DOC_TYPE
    SALES_ORG
    DIST_CHN
    DIVISION
    PURCH_NO
    PARTN_ROLE
    PART_NO
    LINE ITEM DATA
                             ITEM_NO      MATERIAL          PLANT          QTY        COND_TYPE            COND_VALUE
    ADD ROW
    DELETE ROW
                                                                                    SUBMIT
    My  code for the method ONACTIONCLICK is like below
    method ONACTIONCLICK .
    data:
          Node_Adobe       type ref to If_Wd_Context_Node,
          Node_Zsaleheader       type ref to If_Wd_Context_Node,
          Elem_Zsaleheader       type ref to If_Wd_Context_Element,
          Stru_Zsaleheader       type If_Main=>Element_Zsaleheader,
          Node_Zsaleitem       type ref to If_Wd_Context_Node,
          Elem_Zsaleitem       type ref to If_Wd_Context_Element,
          Stru_Zsaleitem       type If_Main=>Element_Zsaleitem.
      data: header_data type BAPISDHEAD.
      data: item_wa type BAPIITEMIN.
      data: item_data type table of BAPIITEMIN.
      data: partner_wa type BAPIPARTNR.
      data: partner_data type table of BAPIPARTNR.
      data: sales_order type BAPIVBELN-VBELN.
      data: Errorlog type BAPIRETURN1.
    navigate from <CONTEXT> to <ADOBE> via lead selection
      Node_Adobe = wd_Context->get_Child_Node( Name = IF_MAIN=>wdctx_Adobe ).
    navigate from <ADOBE> to <Zsaleheader> via lead selection
      Node_Zsaleheader = Node_Adobe->get_Child_Node( Name = IF_MAIN=>wdctx_Zsaleheader ).
      Node_Zsaleitem = Node_Adobe->get_Child_Node( Name = IF_MAIN=>wdctx_Zsaleitem ).
    get element via lead selection
      Elem_Zsaleheader = Node_Zsaleheader->get_Element(  ).
      Elem_Zsaleitem = Node_Zsaleitem->get_Element(  ).
    get all declared attributes
      Elem_Zsaleheader->get_Static_Attributes(
        importing
          Static_Attributes = Stru_Zsaleheader ).
      header_data-DOC_TYPE = Stru_Zsaleheader-DOC_TYPE.
      header_data-SALES_ORG = Stru_Zsaleheader-SALES_ORG.
      header_data-DISTR_CHAN   = Stru_Zsaleheader-DISTR_CHAN.
      header_data-DIVISION = Stru_Zsaleheader-DIVISION.
      header_data-PURCH_NO = Stru_Zsaleheader-PURCH_NO.
      partner_wa-PARTN_ROLE   = Stru_Zsaleheader-PARTN_ROLE.
      partner_wa-PARTN_NUMB = Stru_Zsaleheader-PARTN_NUMB.
       append partner_wa to partner_data.
        Elem_Zsaleitem->get_Static_Attributes(
        importing
          Static_Attributes = Stru_Zsaleitem ).
      item_wa-ITM_NUMBER = Stru_Zsaleitem-ITM_NUMBER.
      item_wa-MATERIAL   = Stru_Zsaleitem-MATERIAL.
      item_wa-PLANT = Stru_Zsaleitem-PLANT.
      item_wa-REQ_QTY = Stru_Zsaleitem-REQ_QTY.
      item_wa-COND_TYPE   = Stru_Zsaleitem-COND_TYPE.
      item_wa-COND_VALUE = Stru_Zsaleitem-COND_VALUE.
      append item_wa to item_data.
    CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT1'
      EXPORTING
        ORDER_HEADER_IN           = header_data
      WITHOUT_COMMIT            = ' '
      CONVERT_PARVW_AUART       = ' '
    IMPORTING
       SALESDOCUMENT             = sales_order
      SOLD_TO_PARTY             =
      SHIP_TO_PARTY             =
      BILLING_PARTY             =
       RETURN                    = errorlog
      TABLES
        ORDER_ITEMS_IN            = item_data
        ORDER_PARTNERS            = partner_data
      ORDER_ITEMS_OUT           =
      ORDER_CFGS_REF            =
      ORDER_CFGS_INST           =
      ORDER_CFGS_PART_OF        =
      ORDER_CFGS_VALUE          =
      ORDER_CCARD               =
      ORDER_CFGS_BLOB           =
      ORDER_SCHEDULE_EX         =
    endmethod.
    PLEASE SUGGEST ME IF ANY CODE CHANGE IS REQUIRED
    Thanks in advance
    Ajay

    Hi,
    The item data is not read because, the dynamically added rows should also reflect back to the Web Dynpro context. When the user clicks on Add Row, use the Onsubmit event to add a empty line to internal table and then bind it to the context. And if the user removes a row, remove a row from internal table and bind it back to the context.
    You may refer this article.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/802f0ed1-a17a-2c10-7db4-d515a5b047ed
    Regards,
    Runal

  • Basic date is not same with schedule dates

    Hi,
    I have a problem in MD04 stock requirement list.
    Planned order basic date and schedule date is not the same.
    The schedule date finish at year 2010 but basic date still end ad 2009
    in MD04, the date display is basic date.
    Why the basic date is not adjusted?
    in configuration i had choosen adjust basic date in scheduling planned order.
    In material master in house production time is not updated because we use lead time scheduling
    Please kindly help
    Best regards,
    Freddy Ha

    Hi,
    i omit the scheduling maergin key in material master,
    the result of MRP is
    BASIC DATES
    Finish 15.10.2009
    Start 14.10.2009
    PRODUCTION DATES
    15.02.2010 14:33:25
    14.10.2009 07:00:00
    scheduling type i planned order is still "backwards"
    so in MD04 it is say that the goods is available at 15.10.2009 same with requirement dates.
    this seem not right.
    it seems that order finish date is not adjusted by lead time scheduling on "today scheduling".
    Is there a way so order finish date is adjusted by lead time scheduling on "today scheduling" ????
    Best regards,
    Freddy Ha
    Edited by: Freddy Halim on Oct 14, 2009 10:01 AM

  • FTP Delivery Destination Not visible while scheduling a report.

    Hi All,
    We are implementing BI Publisher 11g (As part of OBIEE 11g).
    In BI Pub administration we have defined FTP and Email Delivery Destinations.
    But while Scheduling a report, under Destinations we see only Email option, we are not seeing FTP option.
    Is this happening due to any of the missing configuration or any privileges are missing?, please clarify.
    Thanks,
    Aditya

    Do you have "Use Secure FTP" checked?
    I tried adding a source with that checked and the FTP option didn't show up either, but when I unchecked that box I was able to see the FTP option.

  • Shipping data tab not appearing while creating intercomapny STO PO

    Hi all,
    I am processing the intercompany stock transfer scenario. I have done all the necessary settings for the plant and intercompany billing, but while creating the purchase order I am unable to get the shipping tab as the system cant read the shipping data for the respective vendor. In turn I cant see the purchase order in VL10B.
    Kindly help in this.

    Hi,
    1. Please check in your vendor master  in T-code XK03
    2.  In vendor master , the plant might have defined as plant as vendor  in Tab purchasing data > Extras >additional purchasing data,
    3.If plant field is not appearing there then change plant field in vendor account group field status maintenance from suppress to optional & maintain in vendor master.
    Regards,
    Ajit

  • Data flow not visible while creating remote cube.

    Hi SDN,
    I am working on a remote cube. I need to link the infosource to remote cube. I have  selected the source system and assigned.
    I have done,  like--Remote cube --> Context Menu --> Show Data flow , and I wanted to see the source system , Info source and the remote cube, but could not find them .
    Guide me what I've missed /went wrong.
    Thanks in Advance
    Ankit

    Hi,
    Remote cube is technology where you report on data which is stored in the source system. While creating the Infocube you have to select Remote Infocube Radiobutton and in the next screen it will ask you for the infosource.
    In that infosource you can assign the datasource in the infosource menu.
    Now you see the data flow.
    Hope it works,
    Regards,
    Sasi

  • Correct Data is not shown while opening Input Schedule

    Hi
    I am facing this issue almost in every template i create
    After saving data in a particular template in an input schedule, i reopen the template from the dynamic templates library(etools -> open dynamic template)
    But the data saved previously does not appear, instead it shows the values saved when the template was originally saved.
    How to get the data newly saved data on opening the template automatically ?
    List of options i have tried>
    Have refresh on workbook open checked (etools - workbook options) - does not work
    Have expand on workbook open checked - (works, but takes too much time to load the workbook, need not expand as the row & col expansions are quite static and only data refresh is required)
    Have tried "MNU_EANALYZE_REFRESH" macro on workbook - does not seem to work fine (although when i click on the refresh buttton on the opened workbook/sheet , new data is being fetched correctly.
    Have tried "MNU_ESUBMIT_REFRESH" (but this is not the right macro) as it gives a pop up on workbook open.
    Any possible solution to the same will be greatly helpful
    Has this been solved in any of the SAP 's Support pack versions... Im on SP03.
    -Sridhar

    Hi Sridhar,
    You are absolutely right. Refresh on workbook open does not work as expected. The only workaround is to select expand on workbook open.
    You can try another thing. you can right a macro which will run the refresh menu command when the excel is opened. and this macro will be available only to this workbook.
    Hope this helps.
    // Recent Addtion
    You can use the command
    Private Sub Workbook_Open()
    Call MyMacro   
    End Sub
    u201CMyMacrou201D is the name of YOUR macro. Call your macro which will refresh the workbook.
    Hope this will help.
    Edited by: nilanjan chatterjee on Dec 17, 2009 7:53 AM

  • Data is not preserved while navigating among the jpanels in JTabbedPane.

    My application has JTabbedPane and some jpanels are added to this pane as tabs. and each tab has some JTextFields and Jcheckboxes.
    When i make some changes to the data in first tab and moves to the second tab and again come back to the first tab then i see that the modified data in the first tab is missed out.
    This issue is observed only with JDK1.6.0 , but not with JDK1.5.0. The JTabbedPanes are working fine with JDK1.5.0.
    Can any one suggest that are there any changes in the development of panels added to the JTabbedPane?

    hi Thanks for your quick reply.
    May be i can explain the problem even better. In our code we have one check like jcomponent.isShowing().
    out application need to display different panels on the tab based on the jcombobox selections that user selects on the tab. I mean some panels are visible only based on the user selection in jcombobox. For that we were using method called jcomponent.isShowing() method for this job.
    In JDK 1.6 , jcomponent.isShowing() method is returning the bool value opposite to what was returning in JDK1.5. Based on this check my application need to perform some further steps. Because this is returning the wrong value as against the JDK1.5, i am seeing the different behavior in both JDKs.
    Can any one suggest or give are there any differences came at base level in the functionality of jcomponent.isShwoing() method.
    Thanks in advance

  • Date is not updating while accessing Tcode Zprojects

    Dear experts
    In  Tcode :Zprojects
    I have entered the Project like 0040 after executing this Project
    the date which is showing "Last Process Date ' is older one, it doesnt showing current one
    how to correct this option
    Kindly give me good solution for this problem
    Regards
    krishnamoorthy.p
    Edited by: krishna murthy on Mar 30, 2010 8:23 AM

    Hi Krishna,
    You must be aware of that Y* and z* are customer name space given by SAP. We can not see the tcode you have given, untill your security guys are generous enough to let us in your SAP system :).
    Debug and ask any specific problem you faced.

  • Sold to party is not taking while licencse processing in deemed export

    Dear all
    i am having a problem in   licence  processing creating  in deemed export
    when i want to enter the sold to party and ship to party in  J1ilic01  screen the system is showing  invalid sold - to - party and ship - to - party
    what will be the problem  i cannot able to creat  a  lic value for the customer 
    i have maintained the  excise details also

    Thanks all 
    As per lakshmipathi i tried it is coming  i had zero's in front the system is taking
    sorry for the dely in reply and adding points
    thanks

  • Outlook/Exchange - Free/Busy time is not available while scheduling

    This is very similar to another earlier question "Outlook/Exchange Out-of-office unavailable" [http://answers.microsoft.com/en-us/office/forum/office_2013_release-outlook/outlook-exchange-out-of-office-unavailable/006462a8-a693-4389-b07c-6d9a27576449]: 
    I do not see free/busy time for scheduling, and is unable to setup Out-of-Office Auto-Reply, while I oculd see others calendar content in the Calendar view.
    In theory, these problems should be already fixed by KB2850061 but I do  have newer Russian Office for home and business 2013 (version 15.0.4675.1003) and those problems are still here, while KB #2850061 seems to be inapplicable.
    What is the newer KB fix which is replacing 2850061 which would be working for my verison?

    Hi Timur,
    According to your description, I know that the OOF cannot be setup and cannot see Free/Busy information in Outlook 2013.
    How is the impact, only one user or all users have this issue on Outlook client? How about in OWA?
    As Martin mentioned, both of F/B and OOF are related to EWS. If you have the same issue on OWA, I'm afraid this issue related to Exchange Server side. Please try to verify the EWS setting. Also try to re-build EWS Virtural Directory for testing.
    If this issue only occur on Outlook client, I suggest run Outlook under safe mode or re-create profile. I also suggest ask Outlook Forum for help, so that you can get more professional suggestions.
    Thanks
    Mavis Huang
    TechNet Community Support

Maybe you are looking for

  • Problem with Best Practices Installation Assistant

    Hello! I'm trying to installing the baseline (ecc6)  located to portugal, but i'm having lot's of problems with this. when i activate the projects, the system after some minutes stops in the ecatt /SMBA0/SKB1_O12T_J01 and generates the following runt

  • Installing XML parser

    When xmlparserv2.jar, I get the following error messages: resolving: org/w3c/dom/Element Error while resolving class org/w3c/dom/Element ORA-04043: object org/w3c/dom/Element does not exist I am using Oracle 8.1.5 on HP-UX 11, I have just downloaded

  • New error from SELECT

    Has anyone ever seen this error code / message before? Describe Error: Failed to retreive EXPLAIN plan: OALL8 is in an inconsistent state SELECT statement runs fine in one instance but gets this above error in another instance. Only difference is the

  • Error while resolving class. Help needed

    I've just installed J2SE JDK 5.0 under Ubuntu Linux 5.10. I used to have it installed under Ubuntu 5.04, and then I did not experience the problem I'm having now. I had no problems during the install, and I can compile all .java files I've tried. I c

  • Could not launch Adobe Stabilization Server Error

    Hey Guys, I'll take you down the road I've been traveling on for the past few hours. - Installed CS5.5, everything runs smoothly for the first hour, then I close After Effects, - Open it back up again, and receive the "Quicktime in not Installed, som