Factory calender Modification ?

Dear Experts,
I have one issue for which need your suggestions. For your reference kindly refer below information.
1) In our system three different Factory calendar ID's are maintained for one plant code.
2) Out of those three, client need to modify some holidays in one calendar ID which is maintained only for plant maintenance( in all work center with category-005, this calendar ID is used)
3) For Production planning related data another ID used.
My doubt is, if I want to modify one calendar ID in development then need to transport it to QA & Production client what is the best option available.
Also I read one thread from SDN only in which itu2019s mentioned that - [You can only transport calendar data in its entirety. When you do this, all public holidays, public holiday and factory calendars existing in the target system are deleted.]
Whether it means that, all calendar ID's created in system are refreshed by moving transport of one calendar ID? Because if its true then is it need to verify data consistency in all clients for all Calendar IDs?
Need your help to resolve above issue
Warm Regards,
Mehul

dear Mehul,
ask your security or basis to open calendar maintenance in each client.
use SCAL in each system individually (do not transport them).
before to maintain in the next system make sure you've done enough testing and results are correct (say, before to set up QA make sure your calendars work in DEV)
good luck!

Similar Messages

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

  • 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 ---&#61664; capacity ---&#61664; assign required calendar there.
    As in the activity calendar will be picked up from work centre

Maybe you are looking for

  • Good Buy? -New MAC user-

    Hello MAC world. Ok, so here is the lowdown. I recently decided to buy my first Mac computer, so where better to look for an affordable Mac (for a 17 year old) than on Ebay. Im on this forum to ask some Mac veterans if I made a good purchase. BTW it

  • How to create a Transaction code for a Report Painter Report

    Hi All, Can any one let me know the procedure as to how to create a t-code for a user defined PCA report. I have created a PCA report (copied the existing report (8a26-001) and named it as zpca and assigned the same in a new Report Group ZPCA (the gr

  • Apache.axis2.AxisFault: com.ctc.wstx.exc.WsUnexpCharExcep: Unexpted char ""

    Dear All, I amfacing the following Exception when trying to call a web service to contact, i generated stubs using Apache axis2-1.5.4 and am using eclipse Galelio org.apache.axis2.AxisFault: com.ctc.wstx.exc.WstxUnexpectedCharException: Unexpected ch

  • E-mail campaigns how to avoid being suspected for spamming

    Hi, We plan to launch e-mail campaigns, but we fear that we may be tagged as a spammer. My best guess is to throttle down sapconnect for INT to max. 1.200 mails per hour that way the different ISP shouldn't tag us as a spammer. Have anyone of you had

  • Where is the Search Function in the Forums?

    Where has the search function gone from the forums? I have been using it frequently lately because I am setting up a Powerbook 1.5 g4 with FCP 5.1.4 and it is the best way to find answers for "legacy systems" such as mine.