Error MSG '01/07/1900 date lies before start of factory calendar' in MD04

Hi all,
I have this error message when enter a particular material in MD04.  I know our factory calendar does not start in 1900, can anyone tell me how to clear this message?  I suspect there is a bogus data somewhere.  Can anyone help me how to fix it?
Thanks,
Lin-Lin

Hi,
For this particular material, there must be Orders which are created with this date.
That is the reason, immediately after you input the material details an Press enter, in MD04 this  message will appaer.
So, Check all the Orders (Better to check all the Receipts and Requiremnts as well) and Change the Date to current..
One more information is this must be a for ecample a firmed Order like Production Order or a Firmed Planned Order etc..
Check and revert for further discussion..
Regards,
Siva

Similar Messages

  • '0610.05.20 data lies before start of factory calendar'

    hi,
    the error of '0610.05.20 data lies before start of factory calendar.' how to correct it.
    but somentimes is ok ,no error.
    regards
    sophia

    hi.
    if i use the plant as selection option,there has error,
    if i use the plant and MRP controller as selection option,there has no error,why? i hope someone help me,thank you.
    now i provide the program code  :
    report zreq_list message-id z01 .
    tables:
          mara,
          marc,
          mdez,
          scal.
    data:begin of i_alv occurs 0,
         matnr like mara-matnr,
         maktx like makt-maktx,
         werks like marc-werks,
         week like scal-week,
         extra like mdez-extra,
         meins like mara-meins,
         meins1(3),
         mng01 like mdez-mng01,
    end of i_alv.
    data: begin of i_cx occurs 0.
    include structure mdez.
    data: matnr(18).
    data: werks(4).
    data: week like scal-week.
    data: maktx(40).
    data: meins(3).
    data: end of i_cx.
    data:begin of i_mara occurs 0,
    matnr like mara-matnr,
    werks like marc-werks,
    dispo like marc-dispo,
    end of i_mara.
    data: i_mdez like mdez occurs 0 with header line.
    define add_field.
      wa_field-fieldname = &1.
      wa_field-reptext_ddic = &2.
      append wa_field to it_field.
    end-of-definition.
    type-pools slis.
    data: gs_layout type slis_layout_alv.
    data: g_repid type sy-repid.
    data: it_field type slis_t_fieldcat_alv.
    data: wa_field type slis_fieldcat_alv.
    g_repid = sy-repid.
    gs_layout-colwidth_optimize = 'X'.
    if sy-langu = '1' .
       add_field 'MATNR' '物料号码'.
       add_field 'MAKTX' '物料描述'.
       add_field 'WERKS' '工厂'.
       add_field 'WEEK' '需求时间'.
       add_field 'EXTRA' 'MRP元素'.
       add_field 'MEINS1' '单位'.
       add_field 'MNG01' '需求量'.
    else.
       add_field 'MATNR' 'Material No'.
       add_field 'MAKTX' 'Material description'.
       add_field 'WERKS' 'Plant'.
       add_field 'WEEK' 'Requirements date'.
       add_field 'EXTRA' 'MRP element'.
       add_field 'MEINS1' 'Unit'.
       add_field 'MNG01' 'Requirement quantity'.
    endif.
    data: file(100) type c .
                         SELETION-SCREEN
    selection-screen begin of block block1 with frame .
    select-options:
                    s_delb0 for mdez-delb0 ,"MRP 元素
                    s_matnr for mara-matnr ,"物料编号
                    s_werks for marc-werks default '1000' ,"工厂
                    s_dispo for marc-dispo,"MRP控制者
                    s_week  for scal-week."需求时间
    parameters:
                   p_plscn like plsc-plscn default '000',"计划方案
                   p_inper like mdst-inper,"内部期间标识
                   p_ergbz  like t462-ergbz."选择规则
    selection-screen end of block block1.
      B E G I N  S E L E C T I O N
    start-of-selection.
    data i_exit.
    perform get_data.
    check i_exit ne 'X'.
    perform display_data.
    *&      Form  get_data
          text
    -->  p1        text
    <--  p2        text
    form get_data.
    select maramatnr marcwerks marc~dispo into table i_mara
              from mara inner join marc on maramatnr eq marcmatnr
              where mara~matnr in s_matnr
                and marc~werks in s_werks
                and marc~dispo in s_dispo.
    loop at i_mara.
       perform  call_req using i_mara-matnr
                               i_mara-werks
                               p_plscn
                               p_inper.
    endloop.
    if sy-subrc <> 0.
    message i000 with 'Non data!'.
    i_exit = 'X'.
    exit.
    endif.
    loop at i_cx.
       call function 'DATE_GET_WEEK'
            exporting
                    date = i_cx-dat00
            importing
                   week = i_cx-week.
      modify i_cx.
      clear i_cx.
    endloop.
    loop at i_cx where week in s_week..
    move-corresponding i_cx to i_alv.
    collect i_alv.
    clear i_alv.
    endloop.
    sort i_alv by werks matnr.
    endform.                    " get_data
    *&      Form  call_REQ
          text
         -->P_I_MARA_MATNR  text
         -->P_I_MARA_WERKS  text
         -->P_P_PLSCN  text
         -->P_P_INPER  text
    form call_req using    v_matnr
                           v_werks
                           v_plscn
                           v_inper.
    call function 'MD_STOCK_REQUIREMENTS_LIST_API'
      exporting
        plscn                          = p_plscn
        matnr                          = i_mara-matnr
        werks                          = i_mara-werks
        inper                          = p_inper
        ergbz                          = p_ergbz
    importing
       e_mt61d                        = i_mt61d
    tables
        mdezx                           = i_mdez
    exceptions
       material_plant_not_found       = 1
       plant_not_found                = 2
       others                         = 3.
    loop at i_mdez where delb0 in s_delb0..
       move-corresponding i_mdez to i_cx.
       i_cx-matnr = v_matnr.
       i_cx-werks = v_werks.
       append i_cx.
       clear i_cx.
    endloop.
    endform.                    " call_REQ
    *&      Form  display_data
          text
    -->  p1        text
    <--  p2        text
    form display_data.
    call function 'REUSE_ALV_GRID_DISPLAY'
         exporting
              i_callback_program        = g_repid
             i_callback_user_command  = 'USER_COMMAND'
              it_fieldcat               = it_field
             IT_SORT                  = it_SORT
              is_layout                 = gs_layout
              i_save                    = 'A'
             IT_EVENTS                 = i_EVENTS[]
             is_variant                = i_variant
         tables
              t_outtab           = i_alv
         exceptions
              program_error               = 1
               others                      = 2.
        if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    endform.                    " display_data

  • ERROR ME078 - DELIV. date outside period covered by factory calendar &

    Hi there!
    I am in the classic scenery, SRM 5.0 linked to a backend 4.7 
    When trying to create a Purchase Order it is exhibited in the Monitor inside of Quotation (Backend Application Errors) the message ME078 - Deliv. date outside period covered by factory calendar & 
    I entered in the transaction SCAL and mine dates from factory is ok contemplating the exercise up to 2025. 
    Some suggestion? 
    Thanks, 
    Pedro

    Hi, 
    Yes, I can see the mistake through RZ20. 
    SAP (CEN) ENTERPRISEBUYER MONITORS --> QUOTATION 
    I had already seen the informed link, but it didn't solve my problem. 
    My calendar is ok, he assists mine my exercise. In SRM and in Backend. 
    Some other suggestion? 
    Tks, 
    Pedro

  • HT4864 I am using Entourage and followed all the instructions above and still getting IMAP Server error.  Error msg:Security failure.  Data decryption error.

    I am using Entourage and followed all the instructions above and still getting IMAP Server error.  Error msg:Security failure.  Data decryption error.

  • Error Msg_ME078 - DELIV. date outside period covered by factory calendar

    Dear experts:
    when i create PO with ME21N,
    if the delivery date is not within the year of 2010,
    there will appear an error msg "ME078 - DELIV. date outside period covered by factory calendar".
    i have checked the factory calendar with SCAL.
    i know how to modify the factory calendar to expand the time period,
    but now i still have a question,
    the system can't change the year period automatically?
    so we have to change the period after we confirm the public holiday calendar?
    thanks ~
    B/Rs
    Jamie

    hello~
    if the system can't update the calendar automatically..
    why the consultant didn't set the valid period to an  exaggeration year at that time?
    did they have any concern?
    thanks a lot~
    B/Rs,
    Jamie

  • Deliv. date outside period covered by factory calendar TR//PO error

    Dear Sap Experts
    I am creating the P.O For Delivery Date 31.03.2010
    System has giving following error,
    Deliv. date outside period covered by factory calendar TR
    How can I overcome this error,
    Please Give me the solutions
    Thanks

    Thank for ur reply,
    Please give me the procedure with that T code
    I didn't got any year with that T code
    Thanks

  • PO Error : Deliv. date outside period covered by factory calendar

    Hi,
    We are encountering an error "Deliv. date outside period covered by factory calendar xx" when creating a PO. I checked the delivery date of the item and it is : 11/30/2009. The Factory calendar valid from/to year is 2005-2013. What may have caused the error to appear ?

    Hi ,
    How can i check  whether the validity period of the factory calendar is within the valididty period of public holiday calendar.
    Regards,
    Vinayak

  • Deliv. date outside period covered by factory calendar ZJ

    Dear all
    In one import po,there are 9 items. Document date is 18.06.2008.For the first 6 items i have given various delivery dates this year 2008 and there is no problem.But
    for last 3items, my requrement is delivery schedule is 30.03.2009.But system is showing the error as
    Deliv. date outside period covered by factory calendar ZJ
    Please suggest the solution

    HI
    My Suggestion is to cancel the created PO 3 line items and put Scheduling agreement for 3 items with respect to delivery schedule
    regards,
    senthil.

  • E ME 078 Deliv. date outside period covered by factory calendar

    Hi,
    I create Bid vendor, but the error show E ME 078 Deliv. date outside period covered by factory calendar
    I 've checked the factory calender in backend the setting is all day as a working day (doesn't have holidays and weekend days)
    pls help me....

    this error occurs if u had given a wrong date or very different date pl check for ex if u had given date as 05.08.2028 here at present the year givenas 2028 & in system the year going on as 2008 then in this situation system will give the error as u wrote .pl confirm & reward for efforts .
    sap11

  • Deliv. date outside period covered by factory calendar IN

    Hi Experts,
    I am trying to create Purchase Order with 2011 year delivery date system is showing bellow issue in production server.
    Deliv. date outside period covered by factory calendar IN
    Message no. ME078
    Please advice me how can i overwrite this problem immediately.
    Thanks in advance,
    Chandhu

    Dear Experts
    I tried the method which mentioned above, but when I tried to change the Valid 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.

  • Deliv. date outside period covered by factory calendar TR

    Dear Sap Experts
    I am creating Po with delivery date 31/03/2010
    System is saying lollowing problem,    Deliv. date outside period covered by factory calendar TR
    Please Give me the solution how to overcome this problem
    Thanks

    hello
    Check you SCAL factory calander, whether the day is defined as working day or not??
    If not defined, then you can only use the next working day.

  • Get number of hours between two dates and two hours using factory calendar

    Hello all,
    I have the following requirement: I need to calculate the number of hours between two dates and two hours (start date- finish date and start hour-finish hour) or timestamps using a factory calendar. I must program it on CRM environment.
    Does anybody know a function module that makes it?
    Thanks in advance.
    Carmen

    Please check function module DURATION_DETERMINE.
    - April King

  • Error msg: failed to open date book database

    In trying to open my Palm 3.1.1.0 dinosaur desktop application, I received the above error message. I'm new to this help arrangement, but it looked to me like the old solution offered by the forum was no longer linked to the message. Help! I no longer use my handheld, and it's been a long time since I ran a paper backup. The date book is far less important than the address data base that I cannot open at this point. Am I in trouble, or is there a way around this? (I probably have the old installation software somewhere, but what if I don't?)
    Many thanks!
    Post relates to: Palm III
    This question was solved.
    View Solution.

    Hi, and welcome to the Palm Community Forums.
    Palm's recent do-over of its support site blew up many of the links appearing in the Forums.
    Perhaps this is the article which you could not find from prior links:
    http://kb.palm.com/SRVS/nua/launchKB.asp?c=10089
    Post relates to: None
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • Tried to update my iPad  OS from iTunes. Frozen and got an "unknown error msg". I tried to restore the iPad to factory settings..got the same

    I bought today a new iPad from Rideau Store. The setup guys didn't update to latest software version. I tried to do myself trough iTunes, which notify me that an upgrade is available. After a while the upgrading process froze with a msg "unknown error ..". I clicked on the More  info  button and I got a page saying "due to a scheduled upgrade of Apple's support system some feature are not available.
    The bottom line is that now the iTunes does detect the iPad being in recovering mode and asks to restore it to fabrics defaults. I tried to do this and again I got aqn "unknown error"
    Finally I run the iTunes diagnostics to check the connectivity between my iPad and my HP laptop (iTunes). For unknown reson the iTunes does not detect my iPad. See below the diagnostics log:
    Itunes Diagnostics
    MicrosoftWindows XP Professional Service Pack 3 (Build 2600)
    Hewlett-PackardPavilion dv5000 (EP416UA#ABA)
    iTunes10.2.2.12
    QuickTime 7.6.9
    FairPlay1.11.17
    AppleApplication Support 1.5.1
    iPod UpdaterLibrary 10.0d2
    CD Driver2.2.0.1
    CD Driver DLL2.1.1.1
    Apple MobileDevice 3.4.0.25
    Apple MobileDevice Driver 1.55.0.0
    Bonjour 2.0.5.0(214.3)
    Gracenote SDK1.8.2.457
    GracenoteMusicID 1.8.2.89
    GracenoteSubmit 1.8.2.123
    Gracenote DSP1.8.2.34
    iTunes SerialNumber 0012AD0812DA2D38
    Current user isan administrator.
    The currentlocal date and time is 2011-04-20 20:32:27.
    iTunes is notrunning in safe mode.
    WebKitaccelerated compositing is enabled.
    HDCP is notsupported.
    Core Media issupported.
    Video DisplayInformation
    ATI MOBILITYRADEON Xpress 200 Series  
    **** ExternalPlug-ins Information ****
    No externalplug-ins installed.
    Genius ID:cb0eaa5cad8a753f64335065bc061263
    **** DeviceConnectivity Tests ****
    iPodService10.2.2.12 is currently running.
    iTunesHelper10.2.2.12 is currently running.
    Apple MobileDevice service 3.3.0.0 is currently running.
    UniversalSerial Bus Controllers:
    StandardEnhanced PCI to USB Host Controller. Device is working properly.
    StandardOpenHCD USB Host Controller.  Device isworking properly.
    StandardOpenHCD USB Host Controller.  Device isworking properly.
    No FireWire(IEEE 1394) Host Controller found.
    Most RecentDevices Not Currently Connected:
    iPad runningfirmware version 4.3.1
    Serial Number:        DLXFK2A8DKPH
    **** DeviceSync Tests ****
    No iPod, iPhone, or iPad found.

    Try:                                               
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable       
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar                              
    Also, do you remember what the error message said?

  • Trying to move aperture library from USB external drive to FW 800 external drive.i can see the projects but no thumbnails. Error application not responding. Verified permissions before started. It's been 3hours. Recommendations please

    I have consolidated iPhoto into aperture 3.2.2  and now have both aperture and iPhoto put consolidated library on 2.0 USB external drive. Have been removing duplicate photos from 23,000 down to 15,000. Problem in trying to close aperture and now tried to move library from 2.0 USB to 800FW and can see projects but no thumbnails. Aperture error now reads not responding. Can I repair library on 2.0 at this point? 

    Sharon,
    did you do anything else besides copying your library to a fire wire drive after your last post                                                                            Aperture not responding                     ?
    Since that library probalbly already needed fixing, I'd recommend to force quit Aperture and use the "First Aid" to repair your Library.
    Aperture 3: Troubleshooting Basics: http://support.apple.com/kb/HT3805
    Regards
    Léonie

Maybe you are looking for