Start day in factory calender

Hi,
where you set the start day in factory calender

Hi,
Please refer this thread,
Fctory calender
Regards,
R.Brahmankar

Similar Messages

  • Factory calender issue -reg.

    During maintenance off we need to change the factory calender to holidays for production shut down purpose .
    At the same time warehouse will work through which billing and other things happen.
    if i set the days as holidays in factory calender ware hose is not able to bill during these days .
    if i am setting as working days production planning is getting effected.
    we can not use two different calenders as we can assign only one calender to a plant
    what shall we do?
    waiting for positive reply
    regards
    madhu.

    Hi,
    The non working days and working days in the factory calender can be overrided
    in the shift sequence .
    steps to follow :
    1 Go to Workcenters Scheduling tab page.
    2.Click Capacties Header.
    3. Go to intervals and shifts .
    4. Edit --> insert --> insert interval
       Enter maintenance off date and in the workdays coloumn
       three options are available.
       option 1 : working days according to factory calender
       option 2 : Non working days( overrides factory
                  calender)
       option 3 : working days (overrides factory calender)
    This means for your problem you need to enter the option2
    ie though you have specified in factory calender as working day, for all these workcenters the system will
    plan in such a way as holiday on the specified date.
    Other areas won't get affected.
    Regards,
    nandha

  • How to deduct working days according to factory calender

    Hi All,
          I have one date and and I want to calculate the exact date before 'N' working days according to the factory calender.
    e.g. Suppose the date is 13.07.2010 and N = 10 then generally we would get date as 03.07.2010.
            But my requirement is that, it should give me the exact date 10 working days back according to the   
            factory calender. i.e. 28.06.2010 .
            Could anybody suggest me a FM or an alternate soln for the same.
    Thanks in anticipation.
    Ubhaka

    Hi Ubhaka,
    have a look at FM
    BUSINESS_DATE_CREATE
    you enter the following:
    - a date (DATUM_EIN), from which you start
    - the number of business days (GESCHAEFTSTAGE)
    - the calendar ID (KALENDER)
    - the direction (RICHTUNG): "-" for subtracting ode "+" for adding the business day based on the calendar
    I suggest you make a copy of the FM and adapt it for your needs.
    Regards,
    Peter

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

  • Urgent ***  Is No. of Planned delivery days depends on FACTORY CALENDER DAY

    Hi ,
    I question for all .  Is No. of Planned delivery days calculated on <b>FACTORY CALENDER DAY or  normal difference between PO delivery and GR date .</b>
    Please let me know ,its urgent.
    Regards ,
    Amarnath Reddy.<b></b>

    Hi,
    Planned delivery period is CALENDAR days NOT Work days.
    It does not use the factory calendar and you should not even TRY to make it do so.
    Steve B

  • 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

  • Time Settings in Factory Calender

    Dear All,
    Where to set the working hours for a factory calender? Tr code SCAL shows only the year , month and day. Where to set the time ?
    Thanks in advance.
    Regards,
    Niketan

    Hi !
    In specified transaction you can set the starting and finish times for your shifts.
    Once inside the transaction of 'Maintain working hours', click on 'Shift definitions'.
    In the first column give some identificatin for the shift, in next column give some text for the shift. In the third & fourth column give some start and end date for the shift(for ex. 01.01.2007 & 31.12.2007.
    Then in the fifth & sixth column you can give start and end times for the shift. You the option of following a 12Hrs or a 24hrs format in this.
    This <b>will</b> serve your purpose.
    Reward if helpful.
    Regards,
    PATHIK

  • 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

  • Factory Calender and Planning Calenderr

    Hi,
    i want to plan my production for 7days a week. and want to plan for Raw materials also 7 days a week.
    but here my requirement is that i dont want to receive raw materials on weekends. i mean no one will be in Factory to receive raw materials on Weekends.
    If i maintain Planning Calender for 7 days and assign to Raw materials in MRP View 2 and Factory Calender for 5 days can i achieve this requirement?
    for in house production i have to plan for 7 days a week. (Scheduling and Capacity Calculation)
    i dont want to receive rawmaterils in weekends.
    Please suggest.
    Thanks
    Nag

    Dear
    Based on your business requirement ,  you should have the following set up :
    1.One Factory Calender  with Work Days Monday-to-Friday  Let say FC1 .This will be used on all the organisational level starting from Materials Planning to Sales  .But will not be assinge to Capacity Requirement Planning Purpose or Any Production Activity in Work Centre .
    2.You should have one more Factory Calander with work Days Monday to Monday ( 7 days week ) with some special rule like Plan Shutdown Days , Breakdown Maintainnece  etc  and this should be assinged to  all the work centres -CR02-Capacity Tab -Capacity Header -Factory Calader ID -Let say it is FC2.
    You need to ceate Calander in OP03/SCAL .It does nto have any transport and  it will be a Cleinet level changes  which requires proper approval .Please rememeber , you need to assing only FC1 to Plant assingement in OP03 where as FC2 will be asisnged only in Work Centre level  .
    Steps : Goto -OP03
      1.Identify all those Public Holidays frist with Fixed or moveable as per business requirement
      2.Goto Holiday Calander -Hit the pencil -Hit Create option -Enter ID , Description , Valid To/From Year ( shd be 20 yrs differnce )
       Add all those holidays as per Public holidays as applicable in your business  with proper valididty  and finally SAVE
    3.Goto Factory Calander -Hit the pencil -Hit Create option -Enter ID , Description , Valid To/From Year ( shd be 20 yrs differnce )
       Asisng Hioliday Calander . In case of FC2-Work centre Calander , here you can hit the Special Rules .Include Special Activity like Plan Shut down of factory with Validity  etc and SAVE .
    4.Come back to OP03 main screen -Assing the factory Calender in plant .
    5.Goto -CR02-Capacity -Capacity Header -Available Capacity Header -Factory Calander-Assing FC2
    I do not  think you should have planning calander seperately if you do not have any specific reason .
    Hope it helps
    Regards
    JH

  • Set factory calender and user requirement date calculation

    Hi Gurus,
    I've requirement to do calculation for start user requirement & end user requirement. The calculation must exclude public holiday and weekend. Therefore factory calender need to be maintained.
    Please guide me into doing this.
    regards,

    Dear
    Based on your business requirement ,  you should have the following set up :
    1.One Factory Calender  with Work Days Monday-to-Friday  Let say FC1 .This will be used on all the organisational level starting from Materials Planning to Sales  .But will not be assinge to Capacity Requirement Planning Purpose or Any Production Activity in Work Centre .
    2.You should have one more Factory Calander with work Days Monday to Monday ( 7 days week ) with some special rule like Plan Shutdown Days , Breakdown Maintainnece  etc  and this should be assinged to  all the work centres -CR02-Capacity Tab -Capacity Header -Factory Calader ID -Let say it is FC2.
    You need to ceate Calander in OP03/SCAL .It does nto have any transport and  it will be a Cleinet level changes  which requires proper approval .Please rememeber , you need to assing only FC1 to Plant assingement in OP03 where as FC2 will be asisnged only in Work Centre level  .
    Steps : Goto -OP03
      1.Identify all those Public Holidays frist with Fixed or moveable as per business requirement
      2.Goto Holiday Calander -Hit the pencil -Hit Create option -Enter ID , Description , Valid To/From Year ( shd be 20 yrs differnce )
       Add all those holidays as per Public holidays as applicable in your business  with proper valididty  and finally SAVE
    3.Goto Factory Calander -Hit the pencil -Hit Create option -Enter ID , Description , Valid To/From Year ( shd be 20 yrs differnce )
       Asisng Hioliday Calander . In case of FC2-Work centre Calander , here you can hit the Special Rules .Include Special Activity like Plan Shut down of factory with Validity  etc and SAVE .
    4.Come back to OP03 main screen -Assing the factory Calender in plant .
    5.Goto -CR02-Capacity -Capacity Header -Available Capacity Header -Factory Calander-Assing FC2
    I do not  think you should have planning calander seperately if you do not have any specific reason .
    Hope it helps
    Regards
    JH

  • Factory calender for Shipping Point

    Dear,
    if we change the Factory calender for Existing shipping point, Can i know what are the provlems will face??
    Thanks in adv.

    You can do this by using tcode:OVXD ( Define Shipping Point) -Initial step to create Shipping Point in Enterprise structure.
    Select your shipping Point & Click on Details button - you will find Factory Calender field.
    It will have impact on following:
    - confirmation dates of Qty(Lead time)
    - Need to check Public holidays.
    - Confirmation Date on sales document items, may get re-calculated as the shipping point may have less/more days now to do backward/forward scheduling
    - If you are on a MTO environment, the start/finish date of the manufacturing order may change, as now you may have more/less days than previously estimated
    -The MRP demand may change, now requesting certain product to be available (material Availability Date) either earlier or later
    -Your "Route" (Transit Time) may be off and if you have any "D" Incoterms that drive revenue recognition at different times after PGI, then they may be off now that the date is different.
    One suggestion. Copy your client to a temporary sand box client, then do the change there and then try to ship some orders on the date that is/was marked as a holiday, also change some sales orders (anything that will re-trigger the scheduling like quantity or delivery date) and take a look not only to the sales document, but to the manufacturing order as well as get the MRP folks to be aware of the impact on their side . Having the compare client, you will be able to see what happen in your production system vs. how it behaves on your new sandbox with the new calendar.
    Hope it can assist you.
    Thanks & Regards
    JP

  • 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

  • Create a plane with a own factory calender

    Hi,
    I would like to create a plan with our own factory calender. (spro-entreprise structure-definition-logistic general-define plan) Because we have some particular free days in the company the system already has some factory calender but we need our own one.How can I do
    Thanks
    Dede

    I' ve the result.
    With the Code "SCAL" you have to create a public holiday. After that you can choise the holiday kalender and assign the public holiday you have created.
    Thanks

  • How to extend factory calender to a plant ?

    Hi Ranga:
    How to extend factory calender to a plant ? ( Tcode: SCAL, The calender is not client specific)
    I check marked US factory calender, where after can you tell how to extend factory calender to plant
    Note: I am using IDES ( International Demonstration & Education System)
    Thanks

    Hi Sandeep,
    you need to use the following path
    Go to SPRO>ENTERPRISE STRUCTURE->DEFINITION> LOG GENERAL>DEFINE COPY,DELETE AND CHECK PLANT>DEFINE PLANT
    Here you need to assign the factory calendar. The assignment in work center will only applicable for capacity not for MRP and others.
    <b>For information how to create a factory calendar</b>
    Pl follow the steps
    1.Go to SCAL transaction
    2.there will be three options.
    Click first public holidays and go in change mode.
    Click create and create your holidays there and save.(Generally fixed date will be used in the pop up)
    3.Now click Holiday calendar and go in change mode.
    Click create and give holdiay cal id and description.
    Click assign public holiday and add your holidays one by one and save
    Now holiday cal is created.
    4.Now come out and choose fact calendar and go in change mode
    Click create and give Factory calendar id and description, and validity period.
    Give the holiday calendar ID.
    If you want to give special rule like any of the specific date/ day is the holiday or work day (which is different from holiday calendar you can define)
    and save.
    5.You have to assign factory calendar to PLANT
    Go to SPRO>ENTERPRISE STRUCTURE->DEFINITION> LOG GENERAL>DEFINE COPY,DELETE AND CHECK PLANT>DEFINE PLANT
    Choose your plant and go to details-
    You have to define factory calendar there
    Hope this will help you
    Regards
    Ranga

Maybe you are looking for

  • Macbook Pro with Retina Display to HDTV, How?

    Hey , okay so i have the new Macbook Pro with Retina Display i got it not too long ago. I'm looking to hook it up to my HDTV, i have a Samsung TV not 3D and i just wanted to know what cables and such i'll need to help me display what's on my Mac to m

  • Is incremental backup possible for archivelog.

    Hi expert i want to plan weekly and daily backup with windows redundancy 14 days. full archivelog backup script run BACKUP AS COMPRESSED BACKUPSET INCREMENTAL LEVEL = 0 DEVICE TYPE DISK TAG = 'WEEKLY_ARCHIVELOG' FORMAT '/oracle/ITB/db/apps_st/rman_ba

  • Joining multiple tables in Oracle DB

    I have the following tables. 1. AddProject - projID - projName 2. AddLab - labID - labName 3. ProjLabAssociation - projID - labID 4. AddResearchArea - raID - raName 5. ProjRAAssociation - projID - raID AddProject is associated with both the tables-Ad

  • Dynamic query not working

    hi im using a dynamic query to put in an internal table but its not working Can you see whats wrong in that? gv_query = ' au~uname AS OTCTUSERNM,'. CONCATENATE gv_query  'a1object' '.' 'a1field'  ' AS  0TCTAUTH'  INTO gv_query. CONCATENATE gv_query 

  • Changing field catalog of ALV grid after first display (was: "ALV GRID")

    Dear experts! I am using CL_GUI_ALV_GRID to display an ALV, whose fieldcatalog has 5 fields (FIELD1, FIELD2, FIELD3, FIELD4 and FIELD5). I am setting "NO_OUT = 'X' " to the fields FIELD3 and FIELD5 in the fieldcatalog before call the method SET_TABLE