Production Internal Order

Hi Guys
What is a production Internal order?
how do costs flow to Internal orders and where do we settle these orders to.
thanks
srikanth

Internal orders are normally used to plan, collect, and settle the costs of internal jobs and tasks. The SAP system enables you to monitor your internal orders throughout their entire life-cycle; from initial creation, through the planning and posting of all the actual costs, to the final settlement and archiving.
Internal Order is one of the master data in controlling module.
Assign Internal order to production order by selecting (either in CO01 or CO02)
Header ---> Settlement Rule
Enter ORD as Account Assignment category, Enter Internal Order Number in Settlement Receiver Field, Enter % and Enter Settlment Type.
Carry out all production activities.
After perfoming TECO, Execute Settlement Transaction KO88. The cost will be settled to internal order after performing K088 successfully.
More Info about Internal Order:
You can create an internal order to monitor the costs of a time-restricted job or the costs (and revenues, if required) for the production of activities. Internal orders can also be used for the long-term monitoring of costs.
Overhead cost orders are used for the time-restricted monitoring of overhead costs (that are incurred when you execute a job) or for the long-term monitoring of parts of the overhead costs.
Investment orders let you monitor investment costs that can be capitalized and settled to fixed assets.
Accrual orders enable you to monitor period-related accrual calculation between expenses posted in Financial Accounting and the costing-based costs debited in Cost Accounting.
Orders with revenues let you monitor costs and revenues that are incurred for activities for external partners, or for internal activities that do not form part of the core business for your organization.
You can use model orders as a reference, when creating new internal orders.

