Badi for IW31 to keep check on Funds Center and Settlement rule

Hi,
My requirement is that While running IW31,if the first four characters of Settlement Rule(Cost Center) and FundsCenter is not equal to Planning Plant then an error message should be raised . Can you suggest any appropriate BADI or User Exit for this?
Path for Funds Center-->Go to>Assignment--->Funds Management
Thanks
K Srinivas

Hii Srinivas,
Did you find any solution for this, i am also encountering the same problem.
Regards,
meenakshi

Similar Messages

  • BADI for IW31/32 (work order)

    Hi,
    I have to find BADI for IW31/32 (work order). The requirement is to update delivery address on automatic PR created from non-stock items of the work order.
    Please suggest. Points will be rewarded for appropriate suggestions.
    Thanks,
    Parvati

    Hi
    Execute the below program . It will give you all exits and badis for a transaction.
    You can excute this by giving IW31 in the selection screen and you will get the badis and exits related to it.
    REPORT Z_FIND_BADI .
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.
    do 2 times.
    enddo.

  • Badi for ME21N & ME22N to check storage location

    Hello Guru's,
    I need BADI for ME21N & ME22N to check storage location is maintained for plant used in PO i'm using method IF_EX_ME_PURCHDOC_POSTED~POSTED with definition name ME_PURCHDOC_POSTED but this throws message on SAVE.
    But my requirement this message should be displayed before saving.Please guide

    Hi,
    Use BADI:
    ME_PROCESS_PO_CUST
    BADI CL_ME_PO_CUST
    Business Add-in
    ME_PROCESS_PO                           Enhancements for Processing Enjoy Purchase Order: Intern.
    ME_PROCESS_COMP                      Processing of Component Default Data at Time of GR: Customer
    ME_PO_SC_SRV                              BAdI: Service Tab Page for Subcontracting
    ME_PO_PRICING_CUST                    Enhancements to Price Determination: Customer
    ME_PO_PRICING                              Enhancements to Price Determination: Internal
    ME_INFOREC_SEND                        Capture/Send Purchase Info Record Changes - Internal Use
    ME_HOLD_PO                                  Hold Enjoy Purchase Orders: Activation/Deactivation
    ME_GUI_PO_CUST                           Customer's Own Screens in Enjoy Purchase Order
    ME_FIELDSTATUS_STOCK               FM Account Assignment Behavior for Stock PR/PO
    ME_DP_CLEARING                          Clearing (Offsetting) of Down Payments and Payment Requests
    ME_DEFINE_CALCTYPE                  Control of Pricing Type: Additional Fields
    ME_COMMTMNT_REQ_RE_C            Check of Commitment Relevance of Purchase Requisitions
    ME_COMMTMNT_REQ_RELE                    Check of Commitment Relevance of Purchase Requisitions
    ME_PROCESS_PO_CUST                      Enhancements for Processing Enjoy Purchase Order: Customer
    SMOD_MRFLB001                           Control Items for Contract Release Order
    MM_EDI_DESADV_IN                        Supplementation of Delivery Interface from Purchase Order
    MM_DELIVERY_ADDR_SAP                    Determination of Delivery Address
    ME_WRF_STD_DNG                          PO Controlling Reminder: Extension to Standard Reminder
    ME_TRIGGER_ATP                          Triggers New ATP for Changes in EKKO, EKPO, EKPV
    ME_TRF_RULE_CUST_OFF                    BADI for Deactivation of Field T161V-REVFE
    ME_TAX_FROM_ADDRESS                     Tax jurisdiction code taken from address
    ME_REQ_POSTED                           Purchase Requisition Posted
    ME_REQ_OI_EXT                           Commitment Update in the Case of External Requisitions
    ME_RELEASE_CREATE                       BAdI: Release Creation for Sched.Agrmts with Release Docu.
    ME_PURCHDOC_POSTED                      Purchasing Document Posted
    ME_PROCESS_REQ_CUST                     Enhancements for Processing Enjoy PReqs: Customer
    ME_PROCESS_REQ                          Enhancements for Processing Enjoy PReqs: Internal
    ME_COMMTMNT_PO_REL_C                    Check for Commitment-Relevance of Purchase Orders
    ME_CCP_BESWK_AUTH_CH                    BAdI for authorization checks for procuring plant
    ME_CCP_ACTIVE_CHECK                     BAdI to check whether CCP process is active
    ME_BSART_DET                            Change document type for automatically generated POs
    ME_BAPI_PR_CREATE_02
    ME_BAPI_PR_CREATE_01
    ME_BAPI_PO_CREATE_02
    ME_BAPI_PO_CREATE_01
    ME_BADI_DISPLAY_DOC                     BAdI for Internal Control of Transaction to be Invoked
    ME_ACTV_CANCEL_PO                       BAdI for Activating the Cancel Function at Header Level
    MEGUI_LAYOUT                            BAdI for Enjoy Purchasing GUI
    EXTENSION_US_TAXES                      Extended Tax Calculation with Additional Data
    ARC_MM_EKKO_WRITE                       BAdI: Enhancement of Scope of Archiving (MM_EKKO)
    ARC_MM_EKKO_CHECK                       BAdI: Enhancement of Archivability Check (MM_EKKO)
    ME_CCP_DEL_DURATION                     Calc. of Delivery Duration in CCP Process (Not in Standard)
    ME_COMMTMNT_PO_RELEV                    Check for Commitment-Relevance of Purchase Orders
    ME_COMMITMENT_STO_CH                    BadI for checking if commitments for STOs are active
    ME_COMMITMENT_RETURN                    Commitment for return item
    ME_CIP_REF_CHAR                         Enables Reference Characteristics in Purchasing
    ME_CIP_ALLOW_CHANGE                     Configuration in Purchasing: Changeability Control
    ME_CIN_MM06EFKO                         Copy PO data for use by Country version India
    ME_CIN_LEINRF2V                         BADI for LEINRF03 excise_invoice_details
    ME_CIN_LEINRF2R                         BADI for CIN India - Delivery charges
    ME_CHECK_SOURCES                        Additional Checks in Source Determination/Checking
    ME_CHECK_OA                             Check BAdI for Contracts
    ME_CHECK_ALL_ITEMS                      Run Through Items Again in the Event of Changes in EKKO
    ME_CHANGE_OUTTAB                        Enrich ALV Output Table in Purchasing
    ME_CHANGE_CHARACTER                     Customer-Specific Characteristics for Product Allocation
    Edited by: Neenu Jose on Nov 21, 2008 6:13 AM
    Edited by: Neenu Jose on Nov 21, 2008 6:16 AM

  • Funds center and commetment item

    Good evening!
    We are HCM consultants. We were asked by our FI department to conduct a
    post run for two personnel numbers in development system.
    After the post run, the documents consider errors which say, for
    example, that "in position 00001 21 993-05 commitment item was not
    determined". 21 is a company code, 993-05 is a G/L account. This error
    occurs for numerous accounts. Our FI says that they have customized
    everything for 21 company code and have put commitment items for every
    G/L account. They ask whether it is possible to customize fields for
    funds center and commitment item in HCM, IT0015 where we determine
    account assignment.
    In the SAP course IPS910 they found a passage about HCM and FI
    integration where is said that "Funds center and Fund can be determined
    for org. unit/position/personnel. In addition to funds center and fund
    there can be determind also a commitment item for info-types
    considering account assignmet (0014,0015,2001-2005,2010)".
    We in HCM guess that there is something wrong with FI customizing, 'cos
    in HCM it's impossible to activate those fields, or even if it
    possible - it's wrong.
    The question is - is it possible to add fields for funds center in HCM
    (IT0015) or it's not worth doing?
    Best regards,
    Eldar       
    Steps for Reconstruction    
    1. In HCM all the entris are standard. We made entries in IT0015,
    started payroll and posting.
    2. FI made their customizing for 21 company code.

    Hello Eldar,
    I will provide you some hints below.
    1) To have the integration between PSM-FM and HCM, in PSM side you should check:
    SPRO (IMG)
    Public Sector Management
    Funds Management Government
    Actual and Commitment Update/Integration
    Integration
    Integration with Human Resources (HR)
    Please check all the sub-menus there and the documentation available in from of each link. It is very good and provides some links for all the customizings that needs to be done.
    2) Check also the configuration as it is described in the enclosed note 766613. It is related to view V_T588N.
    3) If Funds Management and Controlling are updated in an integrated way such that the cost center is always the leading account assignment and the fund center is derived, the HR must not (and does not) support the maintenance of derived information (such as fund center). Thus there are the following three possible scenarios:
    - Funds Management (FM) is not active.   -> HR doesn't show Fund Center
    - FM is active but without CO-Integration-> HR shows Fund Center
    - FM is active with CO Integration       -> HR doesn't show Fund Center
    With CO Integration turned on, the derivation functionality is utilized to determine the Fund Center in HR. However, if you are looking for manual input in the FC field (and subsequent saving of this value on
    the database), all I can provide would be a modification to inform HR that the FC field is active.
    To perform that, you would need to make the following coding change to give HR the indication that the field should be displayed and edited:
    FUNCTION FM_DC_GET_ACTIVE_DIMENSIONS:
        if ( CO-FM-Integration is on )
           IF ( l_f_fm01-co_integration = con_on ).         <   Delete
           IF (  l_f_fm01-co_integration  =  con_on AND     <   Insert
             NOT l_f_fm01-co_int_start_hr IS INITIAL ).     <   Insert
           IF (  l_f_fm01-co_integration  =  con_on AND
    You will need to perform the necessary testing in HR to ensure that it is functioning as intended as I am unsure of the differences in the HR functionality between 46C and ECC 600.
    These scenarios can be maintained with time dependence (active from-dates): There can be a period for the first, a second time interval for the second and a third time interval for the last scenario.
    4) Please check if you have implemented note 918775. It should be present in your system
    5) Please check if you have implemented note  755796. It should be present in your system
    6) Please check also the note 701933.
    I hope I could help you 
    Let me know your comments if I am going in the wrong direction.
    Best Regards,
    Vanessa.

  • Static Fund Center and Commitment Item

    Dear All,
    We have recently implemented Funds Management in our organisation and there are a few issues due to corrections in the account assignment derivation data by the user.
    We have a derivation strategy that gets the Funds Center and Commitment Item values from the GL/Cost Center combination.
    Now, the user frequently changes the cost center as there is little clarity with regards to which cost center should the assigned costs go to.
    Now when the user enters the Cost Center and the GL the first time, the FC and CI get populated in the PR - fine till now...But when before saving the PR, he changes the cost center, the new assignment does not get picked up. The budget consumption too happens in the old fund center and commitment item corresponding to the first entered cost center / gl combination.
    We ran a trace and we found that the trace has the new cost center in it, but the old funds center and commitment item, with the explanation that "None of the target fields are to be derived."
    We have given account assignment as changeable in the cost center (K) account assignment. And the FC and CI are in the optional mode with the account assignment.
    Is there any way by which the FC and CI value gets picked based on the latest changes and not on the last held data ? Or any user exit that might get the values from the FMDERIVE each time the data is entered and the return key hit ?
    Thanks and Regards,
    Wy.

    Hi Aleksey,
    Thanks for the note !
    Looks like the note was implemented already for a previous storage location-based development.
    We have now made a change to the existing path - the existing FC/CI values are deleted first and the new values picked from FMDERIVE everytime we hit 'ENTER' or 'SAVE'.
    This way, every change to the PR has the FMDERIVE check, and the values are indirectly refreshed this way.
    Not sure if this is the right path, but could not find a better alternative to account for the innumerable corrections to the purchasing documents that take place at our organisation.
    Regards,
    Wy.

  • MM-FM integration. How to stop update of Fund Center and Commitment Item

    Hello!
    Anyone please help. MM-FM integration.
    Our problem is after automatic creation of PR and PO from work orders, and the fund center and commitment item in the PR and PO has been changed/updated by the user, and then we change something in the work order and save it, the fund center and commitment item of the PR and PO goes back to default value (based on FMderive). Is there a way to stop this?
    Thanks in advance for your help.
    Regards,
    Rona

    It seems like you have selected "Do not overwrite target values" option in both Funds Enter and Commitment Item in the derivation rule defined.
    Go through SAP Note 666322, make sure the Trace feature in On and then choose the option "Overwrite Target Values" in both Funds Enter and Commitment Item in your derivation rule. After that, see the Difference before and after values in the trace log created after performing the derivation rule.
    I am sure this will help.
    Regards,
    Amar Lal

  • How update Fund Center and Commitment Item after posting

    hi Experts,
    Funds management was activated during the year and hence there are few open items saved without capturing Fund Center and Commitment Item. When i tried to clear these open item i get the following error
    Line  in document xxx xxxxxxxxxxxx   does not contain any commitment items
    Is there any program which i can use to update derivation to the already posted line item
    Thanks in Advance

    Hi,
    Solutions proposed by Alexey are good if FM document was created for the FI documents in question. If, however, no FM document was created, reassignment process won't help. You can try FMN0 transaction after creating a derivation rule in FMDERIVE for these documents, but I cannot confirm that it would be sucessful as FMN0 transaction is not perfect.
    The solution could be updating FI tables (BSEG/BSIS/BSAS) with FM assignment (fund centre/commitment item) and only then running FMN0 transaction. In this case, FM document will be created and you'll be able to process the items.
    Regards,
    Eli

  • Fund Center and Commitment Item

    Hi All ,
                What is the Fund Center and Commitment Item also the use of it.
    regards
    sunil

    The fund center is the budget which is issued by the managemnet for the specific area (cost center) . The same will be released in each periodical wise as per decision taken.
    Example Maintenance team has one fund center. So all the times for his expenses the fund will be deducted from provision. Basically it is linking with cost center.
    The commitmenet item comes under the fund center. It menas that you may have repair& services, Labour charges, spares etc. each commitment item has own budget value under your fund center. exaplme if you are taking the spares your spares budget will deduct.
    I think u got something, but for explation here is not possible since its big subject.

  • I need to do sap sd certification ,training for same is very costly from authorised center and i canot afford ,the other way is i do training from unauthorised center and take certification exam in any country where prerequisite is not doing training

    i need to do sap sd certification ,training for same is very costly from authorised center and i canot afford ,the other way is i do training from unauthorised center and take certification exam in any country where prerequisite is not doing training from authorised center.how good it it to do prepare from unauthorised center and take exam in any country like australia ,US ?please help understand .

    Hi Preeti,
    please first understand the difference between a subject (your header) and its body line, please never write so long subject matter.
    Now coming to your queries , what you thinks being at Australia or US is free of Cost. The first thing is that i don't understand your mission for taking Certifications, Are you a working proffesional because for more than 2 yrs. of working experience, you don't need any training , you can take direct examinations.
    And if you are not a working professional, i don't thing taking any certification will serve any purpose in your job hunt, although it will enrich your Resume only, you will nothing get out of this from just taking a vertification
    So, please tell us that you are a fresher or having real time working exposure in SAP SD module, then any one will guide you well.

  • BADI for IW31 which has values of Plant,Fundcenter,cost center

    Hi,
    My requirement is that While running IW31,if the first four characters of Settlement Rule(Cost Center) and FundsCenter is not equal to Planning Plant then an error message should be raised . Can you suggest any appropriate BADI or User Exit for this?
    Path for Funds Center-->Go to>Assignment--->Funds Management
    Thanks
    K Srinivas

    Hi Srinivas,
       In order to find Badi or User Exit, you can put a STOP point at class CL_EXITHANDLER and in method GET_INSTANCE, CALL METHOD cl_exithandler=>get_class_name_by_interface and then you can execute the Tcode and then at every click it will stop in debugging & give the name of the Exit or Badi.
    Hope it Helps...
    Regards,
    Shailesh Jadhav

  • Need BADI for IW31

    Hi All,
    I am looking for a BADI or userexit for IW31, service order.  when entering a component, (ex. material AAA), click on availability check,  if the qty committed < qty required, then update the component with different material (ex.  material ABC instead of AAA).
    your help is greatly appreciated.

    Hi,
    Try BADI
    IWO1_TL_INTEGRATION
    IWO1_ORDER_BADI
    Hope it helps...
    Lokesh
    pls. reward appropriate points

  • User Exit/BADI for Production Order Availability Check

    Hi PP experts,
    Is there any user exit or BADI which can be used for Production Order Availability Check during order creation/release or while running collective availability check (COMAC) to include additional check conditions such as do not commit quantity (commitment qty = 0) if storage location for a component is missing in the production order due to storage location is not maintained/specified for that component in the material master.
    Note: In this case the availability check is set (configured)  to check at the storage location level.

    Dear ,
    Availablity Check is not Plant Specific or Storage Loaction spefic .ATP does not check the stock for any particualar stock in storage loaction rather it cheks various stocks based inward and out ward movement time through PR/PO/Dependent /Planned Order /Stock Type  irrespective of any Storage Location .
    BAPI which can be used :
    1.BAPI_PRODORD_CHECK_MAT_AVAIL
    can we exclude materials of prod order in availability check
    what is availability check concept  how it is used in SAP
    Check the above if it is useful
    Regards
    JH

  • User exit / Badi for iw31

    Dear all,
    When i create a maintenance order(iw31) with reference to equipment it defualts teh equipment cost center, in the location tab.
    I have a requirement to change the cost center based on the workcenter / priority, when i save the order.
    Is there is any user exit / Badi available for my requirement?
    Regards
    Murali

    Hi
    Enhancement/ Business Add-in            Description
    Enhancement
    IWO10012                                Maintenance order: Priority handling on central header
    Business Add-in
    IWO_UI_USEFLEX                          BAdI for Calling Up an Alternative UI
    No.of Exits:          1
    No.of BADis:          1
    Arunima

  • Table for Funds Center and Cost Center

    Hi,
    I need to know if there is any table that match Funds Center with Cost Center. Because I am doing an interface on SAP that takes the info of Cost Center, but needs some more info of the Funds Center to process.
    I have been looking but found nothing.
    I hope you can help me.
    Thanks
    Jocelyne Garibaldi

    Hi,
    try this table FM01KT for FUnds center
    or
    table FM01
    Prabhudas

  • No authorization check on Fund Center

    When creating a purchase requisition, the account assignment object was a real estate object. From the real estate object, the fund center was derived. Although I have restricted the user to post to only fund center FPMC001 through the authorization object (F_FICA_FTR), the user is still able to post to other fund centers if the RE object has been assigned to other fund centers. The user was given display access for all RE objects thru obj FI_WEI_BUK.
    Is there any way to resolved this? And I cannot restrict the access by RE object, cos my users are not grouped according to the business entities.

    You are right Mohammed,the only authorization object for this in P_TRAVL/F_TRAVL is for KOSTL  -see here
    http://help.sap.com/saphelp_47x200/helpdata/EN/b6/cda0db49e911d189060000e8322f96/frameset.htm
    I know in portal the function module for this is PTRM_WEB_WBS_ELEMENT_PRPMP which could be used to build an enhancment on the search help to restrict the WBS elements returned  but for PR05  - not so sure.
    Travel management deals only with costs; not with acitvities in the sense of COBL-LSTAR:
    COBL-BUKRS Company code
    COBL-GSBER Business area
    COBL-KOKRS Controlling area
    COBL-KOSTL Cost center
    COBL-AUFNR Order number
    COBL-KSTRG Cost object
    COBL-PS_PSP_PNR WBS element
    COBL-NPLNR Network number
    COBL-VORNR Operation number
    COBL-KDAUF Sales order number
    COBL-KDPOS Item number in sales order
    COBL-FIPOS Commitment item
    COBL-FISTL Funds center
    COBL-GEBER Fund
    There is a short wiki page on CO-PA profit segments in Travel too in case it helps
    http://wiki.sdn.sap.com/wiki/display/ERPHCM/UsingCO-PA%28profitabilitysegments%29inTravelManagement

Maybe you are looking for

  • Can you specify which SUP an SCCM client uses?

    Hi, I'm setting up clients in my company's domain to be managed by an existing SCCM 2012 R2 site in our parent company's domain.  There's a two way trust in place, and I've deployed a site server in my domain as an MP and SUP.  My clients are picking

  • How do I make a photo my desktop in iPhoto 9.2 Thanks

    Can anyone help with this - How to make a photo a desktop picture in iPhoto 9.2  Thanks

  • JSP, Web Layout, Tomcat

    Please help me with the next questions: 1)Oracle DB server and Oracle J2EE container are located in different places. The jsp in Oracle report web layout was generated. I put this JSP on the Oracle J2EE container and tried to run this jsp: http://loc

  • Conditonal text in tables

    I'm using X5 RoboHelp HTML. I have applied a CBT to a row in a table. The text disappears, as it should, but the empty table row is left behind. How can I get the table row to disappear? Thank you, Dawn

  • Entry point in Oracle DBA

    My name is James, and I am a resident of seattle WA. I am a software and hardware tester profesional both in manual and automation using windows and linux (but mostly software testing on windows platform) for the past 6 plus year. However, I am looki