Date is not Defined in Factory Calender

Dear all,
We are facing some issue while releasing Process order. It states that Date is not defined in factory calender. and it throws out dates of for particular process order from 21.05.2014 to 15.07.2017.
Please check the attached screen shot & revert your thoughts.
Thanks in advance.

I have found the issue. Actually operation quantities in the phases in the recipe was maintained improperly. Hence the charge quantity was getting multiplied with huge number hence resources allocated to them was considering that huge amt of quantity to be processed on it. Hence dates were coming the ranges of period 2014.
Deep Dave.
However thanks for your all prompt response.

Similar Messages

  • Date not defined in factory calendar

    while creating the process order using the t - code COR1, i got error saying that " Date not defined in factory calendar "
    i extended the factory calendar in t - code SCAL.
    still i am facing the error.
    please help

    Ok Sudhir.
    Then the problem is one of the workcenter you are using in Production Order. The Intervals of available capacity are maintained in a work center capacity whose 'To date' is after the expiration date of the factory calendar. The error does not occur if the date is 12/31/9999.
    Go to workcenter - Capacity - Interval & shifts
    The 'To date' of an interval of available capacity must be maintained so that it is within the validity period of the factory calendar. The exception is the date 12/31/9999, which is allowed.
    Regards
    Abhijit Gautam

  • ME078 delivery date outside period covery by factory calender

    Hi All,
    I am trying to upload some PRs and I have maintained delivery date as 05.12.2008 but system is showing the error message ME078 delivery date outside period covery by factory calender.
    Please suggest.
    Thanks in advance
    Pavan

    hi,
    Check whether the delivery date matches with the that defined in the MMR(MM03) ie. GR processing time...
    You can check the factory calender from OB08...check whether the del. is permitted for the given day...
    Regards
    Priyanka.P

  • Sales tax data do not define output tax

    Dear Experts,
    I am creating contract and getting following error  'Sales tax data do not define output tax' in SAP REFX contract
    I have done the following
    define tax types
    define tax groups
    define tax codes
    Assign tax code to tax type and group
    Assignment of tax transactions key
    Assign country to calculation procedure
    Have i missed something? If you see the contract the tax rate  10% is getting picked Please help
    Thanks Regards
    yezdevan

    Hi Vasudevan,
    Check the following checklist and try.
    1. For tax code used, check for percentage value maintenance for the relevant condition type in transaction FV13, if maintained check for date validity and deletion indicators.
    2. Tax code should be assigned to company code at: Logistics - General -> Tax on Goods Movements -> India -> Basic Settings -> Determination of Excise Duty -> Condition-Based Excise Determination -> Assign Tax Code to Company Codes.
    3. The condition type used to maintain the tax code, as seen in FTXP. should have MVST or MWST as the access sequence in OBYZ settings, based on input or output tax respectively.
    Hope this resolves the issue.
    Best Regards,
    Hardik Sharma

  • How to get past date based on duration and factory calender?

    Hi All,
    when i enter the duration ,i want to get the past date based on factory calender w.r.t current date
    i.e if current date is 26th jun and duration is 10 , the past date should be 12th jun (which should exclude all holidays and weekends).
    Thanks
    Vasumathi

    Hi,
    Please check this FM: I think this will resolve ur issue.
    END_TIME_DETERMINE
    Cheers,
    Vijay.

  • Factory calender issue

    Hi all,
    Here goes a problem with factory calender in project systems.
    The Project performed by the client are flexible. in some projects they work considering sunday as holiday and in some cases they work on  sundays.
    we have only one plant assigned to the projects which has only one factory calender assigned. e.g plant 1000 to factory calender F1(considering sunday as holiday)
    when i create a new project if i change the factory calender at project definition to F2(considering sunday as working) and then if i go futher creating activities. system will still take the default factory calender assigned to plant i.e F1 and not F2.. the factory calender F2 can be seen in project definition, wbs element and activities.
    but when i change dates at network header level and try to schedule.. system is considering factory calender F1.
    can anyone pls tell me how to solve this problem.
    thanks in advance,
    steve

    Please go to work centre --- capacity --- assign required calendar there.
    As in the activity calendar will be picked up from work centre

  • Calculation of Factory Calender

    Hello Gurus,
    I am working on DRP(Distribution Resource Planning). My problem is,
    I need to add some days to the current date and get the resulatant date in factory calender.
    Ex: Current date - 07/20/2009
    Days: 8
    Resultant date = current Date + Days
    = 07/30/2009 (This is excluding week ends).
    Basically date needs to be calculated w.r.t factory calender(excluding week ends and holidays defined in factory calender).
    Could someone let me know how to acheive this?
    Thanks in advance!!!!

    Use this function module.
    BKK_ADD_WORKINGDAY
    Hope this will solve your problem.

  • Lead time from catalog does not consider factory calender

    Hi,
    we are working with SRM 2.0 classic scenario. I have following problem:
    We take over lead time from a supplier catalog via OCI in EBP. This works but the lead time does not consider holidays and weekends. How can I activate the Factory Calender?
    Thanks Thomas

    Hello,
    I just sniff arround and found out that EBP 3.0  does not support factory calendar.
    You should use BBP_DOC_CHECK_BADI or BADI BBP_CATALOG_TRANSFER and call within this BADI the function modules requesting the factory calendar data via RFC on the backend.
    i.e.
    get the target system of the follow-on document            
        SELECT log_sys from BBP_DET_LOGSYS INTO wa_logsys-log_sys
        WHERE CATEGORY = ls_item-category.                       
        ENDSELECT.                                                                               
    read table T001WK                                          
        CALL FUNCTION 'META_READ_TABLE'                          
          EXPORTING                                              
            query_table    = 'T001W'                             
            logical_system = wa_logsys-log_sys                   
          TABLES                                                 
            options        = options                             
            fields         = fields                              
            data           = tabcont                             
          EXCEPTIONS                                             
            OTHERS         = 1.
    fill the internal table xt001w                         
        LOOP AT tabcont INTO la_tabcont.                     
          MOVE la_tabcont-content+3(4) TO la_xt001w-werks.   
          MOVE la_tabcont-content+61(2) TO la_xt001w-fabkl.  
          APPEND la_xt001w TO xt001w.                        
        ENDLOOP.                                             
        SORT xt001w BY werks.                                                                               
    get the fabric calendar related to the plant           
        READ TABLE xt001w INTO ma_XT001W                     
        with KEY werks = ls_item-BE_PLANT.                   
    check if delivery date is a working day                
        CALL FUNCTION 'DATE_CONVERT_TO_FACTORYDATE'          
          DESTINATION wa_logsys-log_sys                      
          EXPORTING                                          
            DATE                 = ls_item-DELIV_DATE        
            FACTORY_CALENDAR_ID  = ma_XT001W-fabkl           
          IMPORTING                                          
            WORKINGDAY_INDICATOR = W_IND.                                                                               
    get an error message if delivery date is not a working date             
        IF W_IND = '+'.                                                                               
    CLEAR ls_message.                                                                               
    ls_message-msgty   = 'E'.                                           
          ls_message-msgid   = 'ZBBP'.                                        
          ls_message-msgno   = 'xxx'.                                         
          ls_message-msgv1   = 'error message text, e.g. delivery date not    
    working date'.                                                            
          ls_message-item_guid = ls_item-guid. "assign message to item        
          APPEND ls_message TO et_messages.                                                                               
    ENDIF.                                                                               
    endloop.

  • Factory calender date

    Hi,
    To the existing date i need to minus 10 days .
    It should return the factory calender date.
    10 days to be considered as factory calendar days.
    i mean it should not consider sat, sund and hoildays for the facoty calender id.
    ex 30/03/2008 - 10days
    should return 14/03/2008 not 20/03/2008(exclude sat, sun and hoildays)
    could you let me know the function module available
    Thanks
    Edited by: sudha vuppala on Feb 27, 2008 11:47 PM

    what is the solution for this. I am facing a similar situation

  • Data Source Z*** is not defined in the source system

    Hello All,
    I am facing a well known problem extracting data from R3 to the BI side. On both sides I've got SAP ALL.
    I created data source on R3 DEV side, tested it and it extracts data. I've replicated metadata on BI side and activated the data source. The problem starts once I create the info package as no data is availble in PSA.
    I went to extractor checker and tried to start the extraction and I could see the message: data source Z**** not defined in the source system.
    I tried to locate the data source through RSA5 and I cannot see that it is availble there.
    Can you please help and advise where the problem is?

    Hi Neb,
    It can be related to many issues, one of them can be RFC connection issue. Please check the link below :-
    Datasource xxx is not defined in the source system
    It might give you some of ideas. Also if possible can you tell what Datasource are you having problem with.
    Regards
    Sunny

  • Date format is not working properly for Calender value help

    Hi Experts,
    We have two problems.
    1. We want to change the format of date displayed. We want format of dd-MMM-yy. For that we have created one Simple
    Type Dictionary Object with Displaying format dd-MMM-yy. It is working
    fine for the non editable UI. But once I apply the dictionary type
    object as data type for an input field, probem happens. Once the user
    choose a date from calender value help the value in the input field is
    coming like 01-011-12 not like 01-Jan-12.
    The date format is not changing from the calender. But if we set the
    display format of the dictionary object to MM-dd-yy or MM/dd/yy or
    dd/MM/yy or dd-MM-yy the format conversion from calender to input field
    is happening properly.
    The only problem once we put MMM in place of MM for the input field
    where user is selecting from a calender value help.
    2. We want to restrict users from entering the value manually for date input field. The user
    should be able only to enter value by selecting from calender value
    help.
    Please give suitable solution for these problems
    Thanks
    Shankha

    Hi Sankha,
    Please refer the links below:
    http://scn.sap.com/thread/1659463
    http://scn.sap.com/thread/1533443
    Regards,
    Manoj

  • Clearing Document Date do not follow the define clearing date in F-03.

    Hi,
    Clearing Document Date do not follow the define clearing date  BKPF-BUDAT in F-03.
    My user received the unpresented check statement from the bank on 31 Dec 2010. As 1 Jan 2011 is holiday and he came back to the office on 5 jan 2011. He post manual upload (Debit : Bank Outgoing and Credit : Unpresented Cheque) posting date 31.12.2010 (period 12/2010 and 01/2011 still open) . Hence the next step (same date on 5 Jan 2011) is to clear the Bank outgoing using F-03. He put 31.12.2010 as his Clearing date BKPF-BUDAT but when the system post the clearing date is 04/01/2011.
    Please help

    Hello,
    Hope it helps.
    But i can recall for the EBS bank statement upload into a previous fiscal year, ie, 31.12.2010.  I had to close the current fiscal year temporarily.
    See what happens in your system when it tries to clear with F-03.  Though as mentioned re-check as F-03 will default to the system date --- today.
    Regards
    Waza

  • Data Collection task error (Item  is not defined in Cons Chart of Accts 01)

    Dear Experts,
    While executing Data collection task, I am getting error "Item  is not defined in Cons Chart of Accts 01", What could be the reason?
    (Many Items are getting collected in target, but at the topline this error is been shown)
    Regards
    Ritesh M

    Thans Dan,
    I have gone in the program UGMDSYNC, and getting few Gls which have not assigned Cons Chart  of account.
    Kindly tell me how to assign chart of account to these GL account?

  • Transfer Order : Data for storage type search is not defined (A   )

    Dear Experts ,
    While trying to use the Transfer Order and trying to determine the storage type this error appears :
    Data for storage type search is not defined (A   )
    Message no. L3007
    Diagnosis
    Information on the storage type search has not been defined.
    How ever , I have already configured the search and here is the Storage Type search's data in OMLY
    1. Warehouse number : W10
    2. Operation : A "Stock Removal"
    3. Indicator :   E
    4. Stock Category : Blank
    5. Special Stock Category : Blank
    6. Storage Location Ref :10
    7. Storage Type : 10E
    Please Advice
    Edited by: Sap Sap on Feb 24, 2011 10:54 AM

    Hello,
    The storage type in which you want to place the material or pick the material from has not been defined in the storage type search sequence.
    You need to define the search sequence in customization so that storage type is determined automatically when the transfer order is created;
    SPRO>>Logistics Execution>>Warehouse Management>>Strategies>>Activate Storage Type Search
    In this go to determine search sequence and then
    for warehouse number W10, operation as stock removal 'A' and in this maintained the relevant the storage type (10E) so that it is determined automatically.
    I hope this helps.
    BR,
    Tushar

  • How to define a new factory calender?

    Hi guys,
    I want to have a factory calender that I can use for scheduling batch jobs to run each last sunday in the month. Such factory calender doesn't seem to exist in the system and I'm wondering how I could create it?! Is there a transaction that I can use to create a new factory calender?
    BR,
    Armin

    Hi,
    1. In TCode: SCAL, initially check the public holidays existing in the system, whether those public holidays are sufficient or not, if not create your own public holidays.
    2. Then Create public holiday calender and attach your public holidays to this public holiday  calender.
    3. Then create your own factory calender and attach your public holiday calender to the factory calender and select the working days in a week and then save.
    The above are the steps involved in creating a new factory calender.
    Hope this helps.
    Thanks,
    Viswanath

Maybe you are looking for