Factory calender in APO

I have set factory calendar via SCAL in R/3 …I don’t find any CIF   CFM1 screen with factory calendar ..how do I set FC in APO in resource RES01 I could see shipping calendar,warehouse calnder ,production calendar ,,but I don’t see factory calendar …..would you please help me how do I set the factory calendar in APO or how do I  CIF  from R/3

RO,
thanks ulrich in  loc3  i don't find factory calendar auto populated from R3 ..guess transfer global setting via RSA1 works
The assignment of a Factory calendar to a Plant is not normally integrated via CIF.  For Locations in SCM, you normally assign the calendar manually.
Using RSA1 merely brings the FC over to SCM.  Once the Factory Calendar exists in SCM, you can review and manage them using SCAL within SCM, if you wish.  Or, just set up regular jobs that pull the calendars across from your ECC on a periodic basis.
In SCM, most time-based structures are granular down to the second, to support the more complex requirements of SCM solutions.  Factory calendars, by their nature, are not very useful in this environment, since they are only granular to the day.   SCM has its own type of calendars, which you can maintain in /SAPAPO/CALENDAR.  These calendars are granular to the second, and they can optionally be based upon an 'SCAL Factory calendar'.  These SCM calendars are the ones you normally assign to locations in the Calendar tab.
Best Regards,
DB49

