Customizinbg Adaptor Object to download the Factory Calender

Hi there,
can anybody help me with the download of the Factory Calender from oure R/3 to CRM 2005?
I'm searching for a Customizing Adaptor Object. Is that correct, or is there another way to synchronize the booth calendars?
The problem is, that in TR SMW01 I have an error in one bdoc which tells me that I have a problem with the fabric calendar.
Thanks a lot for your help
Greets christian

Dear Christian,
There is no download object to move the factory calendars from R/3 to
CRM.  To have the correct description appear for your custom factory
calendar on CRM, you would have to manually recreate the entries in
table TFACD on the CRM system.  The CRM IMG path is General Settings
-> Maintain Calendar.  
Or you may transport acalendar data within a system landscape,
aplease check note 538344 and related notes.
Regards, Gerhard

Similar Messages

  • How to load the factory calender in to Bi system

    Hi Friendds,
    I am working on capacity utilization cube.in this i need determine the working days between the early starting date and finish date accoring to factory calender 'PL'. the factory calender is attribute for workcenter and plant.
    first i need to check the factory calender is loaded in to bw system or not. how to check this.
    please help to me on this.
    Thanks,
    Guna.

    Hi gunasekhar,
       There is a function module in Bw side  U pass ur variable and ur factory calendar id and u get the desired factory date as output...u can check the same in SCAL.
    DATA : w_coend_fd TYPE SCAL-FACDATE.
    DATA : w_coend_cd TYPE SCAL-DATE
        CALL FUNCTION 'DATE_CONVERT_TO_FACTORYDATE'
                EXPORTING
                  CORRECT_OPTION               = '+'
                  DATE                         = w_coend_cd
                  FACTORY_CALENDAR_ID          = 'GB'
                IMPORTING
                  FACTORYDATE                  = w_coend_fd
                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.
    Regards
    vamsi

  • Error at the time change factory calender (scal) validity period

    Dear Experts
    When I tried to change the factory calender Valid period with t code scal Fr. Year 1996 to Year 2011, it probe me the message "Please enter validity area between years 1995 - 2010." and I wasn't allow to save.
    Pls advise how to solve the above problem.
    Thanks.
    BK GAIKWAD

    hi
    your issue is clear that the factory or plant cllendar is defined for only 5 years 2005 to 2010
    NOTE: pleaase contact your HR or FICO consultants for this issue & dont change any thing in PRD then you will be responsible for it
    hope this clears your issue.
    balajia

  • 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

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

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

  • 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

  • Days since Sales Order creation excluding holidays in factory calender

    Hello,
    Can anyone pls tell me the logic to retrieve the Days since Sales Order creation excluding the holidays in Swedish factory calender.
    Current logic which we have thought of is 
    (The first succesful output - Order creation date)
    But the result should exclude the Swedish Factory calender holidays (our client is from  Sweden)
    Now we need to establish the logic of fitting the factory calender into this whole issue. As we have to provide the logic to our ABAP er .
    Waiting to hear from u all.......
    Regards,
    Anirban
    SD Consultant

    Your message is somewhat unclear to me.
    When creating a sales order, a "Required Delivery Date" is needed.
    This date is checked against the unloading calendar of the customer. If the system finds the requested delivery date = a non-working day of the customer calendar, it issues a warning (No goods accepted on DD.MM.YYYY. The next possible date is: DD.MM.YYYY (Message no. V1019). There does not seem to be any possibility of changing this warning to an error in the standard system; only possibility would be to modify the standard code.
    If I have misterpreted your thread, then apologies, and feel free to elaborate on the issue some more.

  • Change of factory calender

    Hi All,
    I have come across a scenario wherein the factory calender are different in the plant and the shipping point. If i change the calender of shipping point on PRD what will be the implications of this ? What all aspects do i need to watch out for ? There is a PP integration in this plant too.
    Thanks in advance.
    Regards,
    Saurabh Diwakar

    hello again.
    since calendars are cross client, prashant has a point.  apparently it wouldn't make a difference whether you do this is PRD or DEV.  you will see the changes in any environment within the global setting.
    thanks for the correction.
    regards.
    p.s.
    but shouldn't the assignment of the calendar to the shipping pt be done in DEV?
    Edited by: jonathan yap on Mar 25, 2008 8:29 PM
    Edited by: jonathan yap on Mar 25, 2008 8:30 PM

  • Factory Calender in net weaver

    Dear all ;
    How to maintain the factory calender in Net weaver ,I have just tried to create one holiday calender for the year 2011-2015 ,system is showing the error :" please maintain a validity periord between 1996-2010".
    Ites a urgent requirement ,kindly reply .
    Thanking you;
    Regards;
    Joydeep Mukherjee

    Hi,
    Please refer the below links.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/2a/fa00dc493111d182b70000e829fbfe/frameset.htm
    http://**********************/2008/09/factory-calendar-for-plants.html
    Factory calender
    Hope it help you.
    Thanks.

Maybe you are looking for

  • DVD/CDRW drive not working - Tecra A4

    Hi, I have a problem with my Tecra A4. My DVD CDRW drive is not working properly (Power is there, but it doesn't show up on the system), I have temporary installed a DVDRW drive from my HP laptop which is working fine. I tried to run my recovery disc

  • Loading ipod downloads into new computer

    I have a new computer and want all my existing podcasts, music, photos, videos uploaded onto my new itunes account for this computer. How do I do that?

  • List of standard HR workflows in ECC 6.0

    Hello All,   Does any body have the list of standard workflows in HR in ECC 6.0 ?? Thanks in advance Uday

  • Activation Extension Set  FI-CAX for Error

    Hello to all. In my Development System ECC, the functional consult activate the extension set FI-CAX for "error". How can disabled the extension set for FI-CAX ???? I run a copy client with profile SAP_CUST since production system to development in t

  • HT1386 parts of my playlist are grey and wont play in my iphone, some of my movies too.

    I just got an Iphone 5, I have an ipod classic 160. everything in my itunes is on my ipod and fuctions fine. I synced part of my mysic and disney movies with my iphone and the playlist is largely grey and wont work on the phone. What did I do wrong?