CTM: Difference between Order creation Frame & Maximum earliness

Hi Experts,
Could any one please explain me the difference between Order Creation Frame & Maximum Earliness in CTM Gloabl Customizing and their implact on the planning run
Thanks,
Naveen

Hi,
Order creation frame is a variable planning parameter and has to be set in CTM profile.Using this planning parameter one can define a range within a certain demand has to be fulfilled.In other words a time frame can be set within a supply has to be planned to fulfill a certain demand.
Maximum Earliness is maintained for Planned Orders which is the time period (in days) before the demand date, within which SAP APO can create planned orders early.
Thanks,
Dipankar

Similar Messages

  • Difference between ECC 6.0 and earlier versions

    Hi,
    one of the difference between ECC 6.0 and earlier versions is that instead 'WS_UPLOAD'  and 'WS_DOWNLOAD' in ECC we should use 'GUI_UPLOAD' and 'GUI_DOWNLOAD'  respectively.
    (of course SPDD and SPRO tcodes is known by everone i suppose)
    Similarly can u all put down some differences here, atleast one entry by each, I think we can make a good docu. I have searched the net for the differences but could not get much, so by each of us contributing one each, it would become good docu..for all of us.
    Thanx in advance

    Unicode Errors Encountered and their Solutions
    E1. In u201CTEXT MODEu201D the u201CENCODINGu201D addition must be specified.
         Error:
         OPEN DATASET FILE FOR OUTPUT IN TEXT MODE.
         Solution:
         OPEN DATASET FILE FOR OUTPUT IN LEGACY TEXT MODE.
    E2. In Unicode, DESCRIBE DISTANCE can only be used with the IN BYTE MODE  or  IN
          CHARACTER MODE  addition.
         Error:
         DESCRIBE DISTANCE  BETWEEN T_KOMK AND T_KOMK-HIEBO01 INTO BPOS.
         Solution:
    DESCRIBE DISTANCE  BETWEEN T_KOMK AND T_KOMK-HIENR01 INTO BPOS
    IN CHARACTER MODE.
    E3. u201CUSR02-UFLAGu201D must be a byte-type field (Typ X or XSTRING )
         Error:
         IF USR02-UFLAG O YULOCK.
         Solution:  Since the data type of USR02-UFLAG is type INT and is compared with data type
                    X u2013 Hence the error. So we  define a new variable ZULOCK and assign the
                    value of USR02-UFLAG to ZULOCK.
                  New variable             
                  DATA: ZULOCK(1) TYPE X.   "APBRP00
                  Assign value               
                                ZULOCK = USR02-UFLAG.
            Compare -
                   IF ZULOCK = YULOCK.   u201Creplace IF USR02-UFLAG O YULOCK.
    E4.  HT cannot be converted to a Character type field
    Error :
    WRITE ht TO t_data+10(2).
    Solution : Since the data type of ht is a type u2018Xu2019 and the data is been transfer to
             t_data which has a data type u2018Cu2019. value of one data type cannot be copy to
             another data type where one of them is type string .Hence the error occur,
             so the data type of ht is been change to Type u2018Cu2019
         OR
               A Tab ( value 09 ) is introduced as part of the row. The value 09 is not converted in Unicode environment. Instead we need to use class
         Error:
              DATA: BEGIN OF ht,
                   x(1) TYPE x VALUE '09',
              END OF ht.
         Solution:
                  Define Class after the Tables definition.
                       CLASS cl_abap_char_utilities DEFINITION LOAD.
                  Data Defination :  Comment internal table HT and define a variable HT type C.
           *   Insert + APRIA00 05/02/2007 Unicode project
           *   DATA: BEGIN OF ht,
         *         x(1) TYPE x VALUE '09'
           *   END OF ht.
         *   Insert - APRIA00 05/02/2007 Unicode project
           DATA HT type C.
           Before using HT assign Horizontal tab.
                     Ht = CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.  
    E5.  In Unicode programs the u201C#u201D cannot appear in names, as it is does here in the name    u201C#LINESu201D
         Error :
         #LINES                 TYPE I,
         Solution : Since the # is used in the start of name, it is not allowed. We need to
                  remove it. 
         Solution for the above
         V_LINES                 TYPE I,
    E6. In u201CTEXT MODEu201D the u201CENCODINGu201D addition must be specified as well as the addition was required FOR OUTPUT,FOR INPUT, FOR APPENDING OR FOR UPDATE was expected.
         Error:
         OPEN DATASET PATH_NAME IN TEXT MODE.
         Solution:
         Download =     OPEN DATASET PATH_NAME FOR OUTPUT IN LEGACY TEXT MODE.
         Upload        =  OPEN DATASET AUSZUG-FILE IN TEXT MODE FOR INPUT ENCODING DEFAULT.
    E7. u201CTABu201D must be a character-type data object( data type C,N, D, T or String). Field string)    
         Error:
                data: begin of tab,                   "Excel Parameter Split at TAB
            t type x value '09',          "Tabulator
           end of tab.
                concatenate 'Material' 'Package Status'
                    into z_download-line separated by tab.
                ( In the above command  the two field are to be separated with a horizontal Tab. The earlier      way of assigning the tab value u201809u2019 will not work in Unicode environment.
         Solution:
         Define a  class just after the Table defination.
              CLASS cl_abap_char_utilities DEFINITION LOAD.
                Define  variable Tab as shown below :
              Data : TAB           TYPE C.
         Before the concatenate statement assign the value of Tab using pre-defined attributes.
              TAB = CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
    E8. Upload/Ws_Upload and Download/Ws_Download are obsolete, since they are not Unicode-
          enabled; use the class cl_gui_frontend_services     
         Error-1:  Function WS_DOWNLOAD is obsolete in Unicode environment.
                call function 'WS_DOWNLOAD'
                     exporting
                          filename = zfilename
                     tables
                          data_tab = z_download.
         Solutions-1: Instead of WS_DOWNLOAD use  GUI_DOWNLOAD.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
    *   BIN_FILESIZE                  =
        FILENAME                      = zfilename
      TABLES
        DATA_TAB                      = z_download.
    E9.  The "/" character is reserved for identification of namespaces. It must be entered twice.
            The name  of a namespace must be at least 3 characters long.
         Error :      
                     U/N(3)        TYPE C,  "U/N    --> ERSETZT DURCH SPACE
         Solution :
         * Special character can not be used to define a data variable
         *      U/N(3)        TYPE C,  "U/N    --> ERSETZT DURCH SPACE
                  U_N(3)        TYPE C,  "U/N    --> ERSETZT DURCH SPACE
         * Insert - APSUS02 07/02/2007 Unicode Project
    E10.  "LP_TAB" and "CS_TAB" are not mutually convertible. In Unicode programs,
             "LP_TAB" must have the same structure layout as "CS_TAB", independent of the length
             of a Unicode character.
         Error : This error is encountered when data from one internal table is copied to another
                             internal table which different structure. In this case its LP_TAB & CS_TAB.
                     LP_TAB[] = CS_TAB[].
         Solution :
              * Replace + APSUS02 07/02/2007  Unicode Project
    *   LP_TAB[] = CS_TAB[].
                  move-corresponding CS_TAB to LP_TAB.
              * Replace + APSUS02 07/02/2007  Unicode Project
    E11.  Could not specify the access range automatically. This means that you need a RANGE
              addition.          
         Error :  Range need to be specified as an addition to the command.
                DO 4 TIMES VARYING HELP_CHAR FROM ABCD(1) NEXT ABCD+1(1).
               Solution : 
                DO 4 TIMES VARYING HELP_CHAR FROM ABCD(1) NEXT ABCD+1(1)
              * Insert + APSUS02 07/02/2007  Unicode Project.
                                                          RANGE ABCD+0(4).
    * Insert - APSUS02 07/02/2007  Unicode Project.
    E12 .  Processing Terminated Error code: Error in opening /
                                              Path not found when downloading to Unix directory.
         Error : PARAMETER: outfile(92) DEFAULT
                  '/CP/interface/NPP/data/MX/cbslaprcpts'
                        LOWER CASE,
                   kmxmstrd AS CHECKBOX.
                This error is encountered when the path is missing. The above path is related to CCP.
         Solution:  For testing purpose comment the original path and replace it with
                                     /CP/interface/CCD/Unicode_test/ 
    E13.    Upload/Ws_Upload and Download/Ws_Download are obsolete, since they are not                                                                       Unicode- enabled; use the class cl_gui_frontend_services
         Error: Function WS_UPLOAD is obsolete in Unicode environment. (During UCCHECK)
                   Call function 'WS_UPLOAD'
           Exporting
                Filename                = zfilename
                Filetype                = u2018DATu2019
           Tables
                data_tab                = z_upload
           Exceptions
                Conversion_error        = 1
                file_open_error         = 2
                file_read_error         = 3
                invalid_table_width     = 4
                invalid_type            = 5
                no_batch                = 6
                unknown_error           = 7
                gui_refuse_filetransfer = 8
                others                  = 9.
         Solution: Instead of WS_UPLOAD use TEXT_CONVERT_XLS_TO_SAP. Do not use temporary file put the file name as it is.
    1) First define a type pool and a variable of type truxs_t_text_data.
    TYPE-POOLS: truxs.
    DATA: it_raw TYPE truxs_t_text_data.
         2) Use this it_raw in the function module in parameter i_tab_raw_data. Put file name and the internal table in the function module.
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
    *     I_FIELD_SEPERATOR        =
    *      i_line_header            =  ' '
          i_tab_raw_data           =  it_raw       " WORK TABLE
          i_filename               =  zfilename
        TABLES
          i_tab_converted_data     = z_upload[]    "ACTUAL DATA
       EXCEPTIONS
          conversion_failed        = 1
          OTHERS                   = 2.
         Comment u201Ci_line headeru201D. It takes the first/ header line of the file which is to be uploaded.
    Put  square brackets after internal table as shown above.
    E14.    CURSORHOLD may not be converted into a number.
         Error:  GET CURSOR LINE CURSORHOLD VALUE CURSOR_HOLD.
         Solution: In the declaration part of CURSORHOLD, one field is of u2018Pu2019 type and one field is of u2018Iu2019 type, which is not allowed in Unicode environment.So change the the type of it to NUMC.  

  • Difference between Order & OrderImpl  ..?

    Hi All,
    Can anybody tell the difference between Order & OrderImpl..? Similarly, the difference between CommerceItem & CommerceItemImpl.. ? Where to which one..?
    Thanks in Advance,
    VishnuVardhan Bovilla
    Edited by: VishnuVardhan B on Dec 18, 2012 7:36 AM

    please go through ATG API you can easily figure out,
    http://docs.oracle.com/cd/E35318_02/Platform.10-1-1/apidoc/index.html
    and read documentation http://docs.oracle.com/cd/E35318_02/Platform.10-1-1/ATGCommProgGuide/html/index.html
    if you still dont get it then post questions

  • Difference  Between Order Change Management & Engineering change Management

    Dear,
    What is the Difference  Between Order Change Management & Engineering change Management ?

    Hi,
    ECM will help for Master data changes management.
    OCM will help to manage changes in Transaction Data like Production Orders.
    In brief,you have to first Create Change Number(part of ECM activity).then using that Change number, Master data(like BOM, Routing etc) has to be modified.
    Then through OCM affected Transaction Data(like Production Orders) for each change number to be Processed.
    Regards
    R.Brahmankar

  • What is the difference between Macbook Pro late 2008 & early 2009 ???

    I just bought a Macbook Pro on 1/1/09. I'm assuming I got a Late 2008. What is the difference between Macbook Pro late 2008 & early 2009 ???
    -Rany

    The "late 2008" macbook pro refers to the new 15 inch MBP currently out, and the early 2009 refers to it's big brother, the 17 inch which is due to come out in the near future.

  • Difference between "Order to Delivery" and "Order to Cash"

    Hi,
            This could be a basic question. But, can any one tell me the difference between 'Order to Delivery" and "Order to Cash" Process.
    Thanks
    Anitha

    hi
    Order to cash cycle in SD starts with Inquiry -> Quotation -> Order -> Delivery ->Picking-->Post Goods Issue -> Invoice -> Accounting Document generation
    For Inquiry
    Doc. Type: IN
    T.Code: VA11(create), VA12(change), VA13(display)
    Process: Quotation
    Doc. Type: QT
    T.Code: VA21(create), VA22(change), VA23(display)
    Process: Order
    T.Code: VA01(create), VA02(change), VA03(display)
    Doc. Type: OR
    For Delivery
    Doc. Type: LF
    T.Code: VL01N(create), VL02N(change), VL03(display)
    For Billing
    Doc. Type: F2
    T.Code: VF01(cre ate), VF02(change), VF03(display)
    For Accounting Document
    T.Code: FB03(display)
    where as ORDER TO DELIVERY
    Delivery Order is the term of core team normally used for Delivery. Ideally insome of the legacy, they do not create Sales Order & use the term Delivery Order for Delivery.
    InSAP, we mornally map it as Sales order --> Delivery --> Post Goods issue --> Billing.
    At times we have to give meaning to the term sprecified by core team / end user & arrive at SAP terminology.

  • Difference between ordered by and sorted by?

    hi,
    Can any1 tell me wats the actual difference between ordered by and sorted by???

    Generally speaking, when talking math, one talks about an "ordering" in some set of values. Usually one doesn't actually place them in order; the order is already there, implicit in the values. When talking computer science, one talks about "sorting" because the values may be in a sequence which violates the desired order, and you have to sort the sequence to match the order. "Sorting" isn't as relevant in math because there is no sense of the items being out of sequence when the order is established.
    So "order" describes the ideal (which mathematicians care about).
    "Sort" describes the practical, the activity needed to make the real match the ideal (which computer sciences care about).
    That's my intuitive feeling on it, anyway.

  • Difference between reference creations

    What is the difference between
    Object anObject;
    Object anObject = null;

    They are logically the same. But they are not the same.
    The folliwng program does the same number of declarations twice and prints
    Run time with no initalisation 579 ms
    Run time with initalisation to null 2265 msYou can argue this is next to no difference, but there is a difference.
        public static void main(String[] args) {
            long start = System.currentTimeMillis();
            final int size = 500000000;
            for (int i = 0; i < size; i++) {
                Object a;
                Object b;
                Object c;
                Object d;
                Object e;
                Object f;
                Object g;
                Object h;
                Object j;
                Object k;
            long end = System.currentTimeMillis();
            System.out.println("Run time with no initalisation " + (end - start) + " ms");
            long start2 = System.currentTimeMillis();
            for (int i = 0; i < size; i++) {
                Object a = null;
                Object b = null;
                Object c = null;
                Object d = null;
                Object e = null;
                Object f = null;
                Object g = null;
                Object h = null;
                Object j = null;
                Object k = null;
            long end2 = System.currentTimeMillis();
            System.out.println("Run time with initalisation to null " + (end2 - start2) + " ms");
        }

  • The are any difference between the late 2008 and early 2009 15' MacBook Pro

    Hello,
    This is my first post here so I salute you all. I would like to know if there is any difference between the 15 inch MacBook Pro produced at the end of 2008 and the one produced AFTER iLife 09 has been launched (at the beginning of 2009). I see that the declarations of conformity are a little bit different: http://images.apple.com/euro/compliance/pdf/M98EMC_IntE_EuroDoC.pdf vs http://images.apple.com/euro/compliance/pdf/M98AIntE_EuroDoC.pdf (see the Emissions and wireless radio equipment sections). I don't know if those declarations are relevant and if the fact that they complies with different standards and/or directives means that the hardware is different... What do you think?
    Just a little note: I am NOT talking about the late 2009 17' version. I'm referring only at the 15' versions produced before and after the launch of iLife09
    Message was edited by: vamist

    Hi, I think I know why Apple is able to offer 8gb ram support on the revised 2.66 MBP and not on the 2.53 or 2.4 MBP.
    Take a look at this:
    15'' 2.4-2,53 NVDA Chipset
    http://s1.guide-images.ifixit.com/igi/oEmmaxSOKDDvZfZh.large
    17'' NVDA Chipset
    http://s1.guide-images.ifixit.com/igi/SSLSgODWYbiIuTLL.large
    There are TWO different revisions. The first is B2 and the latter is B3.
    I think that the former does not support 8GB of RAM and the latter does. That explains why the 17'' has support and now the NEWs 15'' also have, Apple gave the 15'' not only a speed bump but also the newer revision of the chipset!

  • Difference between contract creation and project creation

    I am new to Oracle Projects. In Oracle Project Contracts I can see that we create a new contract. Also in Oracle Projects we can create a new Project.
    Can anyone please let me know what is the difference between creating a contract and creating a project in Oracle Projects.
    Can we create a project based on an already created contract?
    Regards

    Hi Dina,
    thanks for your reply. We are currently implementing Oracle Projects in our company where our main business is construction works.
    As you have said that a contract is a commercial agreement between the customer and the contractor. We get a Bill of Quantities(BOQ) along with the contract documents. In the BOQ all the different types of works for the project is defined along with the quantities which are known as BOQ Items. We have to quote our rates for the BOQ items. We generally perform an operation called Rate Analysis of these BOQ Items by assigning various quantities of resources that shall be required to execute each of the BOQ items. Thus we arrive at the cost of each BOQ items. Once the work gets executed, this BOQ happens to be the basis for invoicing or application to the client. So we create our budget based on the BOQ itself. We make our Business plan based on the items of this BOQ itself and also book the expenditure on these BOQ items.
    Although we create Project plan using Primavera, there is no one-to-one correspondence between activities of the project plan and the BOQ items. So we cannot really create our budget based on the project plan.
    So if we manage everything only on the basis of the BOQ items, we loose important project management related information like earned value management etc. And if we depent only on the Project plan we loose important cost related information.
    So we need to plan in such a way so that both these are fused together.
    Can you kindly advice me about how to proceed ahead with our implementationso that we can use Oracle Projects optimally for our business.
    Thanks & Regards

  • Difference between Order Header BSD and operation schedule SSD

    Hi,
    One of your Client is operating on SAP 4.7
    There are some cases where Order Header Basic Start Date and operation Schedule Date are no same.
    example:
    Present Order Basic Start Date 24.06.2011
    Present Order Basic Finish Date 01.07.2011
    Forward Schedled order.
    Operation 1
    Operation 2
    Work Center has sufficient capacity and is available to perform work 24hrs.
    Using planning board CM10 user dispatches operation 1 to 30.06.2011 and operation 2 to 01.07.2011.
    The problem is order basic start date is remaining same i.e. 24.06.2011 and not chaning to 30.06.2011.
    Can any one please help in this issue.

    yes for all order types and also i have observed that most of work order has basic start date as 24.06.2011 when all the operations of orders are scheduled in future dates (date other than 24.06.2011).
    The first time scheduling of work order operation is done on 24.06.2011 (CM10) and then after re-scheduling (through IW38) of operation changed the schedule start date but work ordre basic start date remained same i.e 24.06.2011.
    Dispite of first time scheduling and then re-scheduling basic start date remained 24.06.2011.
    Note: Same profile was selected in both CM10 and IW38 while accessing planning board.

  • Differences between 3.5 and earlier versions

    Hi Experts,
    What are the major differences between BW 3.5 and earlier versions like 3.1c and 3.0b.
    PLZ educate me on this,
    thanks in advance.
    regards,

    Hi Vamshi,
    pls Check these Links for information:
    http://help.sap.com/saphelp_nw04/helpdata/en/44/b21f98be886a45a4bb7e123e86e4c2/content.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/a6c3b990-0201-0010-14b8-b3cce168c1c5
    http://help.sap.com/saphelp_nw04/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    BW 3.1 Vs 3.5
    difference b/w BW 3.1 and BW 3.5
    http://help.sap.com/saphelp_nw04/helpdata/en/B2/E50138FEDE083DE10000009B38F8CF/frameset.htm
    New Features In BW 3.5:
    1. Information Broadcasting via Business Explorer (BEx) Broadcaster
    2. Universal Data Integration
    3. Embedded BI: Integration into SAP NetWeaver™
    4. BI Platform Enhancements
    5. Planning and Simulation (BW-BPS)
    also check by this navigation.
    RSA1-->Menu --> Help --> Release Notes --> Select Entire list --> Select BW and display.
    ***pls assign points if info is useful**
    Regards
    CSM Reddy

  • Difference between Types of reports

    HI GURUS.,
                   In SAP we have differenr reports ,can u please say the difference between standard analasys,flexible reports,early warning reports
    Thanks in advance
    Narayana
    Message was edited by:
            manam narayana
    Message was edited by:
            manam narayana
    Message was edited by:
            manam narayana

    Hi
    Standard analyse
    You can analyse various customer related information in this
    Flexible reporting
    Assume you want to analyse sales flow of the customer in all the years and compare it with the current year. Some complex scenario...
    Early warning report
    Assume that you want a report which indicates the list of customer whose sales transactions has been reduced by 10% in the current year compared to the last year
    This kind of reports gives you early indication of possible future trends which could be traced to a reason and possible action could be followed up on the customers
    Regards
    N Ganesh

  • Difference between STO(MM) andSTO (SD))

    Dear folks
    please  any one help me
    what is the difference between order type stock transfer order(MM) and stock transfer order(SD)
    what is the process please tell me like
    order ,, migo,,,like that
    i want to know the process
    Regards
    Murali

    stock transfer in MM deals with taking the material in.
    whereas, stock transfer in SD deals with sending the material out.
    E.G for MM . there is a warehouse, now material is coming in.
    1.Purchase order
    2.Create inbound delivery
    3.creater transfer order
    4.conform transfer order
    5.putaway
    6.goods in
    E.G for SD material is going out.
    1.create sales order
    2.create outbound delivery
    3.create transfer order
    4.confirm transfer order
    5.picking
    6.delivery

  • Hello there ;-) Is there a big difference between a macBook Pro retina 2,7 GHz,earl 2013 and a 2,6GHz of end 2013, espqcially with the capacity processor? thanks

    hello there ;-) Is there a big difference between a macBook Pro retina 2,7 GHz,earl 2013 and a 2,6GHz of end 2013, espacially with the capacity processor? thanks

    read here http://www.everymac.com/systems/apple/macbook_pro/macbook-pro-retina-display-faq /differences-between-macbook-pro-retina-display-early-2013-late-2013.html

Maybe you are looking for