Internal order for DC

Hi,
We want to create an internal order for a project we are going to start in one of the Distribution centers. Since the DC is not associated with a plant, can we create an internal order exclusively for the DC? I created a new order type and in the field selection I hide Plant and set the location field required. However, when I was creating a new Internal order it says location/plant. If internal order can be created only for plant then how can we track the activities of the work done in a DC? Please share your ideas.
Thanks

Hi
The Location field used by you seems to be related to a Location in a Plant and hence the dependency of the Plant.
You can hide this Location field and  use some other Text field for Keying in values pertaining to Location ( As per your requirement).
Harsh

Similar Messages

  • Down payment against the Internal Order - for Capital Expenditure

    Dear friends
    I am getting an error while making down payment against the purchase order.
    The order of my entries or steps are as follows:
    Created one internal order for Capital WIP with budget and availability control activation.
    Created one purchase order against a vendor with reference to the above Internal Order.
    When I am making the down payment to the vendor through tcode:F-48, the system throwing an error
    "Define Cost Elements for Down Payments".
    Can any one please explain why this error is coming. When I checked in Internal orders, there is a TCode: OKEP for Define Default Cost Elements for Down Payments.
    System is asking for cost element, but where as what ever the down payment we are making is nothing but advance which is current asset. Why system is asking for cost element?
    Can any one give me the guidance how to handle the issue.
    Thanks in Advance
    Kiran Kumar A

    The reason is when you want the down payment for AUC to be capitalised, then you would need to create cost element for Downpayments.
    Normally as per design of SAP, down payment being a Balance Sheet Account (Current Asset as you rightly mentioned) doesnot need / accept an Cost object, as a special case since down payments for AUC needs to be capitalised and hence need to be carried to Controlling (Internal Order) by creating Cost Element for Downpayments.
    Go ahead and create the cost element. That would resolve your issue.

  • Using internal order for a gl in FBCJ Screen

    Hi All,
    I would ike to use internal order for GLs/Vendor accounts like employee vendors or MM vendors in the Cash Journal i.e. FBCJ Screen.Hos should I do it.
    Simillarly I would like to give the work order /po reference for such advances in the FBCJ Screen.Is it possible to do it?
    Thanks in advance for your replies.
    Regards,
    Manoj mehta

    Hi Manoj,
    It is possible to use Internal Order for GLs/Vendor accounts like employee vendors or MM vendors in the Cash Journal i.e. FBCJ Screen. The internal order field maybe invisble on the screen.Follow the following steps:
    1. Click on the Configuration tab - Blue, Yellow, White Striped Square on the right top corner of FBCJ Screen.
    2. It will open the Table Setting Tab, Click on Administrator.
    3. It will open Edit System Settings, Check whether the in the cloumn, order is having tick in the Invisible Column. If it is ticked remove the tick & click on Activate.
    4. Close the Edit System Settings  & Save the Table Settings.
    Thank You.

  • Default internal order for each vendor

    Hi
    I am creating employee as a vendor in FK01. Each vendor is created as internal order for doing employeewise budget check. So when i book any expenses for vendor, i want that internal order should automatically flow on the basis of vendor.
    So is there any way from where i can default internal order on the basis of vendor.
    Edited by: Deepak Agrawal on Jun 9, 2011 5:05 PM

    Hi
    The only way to do the same is through Substitution rule by using an user exit. You need to create a Z table and maintain the mapping of vendor to IO. There after in GGB1, write a substitution rule for the node, complete document
    Check if Vendor Account =X
    Substitute using user exit
    In the user exit call up the z table.
    Regards
    Sanil Bhandari

  • Internal order for AUC with cost center - 'Please Select proper plant code'

    Hi All,
    User is getting error 'Please Select proper plant code', while inserting 'cost center' in field 'Responsible CCtr' for new Internal order which is for AUC.
    In Devlopment server also when we try to create asset through internal order we get same error.
    For your information this is new Plant, profit center and cost center for which we are trying to create internal order for AUC.
    If we try to post without Cost centre entry is saved. But we want to add cost center.
    Please help to resolve.

    Hi,
    If it is a custom message then please check whether any Validation or USer exit is maintained for the IO master data. If yes, then update the cost centre accordingly.
    Regards
    Sreekanth

  • Internal Order for prepaid events

    While posting internal order for prepaid events, the system is forcing to enter Investment Profile. That should be the case if it is an investment measure ut this internal order is for recording short term events that get prepaid. How to make this  field "Investment Profile" under Investment tab optional from required.

    Is it at the time of creation of Internal order master data or at the time of posting entries to the Internal Order?
    Can you explain in detail?

  • Specific Internal Orders for general ledger code (expense)

    Hi
    at the time of data entry,  users enters ill logical internal orders , can we restrict them or provide them any list or object so that they can select specific internal orders for that general ledger.
    it will force them to use that internal orders only.
    is there any standard provision to control this situation ???
    regds
    sanju

    When we got the same requirement, it was implemented via checking a specific internal table in a CO validation rule. (OKC7)
    Regards,
    Raymond

  • Internal order for claims

    Hi
    Can anybody explain like what can be pupose of creating an "internal order for claim" for projects.(The settlement rule is for WBS element.
    Help wud be appreciated.

    AUSP table holds the value and CABN table holds the field.

  • Production Order and Internal Order for each item of the sales order

    Hi
       I am developing Make To Order Report where I have to display the MTO Line Items and non MTO Line Items. For non MTO Line Items I have to display Internal order with Planned and Actual Costs and also Production Order with Planned and Actual Costs. Could anybody tell how to get the Internal order no and production order with Planned and Actual costs for each line item for a sales order.
    Thanks
    Naga

    Hi,
    You can get the Production orders, Planned orders, Internal orders generated for Sales order item from AFPO table (use fields KDAUF-Sales order number & KDPOS-Sales order item). Then to identify the order type use order category (AUTYP) from table AUFK.
    Once you have the Production/internal order, you can ge the cost from COSS and COSP table. Use the object number from AUFK to get the cost entries from COSS & COSP.
    You can use the following sample code as reference.
    Hope this is helps.. (Don't forget to mark it... )
    Form GET_COSTS                                                       *
    Get the material cost, labour hours and the labour cost for the      *
    sales order material.                                                *
    There are no interface parameters to be passed to this subroutine.   *
    FORM GET_COSTS.
      DATA V_OBJNR LIKE AUFK-OBJNR.
    DATA v_menge LIKE vbap-kwmeng.
      SELECT SINGLE OBJNR
        INTO V_OBJNR
        FROM AUFK
       WHERE AUFNR EQ AFPO-AUFNR.
      SELECT * FROM COSS
       WHERE OBJNR EQ V_OBJNR
         AND WRTTP IN ('01', '04'). " p_wrttp. "Labour Cost ( Plan, Actual)
        PERFORM GET_VALUES_FROM_COSS.
      ENDSELECT.
      SELECT * FROM COSP
       WHERE OBJNR EQ V_OBJNR
         AND WRTTP IN ('01', '04')         " p_wrttp
         AND KSTAR NE '0000510033'. " EQ p_kstar2.      "Material Cost
        PERFORM GET_VALUE_FROM_COSP.
      ENDSELECT.
    Get the unit cost of the production order by dividing the production
    cost by the order quantity. The result will be multiplied by the
    GL posting qunatity (Delivery quantity) to get the production cost
    for the quantity being deluivered.
      IF NOT AFPO-PSMNG IS INITIAL.
        OUT_REC-LABOUR_HOURS_ACT = OUT_REC-LABOUR_HOURS_ACT / AFPO-PSMNG.
        OUT_REC-ADDNL_LABOUR_HOURS_ACT =
                          OUT_REC-ADDNL_LABOUR_HOURS_ACT / AFPO-PSMNG.
        OUT_REC-LABOUR_HOURS_PLN = OUT_REC-LABOUR_HOURS_PLN / AFPO-PSMNG.
        OUT_REC-ADDNL_LABOUR_HOURS_PLN =
                         OUT_REC-ADDNL_LABOUR_HOURS_PLN / AFPO-PSMNG.
        OUT_REC-LABOUR_COST_ACT = OUT_REC-LABOUR_COST_ACT / AFPO-PSMNG.
        OUT_REC-ADDNL_LABOUR_COST_ACT =
                         OUT_REC-ADDNL_LABOUR_COST_ACT / AFPO-PSMNG.
        OUT_REC-LABOUR_COST_PLN = OUT_REC-LABOUR_COST_PLN / AFPO-PSMNG.
        OUT_REC-ADDNL_LABOUR_COST_PLN =
                         OUT_REC-ADDNL_LABOUR_COST_PLN / AFPO-PSMNG.
        OUT_REC-MATERIAL_COST_ACT = OUT_REC-MATERIAL_COST_ACT / AFPO-PSMNG.
        OUT_REC-ADDNL_MATERIAL_COST_ACT =
                         OUT_REC-ADDNL_MATERIAL_COST_ACT / AFPO-PSMNG.
        OUT_REC-MATERIAL_COST_PLN = OUT_REC-MATERIAL_COST_PLN / AFPO-PSMNG.
        OUT_REC-ADDNL_MATERIAL_COST_PLN =
                         OUT_REC-ADDNL_MATERIAL_COST_PLN / AFPO-PSMNG.
      ENDIF.
    Multiply the calculated Unit Production costs with the GL quantity to
    get the actual production cost of the quantity delivered.
    Calculation for Labour Hours
      OUT_REC-LABOUR_HOURS_ACT = OUT_REC-LABOUR_HOURS_ACT *
                                 OUT_REC-QUANTITY.
      OUT_REC-ADDNL_LABOUR_HOURS_ACT = OUT_REC-ADDNL_LABOUR_HOURS_ACT *
                                 OUT_REC-QUANTITY.
      OUT_REC-LABOUR_HOURS_PLN = OUT_REC-LABOUR_HOURS_PLN *
                                 OUT_REC-QUANTITY.
      OUT_REC-ADDNL_LABOUR_HOURS_PLN = OUT_REC-ADDNL_LABOUR_HOURS_PLN *
                                 OUT_REC-QUANTITY.
    Calculation for Material Cost
      OUT_REC-MATERIAL_COST_ACT = OUT_REC-MATERIAL_COST_ACT *
                                  OUT_REC-QUANTITY.
      OUT_REC-ADDNL_MATERIAL_COST_ACT =
          OUT_REC-ADDNL_MATERIAL_COST_ACT * OUT_REC-QUANTITY.
      OUT_REC-MATERIAL_COST_PLN = OUT_REC-MATERIAL_COST_PLN *
                                  OUT_REC-QUANTITY.
      OUT_REC-ADDNL_MATERIAL_COST_PLN =
          OUT_REC-ADDNL_MATERIAL_COST_PLN * OUT_REC-QUANTITY.
    Calculation for Labour cost
      OUT_REC-LABOUR_COST_ACT   = OUT_REC-LABOUR_COST_ACT *
                                   OUT_REC-QUANTITY.
      OUT_REC-ADDNL_LABOUR_COST_ACT = OUT_REC-ADDNL_LABOUR_COST_ACT *
                                  OUT_REC-QUANTITY.
      OUT_REC-LABOUR_COST_PLN   = OUT_REC-LABOUR_COST_PLN *
                                  OUT_REC-QUANTITY.
      OUT_REC-ADDNL_LABOUR_COST_PLN = OUT_REC-ADDNL_LABOUR_COST_PLN *
                                  OUT_REC-QUANTITY.
    Get the planned material cost from the total of the planned cost of
    the component materials in the production order confirmations.
      SELECT BWART MENGE MATNR SHKZG FROM AUFM
        INTO (AUFM-BWART, AUFM-MENGE, AUFM-MATNR, AUFM-SHKZG)
       WHERE AUFNR EQ AFPO-AUFNR.
        CHECK AUFM-BWART NE '101'.
        READ TABLE I_MBEW WITH KEY MATNR = AUFM-MATNR
                                   BWKEY = AFPO-DWERK.
        IF SY-SUBRC NE 0.
          SELECT MATNR BWKEY ZPLPR LPLPR PEINH
            FROM MBEW
            INTO I_MBEW
           WHERE MATNR EQ AUFM-MATNR
             AND BWKEY EQ AFPO-DWERK.
            APPEND I_MBEW.
          ENDSELECT.
        ENDIF.
        IF SY-SUBRC EQ 0.
          IF I_MBEW-ZPLPR NE 0.
            IF AUFM-SHKZG EQ 'H'.
              OUT_REC-PLANNED_MATERIAL_COST =
              OUT_REC-PLANNED_MATERIAL_COST +
                           ( I_MBEW-ZPLPR * AUFM-MENGE / I_MBEW-PEINH ).
            ELSE.
              OUT_REC-PLANNED_MATERIAL_COST =
              OUT_REC-PLANNED_MATERIAL_COST -
                           ( I_MBEW-ZPLPR * AUFM-MENGE / I_MBEW-PEINH ).
            ENDIF.
          ELSEIF I_MBEW-LPLPR NE 0.
            IF AUFM-SHKZG EQ 'H'.
              OUT_REC-CURRENT_MATERIAL_COST =
              OUT_REC-CURRENT_MATERIAL_COST +
                           ( I_MBEW-LPLPR * AUFM-MENGE / I_MBEW-PEINH ).
            ELSE.
              OUT_REC-CURRENT_MATERIAL_COST =
              OUT_REC-CURRENT_MATERIAL_COST -
                           ( I_MBEW-LPLPR * AUFM-MENGE / I_MBEW-PEINH ).
            ENDIF.
          ENDIF.
        ENDIF.
      ENDSELECT.
    Get the Future material cost per Unit by deviding the calculated
    Future material cost above with the goods reciept quantity to, then
    multiply the unit cost with the GL quantity to get the Future material
    Cost for the Quantity delivered. (Quantity in the entery from GLPCA
    Table).
      IF NOT AFPO-WEMNG IS INITIAL.
        OUT_REC-PLANNED_MATERIAL_COST =
           OUT_REC-PLANNED_MATERIAL_COST / AFPO-WEMNG * OUT_REC-QUANTITY.
        OUT_REC-CURRENT_MATERIAL_COST =
           OUT_REC-CURRENT_MATERIAL_COST / AFPO-WEMNG * OUT_REC-QUANTITY.
      ENDIF.
    ENDFORM.                               " GET_COSTS
    Form GET_VALUE_FROM_COSP                                             *
    Get the Material cost from COSP table.                               *
    There are no interface parameters to be passed to this subroutine.   *
    FORM GET_VALUE_FROM_COSP.
      FIELD-SYMBOLS: <FS> TYPE ANY.
      DATA: V_COMPONENT TYPE I.
    Cummulate the posting values of all the 16 period buckets as to get
    total production order cost. This is to handle the aprtial posting of
    prodction order values in diffrent periods.
      V_COMPONENT = 15.
      DO 16 TIMES.
        ADD 1 TO V_COMPONENT.
        ASSIGN COMPONENT V_COMPONENT OF STRUCTURE COSP TO <FS>.
        IF COSP-WRTTP EQ '04' AND COSP-KSTAR EQ P_KSTAR2.
          ADD <FS> TO OUT_REC-MATERIAL_COST_ACT.
        ELSEIF COSP-WRTTP EQ '04'.
          ADD <FS> TO OUT_REC-ADDNL_MATERIAL_COST_ACT.
        ELSEIF COSP-WRTTP EQ '01' AND COSP-KSTAR EQ P_KSTAR2.
          ADD <FS> TO OUT_REC-MATERIAL_COST_PLN.
        ELSEIF COSP-WRTTP EQ '01'.
          ADD <FS> TO OUT_REC-ADDNL_MATERIAL_COST_PLN.
        ENDIF.
      ENDDO.
    ENDFORM.                               " GET_VALUE_FROM_COSP
    Form GET_VALUES_FROM_COSS                                            *
    Get the Labour cost and Labour hours from the COSS table.            *
    There are no interface parameters to be passed to this subroutine.   *
    FORM GET_VALUES_FROM_COSS.
      FIELD-SYMBOLS: <FS1> TYPE ANY,
                     <FS2> TYPE ANY.
      DATA: V_COMPONENT1 TYPE I,
            V_COMPONENT2 TYPE I.
    Cummulate the posting values of all the 16 period buckets as to get
    total production order cost. This is to handle the aprtial posting of
    prodction order values in diffrent periods.
      V_COMPONENT1 = 15.
      V_COMPONENT2 = 111.
      DO 16 TIMES.
        ADD 1 TO: V_COMPONENT1, V_COMPONENT2.
        ASSIGN COMPONENT V_COMPONENT1 OF STRUCTURE COSS TO <FS1>.
        ASSIGN COMPONENT V_COMPONENT2 OF STRUCTURE COSS TO <FS2>.
        IF COSS-WRTTP EQ '04' AND COSS-KSTAR EQ P_KSTAR1.
          ADD <FS1> TO OUT_REC-LABOUR_COST_ACT.
          ADD <FS2> TO OUT_REC-LABOUR_HOURS_ACT.
        ELSEIF COSS-WRTTP EQ '04'.
          ADD <FS1> TO OUT_REC-ADDNL_LABOUR_COST_ACT.
          ADD <FS2> TO OUT_REC-ADDNL_LABOUR_HOURS_ACT.
        ELSEIF COSS-WRTTP EQ '01' AND COSS-KSTAR EQ P_KSTAR1.
          ADD <FS1> TO OUT_REC-LABOUR_COST_PLN.
          ADD <FS2> TO OUT_REC-LABOUR_HOURS_PLN.
        ELSEIF COSS-WRTTP EQ '01'.
          ADD <FS1> TO OUT_REC-ADDNL_LABOUR_COST_PLN.
          ADD <FS2> TO OUT_REC-ADDNL_LABOUR_HOURS_PLN.
        ENDIF.
      ENDDO.
    ENDFORM.                               " GET_VALUES_FROM_COSS

  • Internal Order for AUC Asset not getting created Automatically

    As per SAP Standard , when I create an  AUC Internal Order (KO01), and save , AUC asset is gets created automatically ted via AS01 and stores the AUC Asset in Internal Order settlement rule. 
    However when tried with the client Im not able to create, AUC is not getting automatically created and stored in Int Order Settlement rule.
    In config I have added investment profile to Ord Type  and in OAOA ( AUC Asset class setting , Investment profile is also checked)
    Kindly let me have your inputs to fix the issue
    Advance Thanks
    Sanjai

    Hi,
    In order to create AUC asset automatically by the system, you need to create an investment profile in OITA.
    Then assign this investment profile in the Internal order master data created through KO01 in the Investments tab.
    There is no option of assigning the Investment profile in the Order type.
    And in OAOA that is Asset class, select the radio button investment measure.
    You can default the Asset class of AUC in the investment profile or leave it blank so that same can be filled when system prompts for AUC creation.
    You cant see the AUC asset in the settlement rule once Investment order is created, but only after settlement of the balances to the AUC u can see.
    Thanks & Regards,
    Ravi Kumar

  • To find the Internal Order for a given opportunity

    Hi,
    Can anyone help me in finding out the internal order number for a list of opportunities? I need to know the tables in which this is getting updated.
    TIA,
    sinthu

    Hello,
    please read table CRMD_ORDERADM_H. According your "intenal order" you have to check on the field PROCESS_TYPE too.
    Rgds

  • Common internal order for multiple company codes.

    Hi All
    Can I have one statistical internal order which can be used at more than on Company code where controlling is common for all company codes.
    Thanks in advance
    reg
    S. Habib Pasha.

    Hi Sasi
    Thank you.
    I understand that Internal orders are Company code depended.  but,  at out client business, they need same internal order at difference comapany codes which are under one controlling area.
    Just looking, whether is there any possibility for same.
    reg
    S. Habib Pasha.

  • INTERNAL ORDER FOR INVENTORY

    Can an internal Order be defined in Purchase order for inventoried
    materials.

    Hi,
    When you buy to inventory, then it is a balance sheet posting. Therefore, no cost object (including internal order) could be assigned to this transaction. Internal order is only for 'bying for costs' PO.
    Regards,
    Eli

  • Internal Order FOR AUC

    Hi,
    I want to make an internal order to collect cost during the construction of AUC and settle it to the final asset number. However during my first posting of AUC cost, i want the system to create the AUC asset number automatically. How can i do that?

    Hi,
    you will have to Implement Investment management through Internal orders.
    make the relevant order type, settlement profile & asset class relevant for investment management. Enter the investment profile in investment tab of IO which will automaticall create the CWIP asset.
    Saurabh

  • Internal Order for Miscellaneous cost to material

    Dear Experts,
    I need your suggestion on below point.
    We have some miscellaneous cost which needs to be settled to material.
    Example: If the value of the 10 qty of material is 100 and miscellaneous cost for all this material is 10 then as per the requirement the material price needs to be 110(11 each).
    To meet this need I planned to use internal Order with the settlement category as MATERIEL(MAT) and maintain the material in the settlement profile.
    I am getting the below error when I try to maintain the settlement rule.
    'Distribution rule for Material can only be created automatically Message no. KD063'
    Also this is not a production scenario - we donu2019t have PP.
    I am also not very sure on my approach.. Any suggestion on my solution approach?
    Appreciate your time on this.
    Reagards
    Paul

    Rethinking on the solution.

Maybe you are looking for