Similar Messages

  • Factory Calender and Time Stream

    Hi,
    I Maintain a factory calender A
    where monday to friday is working
    and holiday on 1/1/2009
    My Distribution centre is working 1/1/2009
    How do i set up in APO?
    thx

    Maintain Production calendar (For Factory) and Distribution calendar (For DC) using transaction
    S_AP9_75000138 - Maintain Planning Calendar (Time Stream)
    In calculation rule maintain 5 days as working day using calculation rule "Weekdays"
    then go to bucket delete day 1/1/2009 if showing as working day in Production calendar and keep this day as working for Dist calendar.
    Then go to Location master in Calendar tab
    assign Production calendar for factory location and distribution calendar (in shipping and recving) for DC.

  • Invalid factory calender error in creating subcontrating po

    hello all,
    during creation of subcontracting po,system shows the error message "invalid factory calender error".
    i have checked the assignment in oy05.seems ok.
    pls provide some input.
    regards
    sumit simran.

    Hi,
    Please check the path.
    IMG>Enterprise Structure>Definition>Logistics - General>Define, copy, delete, check plant-->Define Plant.
    Here you can find the which factory calender is assigned to your plant.
    Then go to  Tcode SCAL ,  select the Holiday calender and edit it . Double click on your holiday calender   and change it  i.e valid From year to To year. Go back , select the factory calender and edit it ,  give  valid From year to To year.
    Thanks.

  • Factory Calender, Where Can I see it?

    Hi Experts,
    Pls. let me know that, Where Can I see the Factory Calender?
    thanq

    Hi srinivas,
                   You can use FM FACTORY_CALENDAR_GET to get factory calender.
    <REMOVED BY MODERATOR>
    Thanks,
    Srikanth.A
    Edited by: Alvaro Tejada Galindo on Apr 24, 2008 10:49 AM

  • Consideration of factory calender in threshold values

    Hi,
    I need to consider the factory calender in the threshold values to check the due date of a task or a checklist item.
    For example:
    The task/or checklist item is due in 11 days (and the factory calender should be condsidered)
    Does anybody know how to implement these checks in the threshold values of cprojects?
    Thanks for your help!
    Isabella

    Dear Friend,
    Ideally you should not change anything on Production server directly.
    The normal & universally acceptable way is to transport the changes from Development or Quality to Production.
    Still if you want to make changes on Production Server Directly (which even i dont recomend) you need to make Production Server in change mode thru T-Codes SCC4 & SE03 & make necessary changes.
    Let me know if you need to know how to use T-Codes SCC4 & SE03.
    Thanks,
    Jignesh Mehta

  • 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

  • ABAP HR- table for factory calender id at employee level..

    Hi,
    i have a requirement in which i need to retrieve Factory calender ID against holiday calender ID at employee level.
    I am able to retrieve Holiday calender ID for an employee.
    Now i need a table to where i can get factory calender for an employee against holiday calender Id.
    Appreciate your help!
    Regards
    Aleria

    Hi Aleria 
    Pass the holiday calendar retrieved to the table TFACD to get the Factory Calendar.
    Regards
    Bala

  • Getting factory calender weekly duration timings

    hi all,
    I have a scenario to get the factory calender weeky avaialable(working) timings like
    MONDAY - 8:00 TO 17:00 etc.,
    how to get these values is there any function module associate to get those value by passing date rule id.
    Appreciate ur help
    thanks
    viswa

    check below code...
      DATA: W_FACTORYDATE          LIKE  SCAL-FACDATE.
    Convert Delivery Date to Factory Date
      CALL FUNCTION 'DATE_CONVERT_TO_FACTORYDATE'
           EXPORTING
                CORRECT_OPTION               = '-'
                DATE                         = I_EINDT
                FACTORY_CALENDAR_ID          = I_FABKL
           IMPORTING
                DATE                         = E_EINDT
                FACTORYDATE                  = W_FACTORYDATE
           EXCEPTIONS
                CALENDAR_BUFFER_NOT_LOADABLE = 1
                CORRECT_OPTION_INVALID       = 2
                DATE_AFTER_RANGE             = 3
                DATE_BEFORE_RANGE            = 4
                DATE_INVALID                 = 5
                FACTORY_CALENDAR_NOT_FOUND   = 6
                OTHERS                       = 7.
    Find the Lower Limit of Delivery date
      E_LOWER = E_EINDT.
      IF I_VINT1 NE 0.
        W_FACTORYDATE = W_FACTORYDATE - I_VINT1.
        CALL FUNCTION 'FACTORYDATE_CONVERT_TO_DATE'
             EXPORTING
                  FACTORYDATE                  = W_FACTORYDATE
                  FACTORY_CALENDAR_ID          = I_FABKL
             IMPORTING
                  DATE                         = E_LOWER
             EXCEPTIONS
                  CALENDAR_BUFFER_NOT_LOADABLE = 1
                  FACTORYDATE_AFTER_RANGE      = 2
                  FACTORYDATE_BEFORE_RANGE     = 3
                  FACTORYDATE_INVALID          = 4
                  FACTORY_CALENDAR_ID_MISSING  = 5
                  FACTORY_CALENDAR_NOT_FOUND   = 6
                  OTHERS                       = 7.
      ENDIF.
    Find the Upper Limit of Delivery date
      E_UPPER = E_EINDT.
      IF I_VINT2 NE 0.
        W_FACTORYDATE = W_FACTORYDATE + I_VINT1 + I_VINT2.
        CALL FUNCTION 'FACTORYDATE_CONVERT_TO_DATE'
             EXPORTING
                  FACTORYDATE                  = W_FACTORYDATE
                  FACTORY_CALENDAR_ID          = I_FABKL
             IMPORTING
                  DATE                         = E_UPPER
             EXCEPTIONS
                  CALENDAR_BUFFER_NOT_LOADABLE = 1
                  FACTORYDATE_AFTER_RANGE      = 2
                  FACTORYDATE_BEFORE_RANGE     = 3
                  FACTORYDATE_INVALID          = 4
                  FACTORY_CALENDAR_ID_MISSING  = 5
                  FACTORY_CALENDAR_NOT_FOUND   = 6
                  OTHERS                       = 7.
      ENDIF.

  • Tables for plant , factory calender & calender validity period

    In which tables we find the data of plant , facory calender & calender validity period.If anybody knows please tell.

    I want the combination of plant , factory calender  & validity period tables to extract the data.In TFACD table we don't get plant & validity details to know exactly what was done during configuration.

  • Factory Calender - Help Needed

    I am getting this messges when i try and transaction MICN...PID for cycle count...
    The date 14.07.2009 comes after the end of the validity period of the factory calendar that is assigned to the given plant
    Could someone tell me how i fix this

    See if your factory calender is properly maintained in 'SCAL' tcode.
    If it is maintained properly, see if that is assigned to your plant in 'OX10' tcode. If this doesn't solve your issue, tell the detailed error message.

  • 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.

  • Invalid Factory Calender error

    Hello gurus,
    While making a subcontracting PO, the following error is coming "Invalid factory error or error in the factory calender"
    I have checked the plant settings & have put Factory calender IN for the plant. Still the error is coming. How to resolve this?
    Regards
    Prashant

    >
    prashantjalgi wrote:
    > The validity is from 1996 to 2010.
    >
    > If I try to extend it to 2011, the system is not allowing.
    >
    > The same error is coming when the validity is 1996 to 2010.
    Why is it not allowing? what error do you get when trying?
    Calendar maintenance is done thru CUNI, and cusotmizing is usually done in development clients.

  • How to update Factory calender in CRM from ECC?

    Hi All,
    Factory calenders are downloaded to CRM from ECC, using adapter object DNL_CUST_CAL_C in Initial load (R3AS).  My doubt is, whenever a new holiday is added to Factory calender in ECC, how the particular added holiday will be downloaded to update the same in CRM system?
    Please help me.
    Regards,
    Maddy

    Hello Maddy,
    In my system download object DNL_CUST_CAL_C is for the download from the CRM (online) database to the old consolidated database (CDB, for the offline Mobile Sales scenario). You could see this in transaction R3AC3.
    For your scenario I don't know how to download. This thread here speaks of a manual adjustment in transaction SCAL.
    http://scn.sap.com/thread/274825
    Best regards,
    Thomas Wagner

  • Schedule a process chain using factory calender

    Hi All,
    My requirement: the user wishes to see the report every month, 1 working day prior to the month end.
    I am trying to do this usnig processing chain and factory calender to restrict it.
    1. How can a factory calender be used ?
    3. how do i give the offset of 1 working day prior to month end?
    2. If you have any such experience please share.
    Please help.
    Rohit Kumar.

    Hi,
    In the start process open the start time parameters screen. Then click on the button '>>' next to 'at operation mode' button. In the following screen, give the factory calender. In the workday column give 2. Choose radio button 'end of month'. In the period field give the frequency of the loads, i guess it should be 1 for you as you want to load monthly. So the job runs on the day before the last working day.
    regards,
    Murali.
    Edited by: Murali Krishna K on Jun 23, 2008 5:27 PM

  • Factory Calender in Select options

    Hi,
    I need to add the factory calender in Select Option. 
    (I have already added f4_date function module for F4 help as Factory calender.)
    Eg. If i select any holiday in the selection screen - need message for " HOLIDAY" like that..
    :--  SELECT-OPTIONS: s_date  FOR sy-datum NO-EXTENSION.
    Experts please help me.
    Thanks.
    Viji.

    Vijay,
    One option could be to perform validations in event - At SELECTION-SCREEN on s_date
    Hope it helps!
    Thanks,
    VM.

Maybe you are looking for