Similar Messages

  • 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

  • Assignment of Production Order to Internal Order

    Can a production order be assigned to an internal order so that the manufacturing costs can be seen in the internal order?
    My scenario is such that I want to manufacture sheet metal dies. The various costs involved are design costs, procurement costs and manufacturing costs. The design costs and procurement costs will be captured in the internal order. I want to capture the manufacturing cost through the production order.
    Now the problem is how can I see the total of all three costs in the internal order?
    Thanks in anticipation.
    Sumeet

    As I know,
    You can assign internal order as a settlement receiver. Since production order itself is a cost receiver.
    Why connot you use internal order instead of production order. You can do GR/GI to internal order.
    One more option is you can use cost centre/internal order as a receiver, maintain a minimum price (1unit=1$)in production material and when you settle all the cost will be settled against the cost centre/internal order.

  • Production order settlement to statistical internal order

    If you would like to settle a production order to a statistical internal order, could you at the same time settle to COPA ?

    Hi,
    principally its possible to add a real settlement receiver and a statistical settlement receiver. If you have entered the real acount assignment (CO-PA = PSG) in the settlement rule mark the line, tick the "detail" button (F2) and enter the statistical account assignment.
    The settlement receivers (PSG and ORD) must be allowed in the settlement profile and in the allocation structure there must be a settlement cost element assigned to receiver type "PSG and ORD" (or it is settled cost element wise).
    Please try!
    Best regards, Christian

  • Production order variance settlement to cost centers/internal order

    Hi,
    I am looking to configure the settlement of production order variances to cost centers/internal order. Is there a way to do this in the settlement profile. Would appreciate your help.
    Thank you,
    Ram

    OKO7 will allow you to configure the Settlement Profile by selecting valid receivers.
    This should be done with/or by FICO.
    Then test, test, test
    award points if helpful
    Althea

  • How to confirm activity for Internal order having object class PRODUCTION

    Hi,
    We have Internal order which has object class PRODUCTION. In it material and labour cost got confirmed
    Here my doubt is how can I check the activity confirmation details in the system (Not CO15)
    In otherwords how can I display internal order activity confirmation
    I ll be grateful anybody answer quickly
    Regards
    Sneha

    Hi Sneha
    1. You can use KB21N - Screen variant ALL
    2. If you want to check any postings on this Interna order - Use KOB1
    Regards
    Ajay M

  • Error while running Internal Order Settlement (KO88)

    Hi,
    We are in ECC 6.  We are facing an error while settling one internal order using T.Code KO88.
    The error message says :
    Execute amount settlement up to and including settlement period 001 2009 first
    Message KD262
    We have already settled the internal order upto previous month. But, we are unable to settle the order for the current month.
    Any suggestion please.
    Regards,
    Ganesan

    In production Order maintain Settlement type as Full Settlement.
    In CO01 Create production Order or CO02 Change production order go to
    Header -
    > Settlement Rule
    Maintain Category, Receiver, Percentage, FUL (as settlement type)
    Change settlement type to FUL if it is PER.
    PER Settlement Type - Only settles the cost incurred on the posting period
    FUL Settlment Type - Settles all the cost incurred after the previous costing run

  • Goods Receipt and Amoratization to Internal Orders (CO)

    Dear SAP Gurus -
    Please could you kindly assist in this matter.
    Our Production department is unable to upload the plan cost / unit cost to the 1st impression production order number, as stock was received before for the old title.
    Instead of creating new ISBNs the business used these existing 40 ISBNs and just changed the  titles.
    As such the plan cost /unit cost was uploaded to 2nd impression 02, goods
    receipt and actual invoice received also captured into 2nd impression 02.
    However for the internal order via KO03 for the 40 new titles were captured into 1st impression '01'
    Production dept is able to upload the plan cost
    / unit cost to the first cost internal order the last two digits carry 01 and
    actual invoice received is captured into 1st impression first cost 01.
    Will the First cost internal order amortised for 12 months upon the goods receipt.
    Question Can the 1st impression 01 first cost order internal order created via KO03 read the goods receipt
    which is captured in 2nd impression 02 in production order?
    I believe the business want to know if the goods receipt they have done against Production order 02 will trigger the amortisation of the costs on First cost internal order 01.
    So basically the concern is that the first cost internal order number 01 for these 40 titles maybe will be amortised upon
    the actual goods receipt as the receipt is captured in 2nd impression 02 for the production order.
    Please provide some feedback.
    Thanks.

    Hello,
    I try it from development environment , Create the  transport organize and transport it to product environment, then use SM56 transaction for reset buffer ( object CO_ABRECHN ) and put the NR status. so, you can transport it without preoccupation.
    Regards.

  • Problem with internal order creation using BAPI_INTERNALORDER_CREATE. Help!

    Hi Experts,
    I am facing a strange problem in SAP. I have a scenario where I am integrating a .Net application with SAP R/3 via SAP XI.
    The .Net application is calling XI web service via SOAP adapter. The XI then sends the data to the SAP R/3 system via RFC adapter.
    XI calls the BAPI u201CBAPI_INTERNALORDER_CREATEu201D to create a new internal order in the R/3 system.
    This scenario works perfectly fine when tested via XIu2019s runtime workbench or any SOAP or web service testing tool. New internal order gets created in the R/3 system without any issue. But when I test the same via the .Net application I found that the order is getting created properly but some fields like currency and cost center are disabled or grayed out in change mode. Have you encountered this problem earlier? Any clue what could be the root cause?
    Please help!
    thanks
    Gopal

    Hi Sampanth,
        I think you did not understood my scenario. In real time or production situation I have to use .Net application to send data to XI. The XI will then send the same to R/3 system to create the internal order.
    The .Net code is calling the XI's webservice using C# code and sends the data as a SOAP request.
    How can .Net code grayout some fields in SAP R/3 system? Can you elaborate on what are you trying to explain?
    Thanks
    Gopal

  • 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

  • Settlement from internal order to asset under construction

    HI All,
    I have allocated some labors hours cost from production cost centers to real order which is created for allocating the internal cost to asset under construction.
    when i allocate the labor hours by using the "KB21N" it has used the secondary cost element that is "Internal activity allocation" cost element "1200002".
    i have given the source cost element "1200002" which is created as "internal activity allocation" and in settlement cost elements folder i have given receiving category is "FXA" and selected by cost element check box. i selected required entry field in settlement profile and assigned in order type.
    when i do the settlement to asset under construction from internal order it is showing bellow errow.
    "Settlement by cost element not possible due to secondary cost element
    Message no. KD553
    Diagnosis
    You want to settle the secondary cost element 1200002 by cost element to an asset or G/L account, which is not allowed.
    Procedure
    Extend your allocation structure R3, so that secondary cost elements are not settled by cost element, but with a settlement cost element."
    please let me know the problem and where i did mistake. give me the solution
    thanks in advance
    Mr.Rao

    HI,
    in your allocation structure R3 you entered in the view "Settlement cost element" that settlement receiver categoy FXA receives values "by cost element". This is only possible for primary cost elements. For internal activities do not tick "by cost element" but use a settlement cost element with cost element category "22".
    best regards, Christian

  • How to include field Internal order in the material master for SD orders

    Hello,
    I would like to know how I can bring the field "Internal Order" to the material master, so I can create materials with assignments to internal orders.
    We want to create Sales Orders where when we enter on order item with a material, the internal order is derived automatically from the material master.
    Thank you in advance!
    Jose Eximeno

    Hello,
    I am not familiar with the field "product attributes" in relation with entering the field "internal order"...
    Could you be a little more specific on how product attributes can be used to enter the internal order number in the material master?
    Best regards,
    Jose

  • Internal order - error message M7064 when trying to post GR in MIGO

    Hi All,
    When trying to post GR against an internal order in MIGO system gives error message M7064
    "Document 000009000030   does not contain any selectable items"
    I'm not familiar with CO orders. What shall I check and how? Could you please help?
    In KO03:
    Status of order: REL  DLV  GMPS SETC VCAL
    Allowed transactions: I can see e.g. RMRU, RMWA, RMWE, RMWF
    Isn't it possible hat somehow the status of the order controls it? But how?
    Please help.
    Thanks,
    Csaba
    Edited by: Csaba Szommer on Feb 3, 2010 4:21 PM

    HI,
    I'm not sure if you got a chance to look at the long text of the error message, which shows the possible reasons and procedure to follow. You may want to check if any of these reasons applicable in your case..
    Diagnosis
    The document or document item entered cannot be adopted.
    Possible reasons for this are:
    The document items have already been processed
    (Suggest zero lines indicator set?).
    the document items have been deleted or are blocked.
    the document items have been created for a different plant.
    (for reservations only) movements are not yet allowed for the reservation items.
    (for reservations only) the document items are retrograde components of the order. These are posted using the order confirmations.
    A confirmation must exist for the document items.
    The document items must be released first.
    The document is an R/2 document.
    Procedure
    Make sure your entries are correct.
    If the system has already processed the total quantity, you can set the Suggest zero lines indicator. The system will suggest the quantity zero for the items that have already been processed.
    If you have entered a particular item, cancel the item. If you do not enter an item, the system searches all of the open items in the document.
    If the document is a purchase order, production order or a reservation, you can enter search criteria in the dialog box.
    You access the dialog box by choosing Enter with reference on the initial screen.
    If the document is an SAP R/2 document, you have to cancel it manually by entering the reversal movement type.
    Hope this helps.

  • SWL SC only considers partial amount of Internal Order

    Greetings, Experts.
    We are using SRM 4.0 - Classic and use Portal for creating SC.
    We have an Internal Order no. 1111 in the backend with original budget as 1000 GBP and unassigned budget as 700 GBP (1000 less 300 assigned to already created PO's). The Internal order is created for Controlling Area CA01 which has PDR as the currency.
    We create SHOP WITH LIMIT (SWL) SC in USD currency with this internal order as account assignment. Reason of using USD (instead of GBP which is the Internal order currency) is - we want PO in USD because Vendor currency is USD. The resultant PO will have account assignment = F(order) and Item Cat=D (service).
    For simplicity sake assume that 700 GBP = 1200 USD.
    When we specify limit amount as 1200 USD in SWL SC, the system throws error that this amount exceeds the budget. Not only this, say for any amount more than 300 USD, the system keeps on throwing this error and we can not create the SC.
    In essence, we can not use the full unassigned amount to crete SWL SC.
    The system allows to create SC if Limit amount is less than 300 USD.
    We have tested -
    1) If we create SHOP SC (as against SWL), the system allows full unassigned amount of internal order.
    2) If we create stand-alone PO in the backend, the system allows full unassigned amount of internal order.
    Please help in resolving - why the system does not allow full unassigned amount of internal order while creating SWL SC?
    Thanks and regards
    Vilas

    Hi
    <b>Please go through the following SAP OSS Notes -></b>
    Note 640369 - Incorrect values in dropdown in account assignment details
    Note 1027656 - Simplified pricing:wrong price calculation in SC using prod.
    Note 1038241 - Simplified pricing: Follow-on note to note 1027656
    Note 1034949 - Wrong price in SC when a product has multiple conditions
    Hope this will help.
    Regards
    - Atul

  • Depreciation posting to real internal order in ECC 6.0

    Hello SAP experts,
    Our business scenario is we want to post the depreciation calculated on asset to Real Internal Order and not Cost Center.   We are implementing in ECC 6.0.
    Q1 - what are the basic configuration required
    Q2 - Internal order created will have which object - Overhead or Production or Investment.
    Please reply .
    abhay

    Dear Abhay,
    You can check the Screen Lay out rules for your asset master data under Logical Field Group - Time Dependent Data. Normally you don't have Internal Order as a selection option for posting depreciation. However check there if you can insert field group for internal order as well there.
    Regards,
    Sanjay

Maybe you are looking for

  • WSUS script for pending reboot possible addition - How

    Hi, I am found script for pending reboot and script work perfectly. My problem is that script generate only pending computers reboot for master wsus server not for replica servers. Can I modify this script to generate pending reboot for all replica s

  • Creating BADI for datasource enhancement in CRM system

    Hi, I am working on SAP BI/BW. This is the first time I am working in CRM system with CRM datasources. Facing some problem for datasource enhancement as never done it before in the CRM system. Is there anyone who can help in in creating BADI for data

  • Deploying icons with Forms 10.1.2.0.2

    I'm just playing with the latest release of Forms on Windows XP and I'm trying to figure out where to put the icons so that they are displayed at run time. The documentation says you need to change this line default.icons.iconpath= in registry.dat. I

  • Printing page numbers in smartform

    Hello all, we need to print page numbers as Page 1 of 10 etc.. But I can not use SFSY-FORMPAGES because I print multiple documents. I need to know how many pages will be printed in advance. Every time a new document comes we have to start the count a

  • Burn cd-any limit?

    I want to put together a CD to play when on vacation (plan to put on a DVD sized disk- either SL or DL depending on file size).  I haven't figured out exactly what final playlist I want... and may want to tweak it over time.  Is there a limit to the