Purchase order to Asset non imposed the Internal Order.

I'm entering a purchase order of an asset tied to an internal order of investment. The order has a budget X. If I enter a purchase order with value greater than the amount budgeted in the internal order, the system allows me to create the request and not imposed the internal order. In the report S_ALR_87013019, the order has no value released.
How can the system do not allow the purchase of assets with values greater than estimated and how to make that encumbers the purchase order and appear in the report S_ALR_87013019?
This only happens in the purchases of assets!
Thanks in advanced!
GLMacedo

My friend, see my answer to witch point.
1. Your Asset APC account should be Category 90 (Statistical) Cost element
The Internal Order is Statistical (I see in KO03). Should I verify in another place?
2. your Internal Order must be of category "Investment" and not "Overhead"
OK
3. Assign this Internal order in your Asset Master in the field "Investment Order"and not "Internal Order"....
OK
if Investment Order is not visible in Asset Master, change your screen layout of the asset and plug it in (IMG > AA > Master Data > Screen layouts)
4. Do settings in T code ACSET - Allow EAUFN for Trn Type = *, Acct Assign Type = APC Postings, and check the Acct Assgn check box
I don´t know how can I do this. How Can I Do?
Allow commitment management in your contr area OKKP and in your Internal order type (KOT2_OPA)
My type Order (investment) in KOT2_OPA is OK (commitment management was allowed). But in OKKP it is not! It is a critical setting. Should I flag this field?
6. Feield Status Group of Asset must allow CO/PP Order in OBC4
OK
Thank you very much!

