Internal order types and number ranges

We have two SAP instances and want to load Internal order types and number ranges and Internal orders from 4.6 to 4.5 version.
I need to determine if there is an overlap of number ranges for the internal order types used in 4.6 and 4.5
Could you please help me how to approach? Manually verifying each range in both system is a tedious job and very confusing as the numbers are too big.

Hi,
I can suggest one thing which seems to be worth trying. Involve one technical guy in downloading the number ranges as well the orders of the numbers used from both the system and compare it. Then compile them and upload it again.
Trust this helps much!
Cheers!

Similar Messages

  • Could you check our source? (To determine the PR type and number range)

    Hello.
    We use SRM Server5.5 with Classic Scenario.
    We will use the BADI BBP_SC_TRANSFER_BE to determine the PR type and number range according to your recommend.
    We have two PR type in R/3.
    1) KGPR
    2) KTR1
    As you know that shopping cart has no type. So we add customer field to mapping to R/3 PR type and this field has two values.
    1)     PR01: mapping to KGPR
    2)     PR02: mapping to KTR1
    We will use the method GROUP_RQ to determine the PR type.
    If customer field is PR01, PR type is determined KGPR
    If customer field is PR002, PR type is determined KTR1.
    To determine the PR number range, we will use the method GET_NUMBER_OR_RANGE.
    If PR type is KGPR, Choose the No key 12
    If PR type is KTR1, Choose the No key 16.
    Configuration step:
    1.     Maintain the PR number range in SRM.
    No key: 12  (for KGPR) internal NR
    No range: 2520000000 – 2529000000
    No key: 16 (for KTR1) internal NR
    No range: 2560000000 – 2569000000
    2.     Maintain the PR number range in R/3
    No key: 12  (for KGPR) Ext NR
    No range: 2520000000 – 2529000000
    No key: 16 (for KTR1) Ext NR
    No range: 2560000000 – 2569000000
    3.     Assign the PR number range to PR type in R/3
    KGPR – 12 (EXT)
    KTR1 – 16 (EXT)
    4.     Maintain the attribute in SRM
    Document type in R/3
          Add KGPR and KTR1
    We developed this logic, but it’s not working.
    LOOP AT ct_proc_item INTO ls_proc_item “ Where is no date in ct_proc_item:
    We can not find out the reason.
    Could you check our source?
    METHOD if_ex_bbp_sc_transfer_be~group_rq.
      DATA:
           ls_proc_item           TYPE bbps_procurement,
           lv_number_int          TYPE bbp_item_no,
           ls_item                TYPE bbp_pds_transfer_item,
           lv_group_counter       TYPE numc5,
      CONSTANTS:
          lc_on(1)               VALUE 'X'.
      SORT ct_proc_item BY obj_to_gen.
      CLEAR: lv_group_counter.
    LOOP AT ct_proc_item INTO ls_proc_item  
    where obj_to_gen eq iv_object_to_generate.
    get item data which includes customer fields
        MOVE ls_proc_item-preq_item TO lv_number_int. " convert
        READ TABLE it_item INTO ls_item WITH KEY number_int = lv_number_int.
        IF sy-subrc = 0.
          IF ls_item-pr_type EQ 'PR01'.
            ls_proc_item-doc_type = 'KGRP'.
          ELSEIF ls_item-pr_type EQ 'PR02'.
            ls_proc_item-doc_type = 'KTR1'.
          ENDIF. " lv_cust_field
          lv_group_counter = lv_group_counter + 1.   " increase counter
          ls_proc_item-group_1 = lv_group_counter.
          MODIFY ct_proc_item FROM ls_proc_item
                 TRANSPORTING group_1.
        ENDIF.  " sy-subrc
      ENDLOOP.
      cv_method_active = lc_on.
    ENDMETHOD.
    method IF_EX_BBP_SC_TRANSFER_BE~GET_NUMBER_OR_RANGE.
      if is_item-pr_type = 'PR01'.
         CV_NUMBER_RANGE = '12'.
         CV_NUMBER = '2520000000'.
      elseif is_item-pr_type = 'PR02'.
         CV_NUMBER_RANGE = '16'.
         CV_NUMBER = '2560000000'.
      endif. " is_proc_item / is_item
    Thank you
    Best Regard
    SH

    Hi
    Please find some suitable sample code, which might help you out.
    method IF_EX_BBP_SC_TRANSFER_BE~GET_NUMBER_OR_RANGE .
    * IV_OBJECT_TO_GENERATE
    *   '1' Reservation
    *   '2' Purchase Requsition (BANF)
    *   '3' Purchase Order
    *   '4' Customer Object
    * 1. current item data are in structures
    *    - IS_ITEM shopping cart item data including Customer Fields
    *    - IS_PROC backend relevant item purchasing data
    * 2. accounting data in tables
    *    - IT_ACCOUNT all shopping cart account. data with Customer Fields
    *    - IT_PROC_ACCOUNT backend relevant accounting data for current item
    *  - key criteria between this tables are
    *    - it_proc_account-preq_item
    *                     -serial_no (numc 2)
    *    - guid from is_item
    *    - it_account-p_guid
    *                -accno(numc 4)
    * A) example to use current item data + item customer fields
    *  if is_proc_item-DOC_TYPE = 'ABCD' AND
    *     is_item-<field of CI_BBP_ITEM> = .
    * set own number range
    *  CV_NUMBER_RANGE = .
    ** set own number
    ** .. ==> if initial SAP Standard with no.range will be processed
    *  CV_NUMBER = .
    *  endif. " is_proc_item / is_item
    * B) example to use only proc_account no accounting customer fields
    *data:
    *     ls_proc_account   type bbp_bapipogna.
    *  loop at it_proc_account
    *            into ls_proc_account.
    *    if ls_proc_account-BUS_AREA = '9988'.
    ** set own number range
    *  CV_NUMBER_RANGE = .
    ** set own number
    ** .. ==> if initial SAP Standard with no.range will be processed
    *  CV_NUMBER = .
    *     endif. " ls_proc_account
    *  endloop.
    * C) example to use only accounting customer fields, no other accounting
    *data:
    *     ls_account        type bbp_pds_acc.
    *  loop at it_account
    *            into ls_account
    *            where p_guid = is_item-guid.
    *    if ls_account-<field of CI_BBP_ACC> = .
    ** set own number range
    *  CV_NUMBER_RANGE = .
    ** set own number
    ** .. ==> if initial SAP Standard with no.range will be processed
    *  CV_NUMBER = .
    *   endif. " ls_account
    *  endloop.
    * D) example to use proc_account + customer fields for accounting
    *data:
    *     lv_serial_no      type bbp_bapipogna-serial_no,  " sequence num 2
    *     lv_acc_no         type bbp_pds_acc-acc_no,       " sequence num 4
    *     ls_proc_account   type bbp_bapipogna,
    *     ls_account        type bbp_pds_acc.
    *  loop at it_proc_account
    *            into ls_proc_account.
    *    move ls_proc_account-serial_no to lv_acc_no.
    *    read table it_account
    *         into ls_account
    *         with key p_guid = is_item-guid
    *                  acc_no = lv_acc_no.
    *    if sy-subrc = 0.
    **     if ls_account-<field of CI_BBP_ACC> = .
    ** set own number range
    **  CV_NUMBER_RANGE = .
    ** set own number
    ** .. ==> if initial SAP Standard with no.range will be processed
    **  CV_NUMBER = .
    **      endif. " ls_account
    *    endif. " sy-subrc
    *  endloop.
    endmethod.
    method IF_EX_BBP_SC_TRANSFER_BE~GROUP_RQ .
    * 1. current item data are in structures
    *    - IT_ITEM all shopping cart item data including Customer Fields
    *    - IT_PROC_ITEM backend relevant item data of current log.system
    *    key criteria between this tables are:
    *    - IT_ITEM-NUMBER_INT (numc 10)
    *    - IT_PROC_ITEM       (numc  5)
    * 2. accounting data in tables
    *    - IT_ACCOUNT all shopping cart account. data incl. Customer Fields
    *    - IT_PROC_ACCOUNT backend relevant accounting data for current item
    *  - key criteria between this tables are
    *    - it_proc_account-preq_item (numc 5)
    *                     -serial_no (numc 2)
    *    - is_item-guid
    *             -number_int (numc 10)
    *    - it_account-p_guid
    *                -accno(numc 4)
    constants:
          lc_on(1)               VALUE 'X'.
    * A) example to use only proc_item with NO customer fields
    *         group requisitions by backend document type
    *data: lv_doc_type            TYPE esart,
    *      ls_proc_item           type BBPS_PROCUREMENT,
    *      lv_group_counter       type numc5.
    *    clear lv_group_counter.
    *    clear lv_doc_type.
    *    SORT ct_proc_item BY obj_to_gen doc_type.
    *    LOOP AT ct_proc_item
    *            into ls_proc_item
    *            WHERE obj_to_gen EQ iv_object_to_generate.
    ** new group criteria?
    *      if lv_doc_type ne ls_proc_item-doc_type.     " backend doc.type
    *        lv_group_counter = lv_group_counter + 1.   " increase counter
    *        lv_doc_type      = ls_proc_item-doc_type.       " save criteria
    *      endif.
    *      ls_proc_item-group_1 = lv_group_counter.
    *      modify ct_proc_item from ls_proc_item
    *             transporting group_1.
    *    ENDLOOP.
    * B) example to use item customer fields
    * data:
    *      ls_proc_item           type BBPS_PROCUREMENT,
    *      lv_cust_field          type <field of ci_bbp_item>.
    *      lv_number_int          type BBP_ITEM_NO,
    *      ls_item                type BBP_PDS_TRANSFER_ITEM.
    *    clear lv_group_counter.
    *    clear lv_cust_field .
    *    SORT ct_proc_item BY obj_to_gen.
    *    LOOP AT ct_proc_item
    *            into ls_proc_item
    *            WHERE obj_to_gen EQ iv_object_to_generate.
    ** get item data which includes customer fields
    *      move ls_proc_item-preq_item to lv_number_int. " convert
    *      read table it_item
    *           into ls_item
    *           with key number_int = lv_number_int.
    *      if sy-subrc = 0.
    **       new group criteria?
    *        if lv_cust_field ne 'XYZ'.
    *         lv_group_counter = lv_group_counter + 1.   " increase counter
    *         lv_cust_field = ls_item-<field of ci_bbp_item>."save criteria
    *        endif. " lv_cust_field
    *        ls_proc_item-group_1 = lv_group_counter.
    *        modify ct_proc_item from ls_proc_item
    *               transporting group_1.
    *      endif.  " sy-subrc
    *    ENDLOOP.
    * C) example to use accounting data with customer fields
    *            group requisitions by backend document type
    *data: lv_doc_type            TYPE esart,
    *      ls_proc_item           type BBPS_PROCUREMENT,
    *      lt_account             type BBPT_PD_ACC,
    *      ls_account             type bbp_pds_acc,
    *      ls_item                type BBP_PDS_TRANSFER_ITEM,
    *      lv_number_int          type BBP_ITEM_NO,
    *      lv_account_flag        type c,
    *      lv_group_counter       type numc5.
    *    clear lv_group_counter.
    *    clear lv_doc_type.
    *    SORT ct_proc_item BY obj_to_gen doc_type.
    *    lt_account[] = it_account[].
    *    SORT lt_account BY p_guid acc_no.
    *    LOOP AT ct_proc_item
    *            into ls_proc_item
    *            WHERE obj_to_gen EQ iv_object_to_generate.
    ** get accounting customer fields for this item
    *    clear lv_account_flag.
    ** ..first get item guid
    *    move ls_proc_item-preq_item to lv_number_int.
    *    read table it_item
    *         into ls_item
    *         with key number_int = lv_number_int.
    *    if sy-subrc = 0.
    *      loop at lt_account
    *           into ls_account
    *           where p_guid = ls_item-guid.
    *        if ls_account-<field of CI_BBP_ACC> = .
    *           lv_account_flag = lc_on.
    *        endif.
    *      endloop.
    *    endif. " sy-subrc it_item
    ** new group criteria?
    *      if lv_doc_type ne ls_proc_item-doc_type OR     " backend doc.type
    *         lv_account_flag = lc_on.                    " accounting
    *        lv_group_counter = lv_group_counter + 1.   " increase counter
    *        lv_doc_type      = ls_proc_item-doc_type.       " save criteria
    *      endif.
    *      ls_proc_item-group_1 = lv_group_counter.
    *      modify ct_proc_item from ls_proc_item
    *             transporting group_1.
    *    ENDLOOP.
    * !!!! set flag that BADI was processed
    * .. ==> no SAP Standard grouping will be processed
        cv_method_active = lc_on.
    endmethod.
    Hope this will help.
    Please reward suitable points, incase it suits your requirements.
    Regards
    - Atul

  • BBP_BS_GROUP_BE for new document type and number range

    Hi gurus,
    I am working on Classic scenario in SRM and currently have used the above BADI to use a different document type and number range when creating the PO in the backend system. It all works fine. The only thing is I noticed that the BE_DOC_TYPE field in the shopping cart is still reflected as 'EC' even though the PO created in ECC is for example EC1. My question: Is this standard SRM? If so, is it common to leave this field as it is or is it advisable for us to change the document type to EC1 as well? Also, is there any implication in standard SRM reporting and downstream processes that you are aware of?
    Appreciate any advice on the above.
    Cheers!
    Sf

    We have ended up having to populate the document type on a custom field or alternatively replace the existing one.

  • One order type different number range for different company code

    Hi
    I have created one order type. Same order type I extended in another company code (plant).
    I required different number range for another company code.
    Can any give detail solution.
    Regards
    ARK

    Hi,
    In CO82, define groups of order types. Define number intervals and assign number intervals to groups. Organize order types that you want to assign same number interval under groups.
    Regards.

  • New internal order type--need help

    Dear all:
    i have a case need help.
    now i want to create a new internal order type ,and assign a new number range and a default settlement rule to it .
    the settlement rule is that the actual costs of this  internal order type need to be
    sent to a cost element .
    what should i do step by step?
    thanks!
    best regards!

    Hi,
    2. Order Master Data
    2.1 Define Order types (KOT2_OPA)
    IMG &#61664;Controlling &#61664; Internal Orders &#61664;Order Master Data &#61664; Define Order Types
    An Internal order is created under an Order type. An order type is used for storing various control parameters and various defaults while creating an internal order. It is used for classifying various types of internal orders according to usage for e.g. Real orders for trade fairs, real orders for Capital investment measure, Statistical orders for motor vehicle expenses.
    The order type is client-specific, which means that every order type can be used in all controlling areas. A number range is assigned to the internal order type.
    Click on “New Entries”
    Take a drop in the field Order category and select 01
    Enter
    Update the following
    Give Order Type :- Z810
    Description :- Traders First Real order type
    Object Class :- OCOST overhead
    Reference Order :- Collective order without automatic goods movement
    Residence time 1 :- 12 months
    Residence time 2 :- 1 month
    Check “Commit Management and Check Integrated Planning
    Activate CO Partner Updating -You activate this so that allocations between orders and other CO objects (cost centers, projects, etc.), the partner information is retained and whether for each order a totals record should be written.
    Save
    Click on “Field Selection”
    Here you can hide the various fields or make it as required entry or only display or available for input. Thus while creating internal order only those fields are displayed and available for input.
    Click Save
    2.2 Maintain Number Ranges for Orders (KONK)
    IMG &#61664;Controlling &#61664; Internal Orders &#61664; Order Master Data &#61664;Maintain Number Ranges for Orders
    Number Range needs to be assigned to the internal order type. Number range can be internal or external. In Internal numbering system automatically assigns a number from the given number range. In external numbering the user has to manually assign the number from the given number range.
    We will configure internal number range for our internal order type – Trade Fair
    Click on Group &#61664;Maintain (From the menu bar)
    Click on Group &#61664; Insert (From the menu bar)
    Update the following
    From Number: - 910000000000
    To Number: - 919999999999
    Click in “plus icon” at the left bottom of the screen
    Click Save
    You will find internal order type Z810 in not assigned
    You need to assign the order type to the group we created above. Proceed as follows:-
    Position the cursor on: - Z810 Trade Fair real order type 
    Click on “Arrow”   Z810 Trade Fair real order type note it turns blue                                              
    Select Check mark Z810 A ltd India fair real order
    Click “Element Group”
    The internal order type Z910 moves under the group which can be seen as follows:-
    Z810: A Ltd India Trade fair real order / Z810 Trader Fair real order type.
    Click Save
    Select: - Z810: A Ltd India Trade fair real order / Z810 Trader Fair real order type.
    Click on “Pencil” icon.
    Click Back arrow.
    2.3 Define Model Orders
    IMG &#61664;Controlling &#61664;Internal Orders &#61664;Order Master Data &#61664;Screen Layout
    &#61664;Define Model Orders
    Model orders are not orders in the commercial sense, but serve merely as references for creating "normal" orders. Model orders contain default values for the orders in an order type. The Model order is assigned as the reference order in the order type.
    When you create a new order, all the fields active in the relevant order type are copied from the model order to the new order.
    Example
    You want to settle all your marketing orders to the same sales cost center. Stipulate the cost center as the default value in the model order for marketing orders.
    When you create a new marketing order, the system defaults this cost center. If you want to settle the order to a different cost center, you can overwrite the default cost center in the orders.
    We will create a model order with some defaults and assign it to the Trade fair internal order type
    Click “Create CO Model Order”
    Press F4 and select ($$) 03 model order
    Click on the master data and update the following
    Order: - $$$ Z81000001
    Description text: - A Limited Trade affair
    Click Save
    Assign this model order to the order type Z810
    Update the reference order with the model order number $$$Z81000001 in the reference order field
    Click on save.
    3 Planning
    3.1 Maintain User-Defined Planner Profiles
    IMG&#61664;Controlling&#61664;Internal Orders&#61664;Planning&#61664;Manual Planning&#61664;Maintain User-Defined Planner Profiles
    Check the User defined planner profile ZOCM91 created by us contains the layouts for internal orders.
    Double click on General controlling
    Planning area: Cost element/activity inputs.
    Cost Center: Activities/Prices
    CCtr Statistical key figures
    Orders: Cost Element/Activity inputs
    Ord: Statistical key figures
    Select :- Orders: Cost element/activity inputs
    Double Click on Layouts for control
    3.2 Maintain Planner Profile for Overall Planning (OKOS)
    IMG &#61664; Controlling&#61664;Internal Orders&#61664;Planning&#61664;Manual Planning&#61664;Maintain Planner Profile for Overall Planning
    Here you can specify the time frame for which values are to be planned for Internal order. Further you can also default the number of decimal places and the display factor. Default cost element group while planning.
    Double click on “Define planning profile for overall planning”
    Click on “New Entries”
    Select “05 Planned Total”
    Profile: 810000 General Plan Profile – A Ltd
    Click Save
    Select back arrow
    Double click maintain planning profile for order type
    Give: - Z810 Trader Fairs Real order type
    Give Plan profile: - 910000
    Click Save
    4 Settlement
    4.1 Maintain Allocation structure
    IMG&#61664; Controlling&#61664;Internal Orders&#61664;Actual Postings&#61664;Settlement&#61664; Maintain Allocation Structures
    An Allocation structure comprises one or several settlement assignments. An assignment shows which costs (origin: cost element groups) are to be settled to which receiver type (e.g. cost center, order and so on)
    You have 2 options:- You can settle to a settlement cost element or settle by cost element i.e. settle using the original cost element.
    We will use settle by cost element.
    Click on “New Entries”
    Allocation stru :- Z8
    A Ltd : Internal order settlement structure
    Click Save
    Select Z8 Internal order settlement structure
    Double click on Assignments
    Click on “New Entries”
    Assignment :- 10 Settlement Primary cost Element
    Click Save
    Select 10 Settlement Primary cost Element
    Double Click on Source
    Give From Cost Element To Cost Element
    Save
    Click back arrow
    Note:-The color has become green
    Select: Settlement primary cost element
    Double click on Settlement cost
    Click “New Entries”
    Select CTR Cost Center
    By Cost Element  Check
    Save
    4.2 Maintain Settlement Profile
    IMG &#61664;&#61472;Controlling &#61664;Internal Orders &#61664;Actual Postings &#61664;Settlement&#61664;Maintain Settlement Profile
    Here we define a range of control parameters for settlement.
    Double Click on “Maintain Settlement Profiles”
    Click on “New Entries”
    Select “Settlement not allowed”
    Assign the allocation structure Z9 created earlier in the settlement profile.
    Click on “Save”.
    Select Back Arrow
    Double Click on “Enter Settlement Profile in order types”
    Give Settlement Profile “ Z9100”
    Click on “Save”.
    4.3 Maintain Number Ranges for Settlement Documents
    IMG &#61664;Controlling &#61664;Internal Orders &#61664;Actual Postings &#61664;Settlement&#61664;Maintain Number Ranges for Settlement Documents
    You should define separate number range intervals for settlement documents for each controlling area.
    Click Group &#61664; Maintain
    Click Group&#61664; Insert
    Update the following:-
    Give “From Number” 1000000000- To Number 1999999999
    Click on “+” at the bottom left side.
    Click 8100
    Click on “Arrow” icon.
    Select Settlement documents for “A limited” Check box
    Click “Element group button”
    Click “SAVE”
    Assign Points
    Zia

  • Document Types and  No range

    Hi Gurus, i am new to SAP,
    please guide me in
    Configuring  document types and number ranges for PR, RFQ, PO, Quantity Contract, Value Contract and Scheduling Agreements with release.
    Thank is Advance
    Kapil

    You have to maintain No Ranges for PR at Materials Management->Purchasing->
    Purchase Requisition->Define Number Ranges
    Define number range interval
    Choose type of number assignment (internal or external)
    You maintain the associated number ranges in the step Define Number Ranges under "Purchasing".
    SAP recommends that you accept the settings defined in the standard system. In this case, no action is required on your part.
    <b>Document type</b>
    Purchase Requisition->Define Document Types
    Steps
    1)Create new document types
    2)Define the item interval
    3)Allowed Item category.
    4)Define allowed follow-on document types
    5)Assign document types to a number range group
    Similarly for all the processes you can maintain Number ranges and Document Types at IMG menu path at Purchasing.
    Reward if helpful
    Regards
    Sanjay l

  • Block creation of new Internal Order Type

    Hello,
       We have several internal Orders types and we want to block the creation of new IO. Is there any way through customizing to do that?
       I have considering to do it using an step in a validation but I think can be a better way.
    Thanks,

    Hi,
    Ravi is right, you can restrict through authorizations. To do that, you have to modify the role assigned to users that allow them to create internal orders of any type. Use the transaction SUIM, search the role by user or by transaction (KO01). Then, in the role, there is an entry that corresponds to Controlling (CO) -
    > CO-OPA: General authorization object for internal orders (K_ORDER) -
    >
    Order Type  (AUFART)   : Select for example RA01
    Internal order authorization  (AUTHPHASE) :
    Actions for CO-OM Authorizatio (CO_ACTION) :  0000  Master Data.
    Cost Element  (KSTAR) :    
    CO-OM Responsibility Area  (RESPAREA) : 
    Usually a BASIS do the modification of the role.
    Regards,
    David Z.

  • Profit center and company code field in Internal order type (KOT2)

    Dear Experts,
    I want to bydefault profit center and company code in ordertype customization.
    Profit center and company code field in Internal order type (KOT2)
    regards
    RR

    Hi
    1. Create a Model Order in KOM1
    Enter the Comp Code and PC and other fields you want and save it
    2. Enter this Model order in your Internal Order Type in KOT2... Transport this change to production client
    3. Next time when you create an IO, PC and CC will be populated by default
    br, Ajay M

  • How an AUC asset class can be assigned to internal order type

    Hi
    We want to create new AUC asset class for our requirement. For that purpose we want to use existing internal order type of my new AUC asset class also. When we create internal order in KO01 and create AUC in same step new asset class should be picked up. Please explain me how we assign internal ordet type to AUC.
    Regards
    Padma

    Hi Padma
    Do the following configuration steps for AuC scenario.
    1. Asset under Construction
    1.1 Define Screen Layout for Asset Master Data
    IMG Investment Management Internal Orders as Investment Measures
    Master Data Assets under Construction Define Screen Layout for
    Asset Master Data
    1.2 Define Asset Classes
    IMG Investment Management Internal Orders as Investment Measures
    Master Data Assets under Construction Define Asset Classes
    2. Asset under Construction
    2.1 Define Model Orders
    IMG Investment Management Internal Orders as Investment Measures
    Master Data Orders Define Model Orders
    2.2 Define Order types (KOT2_OPA)
    IMG Investment Management Internal Orders as Investment Measures
    Master Data Orders Define Order Types
    2.3 Define Investment Profile and Assign
    IMG Investment Management Internal Orders as Investment Measures
    Master Data Define Investment Profile
    3 Settlements
    3.1 Maintain Allocation structure
    IMG Investment Management Internal Orders as Investment Measures
    SettlementMaintain Allocation Structures
    1.2 Maintain Settlement Profile
    IMG Investment Management Internal Orders as Investment Measures
    SettlementMaintain Settlement Profile
    3.3 Maintain Number Ranges for Settlement Documents
    IMG Controlling Internal Orders Actual Postings Settlement
    If you want budgetary control also do the following steps:
    3 Planning and Budgeting
    3.1 Maintain Planning Profiles
    IMG Investment Management Internal Orders as Investment Measures
    Planning and Budgeting Maintain Planning Profiles
    3.2 Maintain Budget Profile
    IMG Investment Management Internal Orders as Investment Measures
    Planning and Budgeting Maintain Budget Profile
    3.3 Define Tolerance Limits for Availability Control
    IMG Investment Management Internal Orders as Investment Measures
    Planning and Budgeting Define Tolerance Limits for Availability Control
    Regards
    Kiran

  • How to change the internal order type when it has been created?

    There is an internal order, when it being created, the user chose the incorrect order type and save it. but the internal order number is useful. so we just want to change the order type or delete the order to release the number.  so can you give me some solutions to solve it. I can not find the way neither change the order type nor delete it.  thanks very much.

    You are unable to change the internal order type once an internal order has been created, however you can delete the IO if there haven't been any postings made.
    In change mode (tcode KO02), go into the internal order.  Go into the following menu:  Edit > Deletion Flag > Set.    Before you exit the IO, save the master record.
    Depending upon your archiving settings, you should then be able to select the menu path:  Edit > Set Deletion Indicator.
    If the IO isn't deleted, you can "clobber" it by going into the IMG and deleting the IO using the function "Delete Test Data".  This should only be done by a technical person to ensure that a mass-delete doesn't occur.
    Please note that if the IO was an internally assigned number, you might just want to block it and re-use it later.
    Hope this helps.
    Kylie

  • Steps to create Internal Order with AUC Number

    Dear All,
              We need to create internal order with AUC number.Kindly provide us the steps to do the configurations. Kindly guide the steps to be followed for creating internal orders with AUC number and way to do the settlement.

    Dear Kishore,
    I am doing the following steps in creating internal orders:
      1) Using the tcode KO01, choosing the order type as GEN i am creating an internal order. At the time of creating an internal order i need to give AUN number. Hence i am going to Extras--> Asset Under Construction by giving the investment profile. When i enter it nothing is happening. I am unable to create AUC no manually.
    Since i am a beginner, plz guide me to create AUC no while creating internal order.

  • Internal order Type creation

    Hi Guru,
    My client want to create new internal order type. so My doubt is new order type need to create directly in production server or not. Because development server orders type and production server order type there is some miss match is there.
    Kindly adviceu2026..
    Reg,
    Bharath

    Hi,
    Certainly, not. It's a customization issue and should be initiated from DEV. When you create a change request (automatically) the system will pick only modifications (your new order type), so there should be no problem with inconsistencies.
    Regards,
    Eli

  • There is a mismatch between order type and GL accountu201D.

    Hello
    Can any one help me to know why I am getting this error message.
    Here  I am giving the steps carried out.
    Step1. Using transaction code: FB60 I have posted a vendor invoice to a Machinery account GL account against a internal order.
    Step2. A down payment using transaction code FBA7. using a special indicator M to a bank account.
    Step3. When I am trying to clear the open item  (by selecting above both documents) for the vendor using transaction F-44 system is giving an error message u201CThere is a mismatch between order type and GL accountu201D. System is prompting to correct the down payment entry, where I dint use any Cost centre, internal order.
    Checked the Internal order profile, AUC settlement profile etc and no able to find an error message.
    Can any one explain me why this error is coming and what need to be check in order to rectify it.
    Regards
    RS.

    Hi It looks that the field status of the Order Type and GL Account field status is being mistmatching with each other. You can check the field status group given on GL Account and the fields status in Order Type.

  • Internal Order types deletion

    Hi,
    Is it possible to delete the internal order types once created in development system.
    if yes what are the implications?
    regards,
    Satya

    Hi,
    Is the Development and Testing client in the same server... I mean if you have not released the transport request you can delete the desired order type and save in the same transport request for transporting to production.
    If you have already released even then you can delete the order type and store in the change request and transport it to production. you will not have the deleted order type in production.
    As you were mentioning that you have already posted some entries in your IO.... set the deletion flag for the internal orders which wear created using this order type in change mode or and go to T.Code: OKO5 or use this programme in T.Code: SE38 RKODEL01 for deleting the Internal orders... after which you can delete your order type.
    Regards

  • How to identify which Internal order type is relevant for Budget manager

    Hi,
        How to identify which Internal order type is relevant for Budgeting i.e Budget Manager.
    regards,
    Rajesh

    controlling-internal orders-budegeting and availability control -define tolerance limits for availabilty control
       in which it is defined whether mail be sent to budget manager against the budget profile(budget profile is assigned to order type).
    controlling-internal orders-budegeting and availability control -define tolerance limits for availabilty control-maintain budget manager
    here budget manager is assigned to  order type
    assign me points if it is useful

Maybe you are looking for