'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

Similar Messages

  • 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

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

  • 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

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

  • 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

  • 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

  • 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

  • Date Validation - End date before Start date

    This may be a very simple validation but I seem to be having trouble. I've got a form which requires a date range to be selected (Date Picker fields)...a Start date, and an End date.
    I've created a Function Returning Boolean validation with the code as:
    begin
    if :P1_END_DATE < :P1_START_DATE then
    return false;
    else
    return true;
    end if;
    end;This works 99%, except when the date range spans years.
    For example, when I select '21-Dec-2010' in the start date and '4-Jan-2011' in the end date. The validation fails, and thinks the end date is before the start date.
    Do I need to compare the year part of the date, before doing the rest? Or is the '<' not suited for this sort of check?
    Edited by: djston on Dec 20, 2010 12:13 PM

    Sorry, false alarm, it looks like I had my logic a little backwards :)

  • Javax.servlet.ServletException: Before start of result set

    I have a page where i want to put items that have been entered into a bean and put them into my SQL database. Firs of all i want to insert some value into my question table and then I use the SELECT LAST_INSERT_ID() function in mySQL to get the last incremented ID from the first statement. As you can see I then want to use this ID and insert it into the other statements to relate the tables but I get an exception which is shown below. The frist insert staemet works fine when the rest is commented out but when i try it with the other 2 insert statements it throws this back at me.
    javax.servlet.ServletException: Before start of result set
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:825)     org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:758)
    org.apache.jsp.authoring.question_005fmanager.process_005fquestion_jsp._jspService(process_005fquestion_jsp.java:453)
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    java.sql.SQLException: Before start of result set
    com.mysql.jdbc.ResultSet.checkRowPos(ResultSet.java:4424)
    com.mysql.jdbc.ResultSet.getNativeInt(ResultSet.java:6210)
    com.mysql.jdbc.ResultSet.getInt(ResultSet.java:1335)     org.apache.jsp.authoring.question_005fmanager.process_005fquestion_jsp._jspService(process_005fquestion_jsp.java:126)
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    My code is shown here
    // gets the feedback string parameters
    if (request.getParameterValues("feedbackBox") != null) {
        String [] feedbackList = request.getParameterValues("feedbackBox");
        questionData.feedback = feedbackList;
    //gets the session username variable
    String insertQuestion1__username = null;
    if (session.getValue("MM_Username") != null) {
        insertQuestion1__username = (String)session.getValue("MM_Username");
    //Creates a new mySQL date
    java.sql.Date currentDate = new java.sql.Date((new java.util.Date()).getTime());
    //goes thorugh each element of the scores array and calculates maxScore 
    questionData.maxScore = 0;
    for (int i = 0; i < questionData.scores.length; i++) {
        questionData.maxScore = questionData.maxScore + questionData.scores;
    Driver DriverinsertQuestion = (Driver)Class.forName(MM_connQuestion_DRIVER).newInstance();
    Connection ConninsertQuestion1 = DriverManager.getConnection(MM_connQuestion_STRING, MM_connQuestion_USERNAME,
    MM_connQuestion_PASSWORD);
    questionData.numOutcomes = questionData.choices.length;
    PreparedStatement insertQuestion1 =
    ConninsertQuestion1.prepareStatement("INSERT INTO Question.question (Topic_ID, Description, Image, Author, Created_Date, Max_Score, Question_Type) VALUES ('"
    + questionData.topicID + "', '"
    + questionData.questionText + "', '"
    + questionData.questionImage + "', '"
    + insertQuestion1__username + "', '" + currentDate
    + "', " + questionData.maxScore + ", '"
    + questionData.questionType + "') ");
    insertQuestion1.executeUpdate();
    PreparedStatement StatementlastID = ConninsertQuestion1.prepareStatement("SELECT LAST_INSERT_ID()");
    ResultSet lastID = StatementlastID.executeQuery();
    int questionID = lastID.getInt(1);
    Driver DriverinsertQuestion2 = (Driver)Class.forName(MM_connAnswer_DRIVER).newInstance();
    Connection ConninsertQuestion2 = DriverManager.getConnection(MM_connAnswer_STRING, MM_connAnswer_USERNAME,
    MM_connAnswer_PASSWORD);
    PreparedStatement insertQuestion2 =
    ConninsertQuestion2.prepareStatement("INSERT INTO Answer.question (Question_ID, Question_Description, Question_Type, Topic, Number_Outcomes, Question_Wording) VALUES ('"
    + questionID + "', '" + questionData.questionLabel
    + "', '" + questionData.questionType + "', '"
    + questionData.questionType + "', '"
    + questionData.topicID + "', '"
    + questionData.numOutcomes + "', '"
    + questionData.questionText + "' ) ");
    insertQuestion2.executeUpdate();
    Driver DriverinsertOutcomes = (Driver)Class.forName(MM_connAnswer_DRIVER).newInstance();
    Connection ConninsertOutcomes = DriverManager.getConnection(MM_connAnswer_STRING, MM_connAnswer_USERNAME,
    MM_connAnswer_PASSWORD);
    for (int i = 0; i < questionData.numOutcomes; i++) {
    PreparedStatement insertOutcomes =
    ConninsertOutcomes.prepareStatement("INSERT INTO Answer.outcome (Question_ID, Outcome_Number, Outcome_Text, Score, Feedback) VALUES ( '"
    + questionID + "', '" + i + "', '"
    + questionData.choices[i] + "', '"
    + questionData.scores[i] + "', '"
    + questionData.feedback[i] + "' ) ");
    insertOutcomes.executeUpdate();

    further to Limo2kz's problem, LAST_INSERT_ID() will return 0 if the last INSERT statement actually has inserted 0 records. this could happen if the previous INSERT attempt has failed.
    as far as i can remember, you should find out if the account or user that you are currently using to connect to MySQL database is allowed to do more SQL executions and create more SQL connections at certain given time (i.e., 10 executions in 1 hour, 10 connections in 1 hour). otherwise, you would have subsequent SQL exceptions because the database server won't allow you to execute them, thus giving you a null ResultSet.

  • Advice about application structure before starting

    Hi all,
    I am so sorry for this longest post, but I have to explain all thing. Sorry again.
    I have been studying with Labview for a year by myself without taking any professional support. When I get stuck in preparing my VIs, I always post here and you answered me with great patient. Thank you for all. Now, I am about to start a new VI and before starting it I thought it would be good to consult you on that.
    The goal of this VI could be classified under 4 main topics: Acquisition, control, analysis, and recording the data. I am studying on a test system. There are two types of data to be acquired from the test system: pressure and temperature. For this purpose I have 1xNI 9203 (analog input-current) & 2xN9214(analog input-temperature). The test system is desired to be under control by use of a DC compressor with a frequency converter. To control that frequency converter I have to use NI 9263 (analog output- voltage). All hardware system is installed on NI 9188 cDAQ.
    Before preparition of this system, I have coded a VI that acquire, analyse, and record the data-there is no use of NI 9263 (attached here). In this VI, I used a basic structure and it works fine. The only problem of this VI is delaying when the stop button is pressed. Anyway, now I want to prepare a new one. The difference of the new VI from the old one is that it controls the system while acquiring, analysing, and recording processes. And this control is supported by acquired pressure and temperature values. This will be my first big project and I need your suggesttions on structure of this VI. Do I start to build it with state machine architect or another ones? To prevent the data loss what kind of precautions could be taken?
    Thank you all in advance.
    Egemen
    Attachments:
    MAIN PROGRAM_v0.vi ‏147 KB

    Egemen,
    First, Great! It is very important to plan and design your program before starting to write it.
    Next, you do not need to apologize for providing the information necessary for someone to respond to your request. We would very much prefer a post of several paragraphs which contains the relevant information to a brief post which only elicits questions for more details.
    Now to your questions.
    1. Look at the style guides.  Your block diagram was several screens high and wide.  It is recommended to keep the diagram to one screen.  Paticularly in programs which will get large and copmlicated like yours, this readability constraint will be very worthwhile.  Effective use of subVIs is one way to help minimize screen bloat.
    2.  Look at the style guides. The use of local variables to pass data from one loop to a parallel loop is not recommended.  It can lead to race conditions, force execution of the loops in the UI thread, and is slower than wires.
    3. Read the help on Event Structures. Only one event structure per VI is recommended. Although the way you have used them will probably work, it consumes hectares of block diagram space and may be vulnerable to problems when you or another developer decides to make a few changes.
    4. Because there is no data dependency, it is possible (although not very likely) that the main loop could start running before the clear history property nodes execute.
    5. How do your temperature charts know which waveform to display?
    6. You stop on DAQ errors but do not check for file errors. You may want to consider more robust error handling.
    Now, some general comments on program structure. You list 4 topics: Acquisition, control, analysis, and recording the data.  This may also be a good way to think about program structure. The structure probably needs one more topic: User Interface.  The program you posted essentially has 2 topics: User Inputs and everything else.  Think about the timing requirements for each topic.  User interface - needs to respond to user inputs in about 100 ms or the user begins to feel as though the program is not responding. Similarly, displays do not need to update more than a few times per second. Acquisition - Software timed.  Default value = 1.67 Hz. Output not specified, but since you are talking pressure and temperature, it is probably slow also. Once you start doing closed loop control, it may become more important to keep the timing constant. Record data - same timing as acquisition.  However, writing 8-64 channels of data two two files twice per second may not be optimum. And what happens when the OS finds that the files are fragmented and must allocate new sapce for the file and takes more than half a second to do so?  Analysis - Your subVIs were not included so I have no idea what they do, how fast they may be and what effects they may have on the overall operation.
    What I suggest is that you study the Producer/Consumer Design Patterns and State Machines.  I think you may end up with 3 or 4 parallel loops. One will be the User Interface loop with the only event structure. Another will handle all the data acquisition (possibly including outputs when controlling your test system). This will be a state machine which initializes the DAQ, Reads and Writes, and shuts it down when finished. The File writes may be in a separate loop. If file I/O is put into a parallel loop, it should be a state machine which opens, writes, and closes the files and retains the file path or reference for repeated writes. The control and analysis (another state machine) may be in a separate loop or could run in the timeout case of the event structure in the UI loop.  Which is best depends on details of your system.
    With the amount of data you are moving around and the number of property nodes you need to use, learn to manipulate the front panel from a subVI. Search the Forum for posts on use of control references and on updating the main front panel from a subVI. There are some good methods posted.
    Lynn

  • No data found from start index 2 to end index Error

    I'm trying to import a .csv and I keep getting this error  when I press the Next button:
    No data found from start index 2 to end index
    I know it is because my Date column in my csv, because when I take it out I don't get the error
    I have the date in YYYY-MM-DD format so I don'd understand why I am getting this.
    Can someone please advise me? I attached the error and screenshot of my csv
    Thanks,
    Connor

    Ahh, now I understand what you mean.
    It seems that all of your error-processing is done/implemented with DBMS_OUTPUT.PUT_LINE calls, also inside the procedure PROCEDURE_FOR_TRANSFER.
    And it is NOT throwing a NO_DATA_FOUND exception (what most of us here at the forum were thinking).
    It is outputting a message text that has the substring "ORA-01403: no data found" in it: something very different than an exception.
    And you want some solution to hide lines with that substring right?
    What you could do (but this is getting silly if you ask me...) is use DBMS_OUTPUT.GET_LINE(s) right after you invoked PROCEDURE_FOR_TRANSFER and get ("pop") all message lines yourself (that is before SQLPlus is doing that), filter the line(s) with "ORA-01403: no data found" substring in it, and put_line ("push") all remaining message lines back.
    Edited by: Toon Koppelaars on Jul 28, 2009 9:56 AM

Maybe you are looking for

  • Please help!! problem with rebooting lumia 820

    I only got my Lumia 820 yesterday and it was fine then today the camera stopped working, i tried taking the battery out, and putting it back in then switching it back on - still no luck. Then i went on the nokia website and looked up the troubleshoot

  • Configuration in RFQ, PO

    >Hi MM Experts, >The following is required to be configured :- >1. The Net Price for a material in Request for Quotation should be inclusive of basic price, excise duty, educational cess, higher secondary educational cess, freight & transportation, i

  • Safari white screen

    Just today, out of no where, sarafi will only show me a white page, regardless of what address I type in the address bar.  Brand new Macbook Pro for Christmas.  Worked yesterday, not today.  I googled it and based on the hits that came back I thought

  • Vertical Scrollbar in the MC9090 Handheld device for ITSMobile Service

    Hi, In Our ITSMobile, we have 10.4u201D forklift devices from LXE with windows XP and MC9090 from Motorola CE windows mobile 5.0. We are in ECC 6.0 and using integrated ITSmobile  .We use TRM and our RF users will log on from LP00. The screens are go

  • HD or SD Camera for web streaming application

    Looking to buy a couple of cameras (and FCE) purely for creating video for web streaming. Given the video will be highly compressed for streaming, is there any benefit in going HD over SD? With thanks Bob