Similar Messages

  • GET THE INTERNAL ORDER NUMBER BY INTERNAL ORDER GROUP

    Hi everyone! I want to know if there's existing functional module whereas I can get a list of internal order number (AUFNR) based from the internal order group name (AUFGR)? Thanks a lot! Your response will be greatly appreciated!

    Hi,
       First take a look at K_ORDER_SET_CREATE fm..
       The following code may help you in getting the orders based on order group..
      DATA: t_setvalues LIKE SETVALUES
            OCCURS 0 WITH HEADER LINE,
            t_hierarchy LIKE SETHIER OCCURS 0
            WITH HEADER LINE,
            l_date_from LIKE sy-datum,
            l_date_to LIKE sy-datum,
            l_subrc LIKE sy-subrc,
            l_setid LIKE SETHIER-SETID,
            BEGIN OF t_aufnr OCCURS 0,
              aufnr TYPE aufnr,
            END OF t_aufnr.
      CALL FUNCTION 'G_SET_ENCRYPT_SETID'
           EXPORTING
                SETCLASS        =  '0103'
                SHORTNAME       =  l_aufgr   <Your Aufgr here>
           IMPORTING
                SETID           =  l_setid.
      CALL FUNCTION 'G_SET_AVAILABLE'
           EXPORTING
                SETNAME = l_setid
                TABLE   = 'CCSS'
           IMPORTING
                SUBRC   = l_subrc.
      CALL FUNCTION 'G_SET_TREE_IMPORT'
           EXPORTING
                CLIENT                  = sy-mandt
                SETID                   = l_setid
                TABNAME                 = 'CCSS'
                fieldname               = 'AUFNR'      
                NO_DESCRIPTIONS         = space
                NO_RW_INFO              = space
                date_from               = l_date_from 
                date_to                 = l_date_to    
           TABLES
                SET_HIERARCHY           = t_hierarchy
                SET_VALUES              = t_setvalues
           EXCEPTIONS
                SET_NOT_FOUND           = 1
                OTHERS                  = 3.
       LOOP AT t_setvalues.
         t_aufnr-aufnr = t_setvalues-from.
         COLLECT t_aufnr.
         t_aufnr-aufnr = t_setvalues-to.
         COLLECT t_aufnr.
       ENDLOOP.
    Sri
    Message was edited by: Srikanth Pinnamaneni

  • Including down payment made to vendor in the internal order

    Hi all
    My requirement is like this.
    We use IM and IO(Capex orders) for procuring and capitalising assets. We are able to assign all the costs of procuring assets (both APC and incidental expenses to the internal order). We use purchase orders and assign the internal order while raising purchase order.
    Sometimes we do make Down payments(advances) without raising purchase orders. My question is how to include this down payment made in the internal order. We cannot assign any internal order while making the down payment. But, can we include this down payment made to vendor in the internal order(commitment) while making down payment or after that.
    FYI:I came to know that there is some functionality in Controlling (Project systems) where we can assign the down payment made to the internal order after making payment.But, i do not know how to do that.
    Pls somebody reply me.
    Thank you very much in advance.
    Regards,
    Vishnu
    VST-IT.
    Pls somebody answer my query.

    The functionality is available in Controlling. I dont know about PS.
    I need to know how to do it.
    Regards
    vishnu
    Pls anybody suggest me on this issue.

  • 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

  • Asset under Construction through Internal order- Functional deficit?

    Hi Experts,
    I have created an internal order and all the expenses incurred for the asst under construction are being booked at this internal order.
    While settling the internal order the system always picks up the month end date as the settlement date and hence the balance of internal Order is getting transferred to AUC on month end date (say31.07.2007).
    So,
    The date of transfer of balance from internal order to AUC is month end date that is 31.07.2007.
    But in Actuality the AUC got complited before month end (say 15..07.2007) and the Asset was put to use on 15.07.2007.
    Now the system is not allowing to settle the AUC to Main Asset as on 15.07.2007 as the AUC was not existence on that date. <b>Error:</b> Posting not possible (Value date earlier than capitalization date).
    I am able to transfer the balance in AUC to Main Assets as on 31.07.2007 but in this case my client is loosing the depreciation element on this asset from 15.07.2007 to 30.07.2007. Is this the functional deficit in SAP? Is there any way through which depreciation can be availed from 15.07.2007?
    Thanks & Regards,
    Bijay kumar Deo

    You can settle the AUC value in one period and posting can be made in another period. in the same you can give the different asset value date in KO88 screen. The only limitation is this possible only if the fiscal year is same.
    Give the asset value date as 15.07.2007 in KO88
    Hope this will work
    Radha

  • Asset value date in Internal order settlement ko88

    Hi.
    I have posted some expenses to the internal order. I m trying to settle it to AUC with tcode KO88.
    In the selection screen of ko88 i gave asset value date as 15.07.2011 but system is posting with month end date only as 31.07.2011.
    I read the sap note 98496. In that its mentioned that the asset value date given in settlement parameters will override the asset value date given in the selection screen of ko88.
    I tried to update the AUC asset value date in KO02 where we give settlement rules but i couldnt find any field there.
    Where do i update the AUC asset value date in settlement parameters. Can anyone provide me the tcode and the field where i update this asset value date.
    Regards,
    Padmavathi

    Hi
    You can the same in transaction code KO02 
    1. Click on 'Settlement Rule'
    2 Select 'Goto' in toll bar
    3.Select 'Settlement Parameter F8"
    4 there you will get" Asset value date"
    Table  Name" COBRA" field "BZDAT"
    Hope this will helpful for you
    Regards
    Praveen P C

  • Asset Under Construction creation, Internal Orders,

    Hi,
    We employ internal orders for collecting costs for an AUC. However, we have a requirement in which when an internal order is created for asset under construction, SAP has to automatically create an AUC asset and assign it in the settlement profile of the internal order. Is this possible? If so what configuration should I do.
    Thanks for your help.
    Ram

    Hi Ram,
    Yes. It is very much possible. You will have to create an Investment profile for that and in the investment profile give the Asset class of the AUC. Do this in transaction OITA.
    When this investment profile is entered in each Internal order you create, the system automatically creates an AUC asset to which the costs can be settled.
    Read the documentation for Investment Management component in the IMG and SAP help. YOu will get what you need. Thanks.
    Thanks,
    Vishal.

  • Asset under construction in internal order

    Dear All,
        can any one tell me how to create Asset under construction in internal order...
    Suresh patipati.

    You must have a separate asset class for Asset Under construction(OAOA) with line item settlement selection.
    Create an asset(AS01) under AUC asset class
    Then create internal order through KO01 and in Settlement rule mention the
    Category as FXA
    Settlement Receiver: AUC Asset
    % as 100% or as you require
    Save the entries.
    Now enter the capital expenditure using this Internal order.  After you finish with the postings settle the internal order(KO88).  On Settlement the values are transferred to AUC asset from Internal order.
    Now use AIAB & AIBU to distribute and Settle the AUC asset values between Main asset(s).  Here also in the settlement rule you must enter the settlement receivers.

  • Sales Order value updating in the Internal Order Revenue Planning

    Dear All, 
    We have created an Internal Order and entered the planned value of the Revenue & Costs.When we create the Sales Order ,the Planned Revenue value of the Internal Order is updating by the Sales Order Value,but as per the client requirement ,the planned value of the Internal Order should not get updated by the sales order value.
    Please note that we have activated the CO-PA.Is this CO-PA activation is affecting the Internal Order planned values by the Sales Order value?.If so how to come from this issue.
    Please help me as how to resolve this issue.
    Regards
    Subbu

    Hi,
    Thanks for giving the appropriate SAP Note and I have referred the said note,but in note the SAP has said that
    "The attached modification deactivates the update for the order for all order categories (CO internal order, PM order, CS order)."
    In our scenario we need to update the planned vales in the CO Internal Order ,PM Order and CS Order except the Sales Order value.Is there any other alternative solution without affecting the CO Internal Order,PM order and CS Order?
    Please share as we are in the process of testing.
    Thanks
    Subbu

  • Issue While Executing the Internal Order in KO8G

    Hi,
    Whle executing the internal order in KO8G,I am getting the below error.
    Complete Allocation Structure A1   and Message no. KD503
    I have reversed/cancelled all the relevent Material documents related to that PO,even after i am getting the same error.
    Error is as follows-
    Complete allocation structure A1
    Message no. KD503
    Diagnosis
    During settlement, the system puts the sender debits into groups (assignments), which are settled using the same settlement cost element. The settlement assignment is made in the allocation structure, which is stored in the settlement rule for the sender (under settlement parameters).
    Cost element 414126 cannot be assigned to a settlement cost assignment in allocation structure A1, and therefore it cannot be assigned to a settlement cost element.
    Procedure
    Possible solutions are as follows:
    If the posting under cost element 414126 was made to the sender because of an incorrect entry, and you can reverse the posting, and do not need to update the allocation structure. You only need to reverse the incorrectly assigned posting before repeating the settlement. Exception: For an investment measure with a line item settlement, you need to extend the allocation structure, even after the reversal.
    If the posting was made correctly, you can do the following:
    a) You can assign a different allocation structure to the sender: In the master data maintenance for the sender, choose "Settlement rule -> Goto -> Settlement parameters" and then enter a different allocation structure.
    If necessary, also check whether the correct allocation structure is entered in the settlement profile. The allocation structure is defaulted in the settlement profile when you create sender master data or when you maintain the settlement rule.
    You can update allocation structure A1
    Kindly advice me how to fix this error
    Thanks
    Supriya

    Hi,
    Thanks for your reply,I have added that cost element in allocation structure.Now i am getting one more error related to this even i have maintained Receiver type FXT and settlement cost element for that.Kindly help me on this.
    Define a settlement cost element for receiver type FXA
    Message no. KD506
    Diagnosis
    In allocation structure A1 (controlling area AFCO), you did not define which cost element should be used when settling costs/revenues of the sender. Nor did you define receiver type FXA.
    Procedure
    Assign a different allocation structure to the settlement sender (-> Master data -> Settlement rule -> Goto -> Settlement parameters), or maintain allocation structure A1.
    Thanks
    Supriya

  • How to create a service order and check the internal order in R/3

    Required Solution:
    1. How to copy existing service order and create new one and check the internal order in R/3, whether the certain service order is correctly created in r/3, can you polease explain the steps plz.
    2. If i am creating service order by service template finally the service order is getting created but it is not showing me in the table iaom_crm_aufk, how to check this.
    can any one help me in this issues as soon as possible.

    Hello Zita,
    Try to restart your portal after creating <b>ServiceUser</b> in both UME and KM.
    One more major difference between ServiceUser and normal portal user is that a ServiceUser does not have a UserAccount (IUserAccount)
    Object serviceContext = null;
            try {
                serviceContext = AccessController.doPrivileged(new PrivilegedExceptionAction() {
                    public Object run() throws WcmException {
                        return ResourceFactory.getInstance().getServiceContext(CONTRACT_SERVICE_USER);
            } catch (PrivilegedActionException e) {
                logger.severe(e, "ResourceContext for the technical " + serviceUser +
                     " user could not be retrieved.");
    IResourceContext resCtx = (IResourceContext) serviceContext;
    So I modify all KM resources with this resCtx.
    Hope this helps ...
    Greetings,
    Praveen Gudapati
    p.s. Points are always welcome for helpful answers

  • GL account to  be changed so that the Internal Order field is mandatory

    Hello,
    We wand GL account to  be changed so that the Internal Order field is mandatory?  Nothing should be posted to this account without an Internal order and therefore, if this was a mandatory field people would be forced to put the Internal order # in up front rather than forgetting to add it in.
    The account is P&L account.
    Please let us know how to configure this?
    BR,
    Zulfikar

    Hi, other than setting the GL account as a cost element, you can assign a field status group that has internal order as a mandatory field.
    In spro, go to Financial accounting global setting > Document > Line item > Controls > Maintain Field Satus Variant.
    Select the Field status group that you want to change or you can copy any standard group and rename it as a new group. In the group, you will need to go to "Additional Account Assignment". Change CO/PP order to become "Required Entry".
    Hope this helps.
    Best Regards,
    Reverie

  • Advance payment against the Internal Orders - Capex

    Dear friends
    Can you please explain what configuration we have to do regarding the Down payment made against the Internal Orders created for Capital Expenditure.
    Please let me know what cost element category we have to take for Down Payments made against the Internal Orders.
    Please let me know in detail manner.
    Thanks in Advance
    Kiran A

    -

  • 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

  • Read the Internal Order GUID of the Batch

    Hi,
      In Product view, Reciept/Req element is showing one element 0000653225/0001/CC/(01.01.1970). If we go to context option, It is showing the Pegging structure.
    I am working on one report in which User enter the number 0000653225 and Output comes in the form of the Pegging structure.
    I am not getting the Internal Order number of 0000653225 usinf the function module '/SAPAPO/DM_ORDKEY_SELECT_ORDNO'. While this Function module returns the Internal Order GUID of all other Reciept/Req elements.
      Appreciate If anyone help me on getting the above.
    Thanks in Advance
    Pradeep

    Hi,
      I can see the Order in the Product view...it meant it exist in the system. But in the tables /sapapo/ordkey & /sapapo/ordmap, No order is pouplated wiith the Order type '00'.
    I guess we have to read this order in another way. But I don't know.
    Thanks
    Pradeep

Maybe you are looking for