Factory calendar in BI

I want to load a specific  factorycalendar id to BW ,rather than transferring all the global settings.Is there any standard program to extract a specific factory calendar id?

The standard program loads all of the Factory Calendars.  So, you can do it manually or load all calendars. 
The third option is to create a custom program to retrieve and fill the calendar tables with the specific calendar you are looking for.
If it's only a space issue, I would load everything ... it's standard, consistent and can update automatically every month.
Brian

Similar Messages

  • Factory Calendar issue in creation of Sales Order/ Delivery Order

    Hi all,
    There is one issue. Our user is not able to create Sales Order/ delivery order as he is getting the below error message u201CDate 2010-12-27 lies after the end of Factory calendar F1u201D. But when I checked the plant in customization, the Factory calendar assigned is u201CKRu201D and not u201CF1u201D. So I donu2019t understand why this error message is appearing. But when I checked Factory calendar u201CF1u201D, it was valid only up to 2010 and there are special rules also set. Only few days in the year are working days. Factory Calendar u201CF1u201D description says u201CKOR customers billed on the 25th of every monthu201D
    Please advice.
    Regards,
    Brijesh

    Dear
    If F1 is the correct calander , then goto OP03-Calander Maintenece -select the Holoiday Caleneder  and extende the Valaidity till 2020 and also Select the Factory Calander  do the same till 2020 .Now Goback to main screen of OP03-Plant asisngement -re-assing the same F1 calaneder .
    Secondly check the factory calender of the plant in OX10.Then in SPRO > enterprise structure >Definition > logistic execution>define shipping point .Select you shipping point and assgin the proper factory calender
    .Goto OVX5 , choose your sales organization, click on details, Detailed information tab - Sales Org Calendar (maintain your factory calendar here not Sale Org Calander )
    .Check in VOV8, use the "Propose delivery date" and "Lead time in Days" options to default today's date as the requested delivery date.
    Refer : Public holiday dates issue
    Regards
    JH

  • Working days between two date fields and Changing Factory Calendar

    Hi,
    I have to calculate working days between two date fields excluding the weekends and public holidays for Switzerland.
    I have written the routine using factory calender and its working fine except for two problems now:
    1. If any one of the date field is empty then teh rsult should be zero.
    2. And the below code is working from 1996 but my cleints wants it to work for years before 1996 as well.
    I also tried to change the Start date in SCAL for factory calendar but it says enter values between 1995 to 2020.
    I am new to ABAP. Please help me how i can achieve these for below code.
    DATA: IT_HOLIDAYS type TABLE OF ISCAL_DAY,
          IS_HOLIDAYS TYPE ISCAL_DAY.
    DATA: T_DATE TYPE SY-DATUM,
          P_DATE TYPE SY-DATUM.
    DATA : X_DATE(4) TYPE C.
    DATA: CNT TYPE I.
    REFRESH : IT_HOLIDAYS.
    CLEAR : IT_HOLIDAYS.
    T_DATE = SOURCE_FIELDS-/BIC/ZCCCHP812.
    P_DATE = SOURCE_FIELDS-/BIC/ZCCCHP810.
    CALL FUNCTION 'HOLIDAY_GET'
    EXPORTING
    HOLIDAY_CALENDAR = 'CH'
    FACTORY_CALENDAR = 'CH'
    DATE_FROM = P_DATE
    DATE_TO   = T_DATE
    TABLES
    HOLIDAYS = IT_HOLIDAYS
    EXCEPTIONS
    FACTORY_CALENDAR_NOT_FOUND = 1
    HOLIDAY_CALENDAR_NOT_FOUND = 2
    DATE_HAS_INVALID_FORMAT = 3
    DATE_INCONSISTENCY = 4
    OTHERS = 5.
    DESCRIBE TABLE IT_HOLIDAYS LINES CNT.
    X_DATE = T_DATE - P_DATE - CNT.
    RESULT = X_DATE.
    Please help
    Regards
    Zabina
    Edited by: Syed786 on Nov 2, 2011 9:15 AM

    Hi Zabina,
    Try this function module  'DURATION_DETERMINE'.
    Give the factory calendar and unit as DAY
    With regards,
    Rajesh

  • System does not propose the delivery date based on factory calendar

    Hi,
    I am creating a sales order for a delivery date for this sat which is (2/22/09)
    I have maintained 2 separate calendars for
    1) shipping point
    2) for the route
    The route has a transit time of 1 day and the calendar has sat and sunday as non working.
    the Shipping point has a pick/pack time of 1 day and the calendar has sat and sunday as non working
    The material is available in the warehouse
    Now when i create this sales order i enter the delivery date as 2/22/09, the system does not propose me the delivery date of monday (i.e 2/23/09) It accepts the 2/22/09 delivery date.
    In the schedule line i do see the date as 2/22/09 only.
    The delivery was created with the following dates
    Picking = 2/17/09
    Transportation Planning = 02/18/2009
    Loading =02/18/2009 
    Planned GI= 02/18/2009
    Delivery Date = 02/22/2009
    How can the system give me the delivery date of a sunday when the calendar doesnt allow sunday as working day.
    Also the route time is 1 day in transit so i am not sure why the system is proposing a 3 day transit time?
    Can any one explain the behaviour of SAP for the delivery date logic

    Dspsac,
    Delivery date can be any date.  For instance, if your customer insisted on a Sunday delivery, you would accommodate him, regardless of any calendar.
    From the delivery date, the system counts backwards USING THE FACTORY CALENDAR ASSIGNED TO THE ROUTE by the number of days in the route.  You have to consult the FC assigned to your Route to determine if the GI date has been properly calculated.
    From the GI date, the system counts backward Pick/pack time, using the shipping point calendar, to arrive at Material availability date.
    Calculations are explained in SAP online help
    [Transportation and Delivery Scheduling|http://help.sap.com/erp2005_ehp_04/helpdata/EN/dd/5607e7545a11d1a7020000e829fd11/frameset.htm]
    Regards,
    DB49

  • Working day to factory calendar date

    Hello Experts,
    I wish to get the factory calendar date, specific to a factory calendar, based on a working day.
    Basically, if i pass say 4, then i want to get the date for the 4th working day based on a specific factory calendar.
    Can someone throw some light on possible function module that i can use in BW ?
    Thanks

    That's what I was giving you, you give the working day and the factory calendar and you get the date, or you can use this function and you can do it the other way:
    (Unless I'm completely missing your point here...)
        CALL FUNCTION 'DATE_CONVERT_TO_FACTORYDATE'
      EXPORTING
        CORRECT_OPTION                     = '+'
        DATE                               = G_WORKAREA3-CREATEDON
        FACTORY_CALENDAR_ID                = L_S_PLANT-FACTCAL_ID
      IMPORTING
    *   DATE                               =
       FACTORYDATE                        = L_FCDATE
      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.
      ENDIF.

  • Error while processing sales order as factory calendar missing.

    "factory calendar missing or error in factory calendar".iam getting this error while processing sales order even though i have assigned it to shipping point and plant and sales org.

    Hi Malik, How are you? I'm sorry to trouble you,
                   Let me introduce, I'm Daniel, and I saw your fantastic asnwer in
    the topic "How to update Factory Calendar in SRM", and might I have the same
    problem. It's with the "factory calendar".
    In transaction va02 when I choose a Delivery Date, and I sent it to process, as
    a result in the "shipping tab" it calculated to the first item one date, and to
    the rest one date different.  I don't know What it happen?
    I debugged the program and I saw that to the first item use to calculate the
    date is the function  'APO_SCHEDULING', and to the rest item use
    'SD_SCHEDULING', and until here I come.
    How can I do to what the dates calculated are the same? or What would be the
    problem?
    I need the dates calculated are equal.
    I looked at it's using two "factory calendar" which are "J4" and "C2". Is this
    correct?
    Thanks In Advance,
    My best regards,

  • How to find out the Factory Calendar ID used by  an Organization

    Hi Experts,
    I want to know Factory Calendar ID used by an Organization.
    Which table store the Factory Calendar information for an organization.
    Is there any function module to get the Factory calendar of an organization.
    Please help me ASAP.
    Point will be rewarded for helpful answers.
    Thanks in advance
    Kulvendra Kumar

    Hi
    chk the view v_001p_m
    there u can find ur org nization so there u wull find the calender assigned to them.

  • SNP Planned order not following resource bucket capacity/factory calendar

    Hi gurus,
    SCM 5.0
    I am running SNP heuristics for a product and expecting planned orders for it.  It has corresponding production data structure and multimixed resource.  The resource has an assignd factory calendar and SNP bucket capacity.  The bucket capactiy availablity dates of the resouce is consistent with the factory calendar workdays/holidays.  Using simple lot for lot strategy, I am expecting heuristics to schedule the planned orders on the dates of the demand in compliance with teh SNP bucket capacity availability of the resource.  APO does not schedule on holidays consistent with bucket capactiy.  This is true until...
    We have a public holiday in factory calendar that needs to become a workday. To remedy this, we put a special rule for the factory calendar and explicitly made that holiday into a workday.  The changes were synchronized with APO, and this is also reflected in the bucket capacity of the resourc: former holiday now has bucket capacity after the calendar change.  However, when running heuristics, it still does not create SNP planned order on that former holiday that has been changed into workday.  Even if it is a public holiday, there is already a special rule for the factory calendar and the resource bucket capacity reflects this correctly. But SNP heuristics seems not to follow this change.
    Any ideas on this? looks like a bug.

    Hi Edgar,
    Yes, when your resource reflects the addional capacity of the holiday turned working day, then it is expected to be considered for the SNP planned order.
    Instead of SNP heuristics, you may try to check interactively in SNP planning book, if manual order creation in the bucket works out.
    Since this is a mutlimix  resource , it can also be checked if in PPDS planned order can be created on the day.
    The above checking may not solve your problem , but will get to know if at least manully the bucket is being considered or not.
    regards
    Datta

  • LSO - Issue with Factory calendar End Year and creation of New courses

    Hi,
    Recently we are experiencing an Issue in LSO with the system hanging while creation of "Course with Resources".
    Upon Analysis we identified that while creating course with resources and by checking "Period without Days off" option references the set factory calendar in LSO config and since this set Factory Calendar has an End Year in 2005, the system hangs trying to reference this factory calendar.
    For some course types we are unable to even enter the course creation Data screen. These course types have " Main schedule" (with / without pattern) pre defined.
    The issue does not seem to occur if we extend the factory calendar to current period or future.
    Please let me know if anybody has faced this issue, if extending the factory calendar the right solution and what is the impact of exteding a factory calendar in HR module. Is the factory calendar referenced anywhere else in HR module?
    Note: in LSO config you can set the factory calendar in Training and Event Management>SAP Learning Solution>Training Management>Basic settings>Control Options for Days Off,
    Regards
    Edited by: Abhihek Gangatkar on Sep 26, 2011 12:25 PM

    We found the problem,
    We had to add a numeric and /or a special charachter in the password

  • Time stream and Factory Calendar settings issue. Problems in scheduling!!

    Hi,
    We have a factory calendar of working days from SUN-THU only (5 days a week).
    Every working day starts at 07:00:00 (first shift) and ends at 06:59:59 at the following day.
    I am not sure how to set the time stream. Do I set it for daily (5 days a week) with gaps start at 07:00:00. Or, as the standard way as daily (all days 1 -7) 00:00:00 - 23:59:59 without gaps.
    We are using the planning board to schedule production orders that were created in ECC, but we see that we have problems with date corelation between the systems, and we think it is due to some wrong setting of the time stream!
    Thanks for your replies

    Hi,
    For scheduling, the time stream of resource is relevent. As to how to generated the time stream, it depends on your resource capacity setting and your factory calendar. I'm not sure why your factory calendar starts at 7:00:00 daily. For the time steam of the resource, it should be ok to start at 7:00:00, and you mayexecute the time stream generation (ta. /sapapo/rest02) to save the time stream in LiveCache.
    Claire

  • 61 062 & date comes after end of valid factory calendar. (Please correct)

    Hi Experts,
    I am Getting the Error in Creating Purchase Order:
    Error Message No. 61 062 & date comes after end of valid factory calendar. (Please correct)
    Please suggest.
    Regards,
    Ashok

    I got a Solution For this. Actually User has Maintained Wrong Planned Delivery time in PIR for the Same it was Behaving like that.
    Thanks

  • Factory Calendar Validity Date Expires 2010

    Hi All,
    In all standard SAP systems Factory Calendars are delivered with a validity date until 2010 at first installation.
    This could lead to follow-up errors at the turn of the year.To overcome the issue we need to extend the validity date of Factory Calender across all SAP system.
    As per my understanding we can extend the validity of calender manually in OLTP system (i.e. ECC etc) but in BW system we mostly transfer these validity using the "Transfer global settings".
    Is there a way to maintain these validity directly in BW instead of importing it from ECC, and is this recommonded to do it directly in BW?
    If we do it directly in, BW will this impact sync between OLTP and BW system etc?
    Any expert advice is highly appreciated...
    Regards
    Dev

    Yes, the settings can be maintained in BW, in the same IMG position as ECC.
    If you have a single ECC system and BW system, I would always 'Transfer Global Settings' in a daily (or weekly - minimum) process chain to insure consistancy between the systems.
    If my BW consolidated multiple ECC systems, I would maintian the BW system manually
    John Hawk

  • How to maintain TFACS table (Factory calendar) into SAP BI

    Hi,
    I deal with a daily stock infocube and I would like to set a flag when the warehouse doesn't work (on holiday).
    to do this, I would like to use the factory calendar (TFACS), and I have 2 questions:
    1) How to maintain the TFACS table into SAP BI ?
    2) How to use the TFACS data into SAP BI ? In other words, How to convert the TFACS data values in date ?
    Thx.
    Radj.

    1.
    rsa1(source-systems) --> right-click on the source system you load from --> transfer global settings --> flag 'factory calendar' and 'rebuild' or 'update tables'
    2.
    use function module DATE_CONVERT_TO_FACTORYDATE.
    it returns workingday_indicator (initial if it's a worling day) that you can use as a flag, or it also returns the next working day.
    you can use this function module in the transformation in the field routine of the flag...i think this is the best option.
    M.

  • How to determine which Factory Calendar to use in BI - Help!

    Hello,
    Need some help? Any input would be much appreciated.
    Basically I am creating a query in BI 7.0 based on Utilisation for a particular business Unit. However, I need to define or incorporate somewhere, to use the GB Factory Calendar.
    I have done the normal SCAL maintenance and transferred Global settings from R/3. So all the Factory calendars have been transferred over. Our BI system is picking up the default factory Calendar as 'DE'.
    How do I now tell BI I want to use specific Factory Calendar 'GB' (Great Britain) at ALL TIMES since this is the only one we will use.
    Do we need to use a particular info object in query?
    0CALMONTH to check working days as opposed to 0FISCPER
    Many thanks in advance
    Kuljit

    Try tcode RSRHIERARCHYVIRT customizing setting - specify your factory calendar and check if it works.

  • 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

  • Using factory calendars in BI transformations

    Hello All,
    Do we have the option of using factory calendars in BI transformations, like we had in 3.x version update rules.
    I did not see any option for choosing the factory calendar, so i guess we will have to use function modules.
    Please let me know if there is any option available.
    Thanks in advance.
    Manoj

    hi Anton Moskvichev,
    I check in the source system assignment. The source system is checked. While replicating the DS from source system i replicated based on BI 7.0 only. While activating the cube or infoobject from BI content i did not get any transformation or transfer rules for activation. I just got the cube alone..

Maybe you are looking for

  • Still having trouble with NeoSpeech

    I have re-installed NeoSpeech and I am still having problems.  I read the comments about this but I have not seen anything that fixes the problems I am having. When I select the Kate voice it works, but if I select the Paul voice you don't see that s

  • PDF form in mac and macbook pro

    Hello, Are there any known issues opening and filling a PDF form created in Windows 7 on a MAC or Macbook Pro? I occasionally get users who cannot open the form. Not sure of the exact OS they are using but they have advised they have updated to the l

  • Fault Handling with periodic notification and infinite retry.

    Hi all, I am invoking a database adapter to call a PL/SQL procedure and during maintenance window the database could be down for upto 4 hours. My requirement is to keep re-trying until the server comes back up but notify someone after every 4 hours.

  • Sender AS2 Adapter Setup

    Hi, I am trying to send an EDIFACT file to IDOC through AS2 Adapter (sender). Can you please tell me how to configure the sender AS2 Channel.I have configured it, but it is giving me the following error in Channel Monitoring. Alert: Maximum number of

  • Talk to text issue

    When I open up texting, tap on the screen the board comes up, I hit the mic to talk to text and NO NETWORK AVAILABLE.... PLEASE TRY AGAIN WHEN YOU ARE CONNECTED TO THE NETWORK. My talk to text use to work. After the update not so much.....