Budgeting on WBS in Project System

Hello every body,
Can u tell me, the procedure of the budget implemented in the WBS?
I am use the CJ30 t-code. Suppose the budget is exceeded at that time, I am change the overall budget. Still, when I am going to change the yearly budget it shows the error and it could not do the contract requisition. I think I may wrong.
What is its procedure?
How to transfer the budget one year to another year with step-by-step procedure?
How to settlement the project with step-by-step procedure?

Hi Asutosh,
The budget is the approved cost limit for a project.It differs from project cost planning due to its binding nature. Whereas the project costs need to be estimated as accurately as possible during the planning phase, the funds are predetermined as a budget in the approval phase. The budget is the limit set by management for project costs over a certain period of time.
Through transaction CJ30, you can change original Budget.But once approved by Management,you can not change it in CJ30 as and when your requirement gets changed.
Let us say initially you have got budget of Rs.1,50,000/- from Management for one WBS,then this amount will appear for particular WBS in CJ30. You can raise contract requisition against this WBS till max limit Rs.1,50,000/- only.
Suppose your contract value is going to exceed Rs.1,50,000/- , you can not  go and change amount for WBS in transaction CJ30.It is not allowed.You have to give justification for exceeding amount for this contract. Then management can approve you additional amount in the form of supplementary budget.
Similarly if you have got budget of Rs.1,50,000 and you are going to spend only Rs.1,25,000 in this year, then balance can be carried forward for next year.Same can be informed to Managment as well.
For transferring budget from one year to another year use transaction CJ34.
There is one more concept called Availability control.With this you can set up a tolerance limit.Let us say for your budgetted amount, you have put up tolerance limit of 90%, then you are allowed to raise contract requisition against WBS till 90% of total budgetted amount.If contract amount is going to exceed this limit, then system will give an error with the message "Budget not available".Then you have to get supplementary budget to fulfill this crietria.
Please refer the link below to know more about the procedure of Budget implementation
http://help.sap.com/saphelp_46c/helpdata/en/86/98853478616434e10000009b38f83b/frameset.htm- Go to topic Budget Management.
For Settlement of the project, you should define settlement rule for WBS element.Settlement rule will contain Distribution rule in the form of category,settlement receiver,perecentage allocation,amount.
Hope this will be helpful.
Regards
Tushar

Similar Messages

  • WBS element - Project System

    Hi
    Current project, MM integrated with PS .
    I need expert who involved MM – PS, please let me know the mail id and process.
    I need your help further lot of requirement and ideas from your end,
    Current requirement is :
    Is there any standard report for  Vendor , Material , Project and sorted by after delivery date.
    Want to see for specific vendor , what is WBS number and what are material brought.
    Pl let me know any reports available in SAP.
    waiting for your kind reponse..
    thnx in adv.
    Best regards
    Shiva.

    hi,
    thnx , i checked already but i am not able to find as per requirements,
    if PS consultant can easily find out this ........
    try it out..
    thnx
    best regards
    SK

  • Budgets by Month in  Project System.

    Is there a way to do budgets by month in PS? If yes, please let me know. Also can you plan by month on a WBS without using cost elements? Like in CJ40?
    Thanks in advance for your help.
    Eduard

    hi,
    i believe answer is no, you can't plan by period similar to CJ40. (but if later you discover how, please tell me).
    however, a workaround is to use CJR2.
    you can create a planning form with 12-month layout in columns so its easy to plan by period for each WBS.
    you still need cost element but you may create/use just a single cost element for this purpose only.
    the important thing is you have a means of easily planning per period (by column) -unlike the default CJR2 form where in you have to constantly change screens.
    for a guide on creating planning form with period layout see this blog by Mr. Sreenivas Kadiam
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/plm/projectSystem-ExcelbasedCostPlanning
    best regards

  • Changing Activity Elements  under the WBS in Project Systems

    I have added additional fields to the AFVU structure and need to update the fields.
    I created a sub-screen using enhancement CNEX0008. This subscreen contains my added fields.  I wanted to use tcode CN22 to perform the updates.
    When i record a BDC for Tcode CN22 to preform the update, I find the screen numbers change. I am trying to update the internal activity entries.  I can not see a pattern as to why this is happening so i thought i would look for a bapi to perform my updates. But i don't know how to use the bapi's to update my added fields. or which one to use.
    Can anyone give me ideas as to which way to go - and how?
    Please and Thanks,

    Hi,
    Use BAPI BAPI_INTERNALORDER_CREATE. To add custom field, you have to user the table EXTENSIONIN of this BAPI. But before that you will have to <b>extend AUFK using append structure CI_AUFK ( enhancement COOPA003 )</b>
    This what SAP says about this table.
    You can use this parameter to transfer user-defined fields from  order master records. However, no fields are supported that are updated in user-defined tables. Only the user-defined fields created within the framework of the SAP enhancement COOPA003 that are updated automatically in table AUFK are supported. This means you must use the table extension BAPI_TE_AUFK
    The enhancement COOPA_01 includes the function module EXIT_SAPLRKIO_001, in which checks of the user-defined fields can be implemented.
    The documentation to the structure BAPIPAREX that this parameter is based on contains more information about the use of this parameter.
    <b>This is how you populate this table.</b> Check this code
    DATA: gt_ci_aufk     LIKE bapi_te_aufk
                             OCCURS 0 WITH HEADER LINE.
    DATA: gt_extensionin LIKE bapiparex
                             OCCURS 0 WITH HEADER LINE.
    DATA: lst_ci_aufk LIKE ci_aufk.
    ** Five variables used to handle the structure length changes
    DATA: lv_length    TYPE i,
          lv_length1   TYPE i,
          lv_length2   TYPE i,
          lv_length3   TYPE i,
          lv_length4   TYPE i.
    FIELD-SYMBOLS <f> LIKE bapi_te_aufk.
    DESCRIBE FIELD <f> LENGTH lv_length.
    IF lv_length > 720.
      lv_length4 = lv_length - 720.
      lv_length3 = 240.
      lv_length2 = 240.
      lv_length1 = 240.
    ELSEIF lv_length > 480 AND lv_length <= 720.
      lv_length3 = lv_length - 480.
      lv_length2 = 240.
      lv_length1 = 240.
    ELSEIF lv_length > 240 AND lv_length <= 480.
      lv_length2 = lv_length - 240.
      lv_length1 = 240.
    ELSEIF lv_length <= 240.
      lv_length1 = lv_length.
    ENDIF.
    * move custom field
    lst_ci_aufk-field1 = 'field1 data'.
    lst_ci_aufk-field2 = 'field2 data'.
    lst_ci_aufk-field3 = 'field3 data'.
    lst_ci_aufk-field4 = 'field4 data'.
    * move order number
    gt_ci_aufk-orderid = 'iternal order no'. "In create node keep this blank
    * move custom fields
    MOVE-CORRESPONDING lst_ci_aufk TO gt_ci_aufk.
    * This is for the EXTENSIONIN (Custom fields structiure - CI_AUFK)
    LOOP AT gt_ci_aufk.
      gt_extensionin-structure = 'BAPI_TE_AUFK'.
      IF lv_length1 > 0.
        MOVE gt_ci_aufk+0(lv_length1)   TO gt_extensionin-valuepart1.
      ENDIF.
      IF lv_length2 > 0.
        MOVE gt_ci_aufk+240(lv_length2) TO gt_extensionin-valuepart2.
      ENDIF.
      IF lv_length3 > 0.
        MOVE gt_ci_aufk+480(lv_length3) TO gt_extensionin-valuepart3.
      ENDIF.
      IF lv_length4 > 0.
        MOVE gt_ci_aufk+720(lv_length4) TO gt_extensionin-valuepart4.
      ENDIF.
      APPEND  gt_extensionin.
    ENDLOOP.
    Let me know if you have any question.
    Regards,
    RS

  • Table for budget distribution undet project system.

    hi,
    do any one know the table for budget distribution under a project system?
    i need to get the data of budget assigned to a WBS level with the position ID, for a project. the transaction code to distribute the budget is by using transaction code - IM52.
    i posted this question in here before, but the answer i get is incorrect, as i need the table for budget under porject system. thanks

    Check these tables:
    PRPS  WBS (Work Breakdown Structure) Element Master Data
    IMPR  Investment Program Positions
    IMPS  Assignable Operative Objs for Capital Investment Positions
    IMAK  Appropriation requests - general data

  • WBS Elements not getting created in ECC Project System from CRM 7.0

    Dear all,
    We are trying to integrate SAP CRM 7.0 with SAP ECC-PS module. The objective is to bring in the marketing plan and elements data from the CRM system, and to create the corresponding WBS in project system. We have done most of the configuration as recommended by SAP in both the systems, and we see that the BDOCS are getting generated and sent to the ECC system. The following steps have been successfully completed:
    1.       Set up the RFC connections between the two systems
    2.       Selected the connection type as Middleware in CRM system.
    3.       Installed the cProject Add on in CRM box.
    4.       Created a project scenario (with project and network profiles) in the PS system and assigned the same in the CRM system.
    5.       The Project Scenario in PS config has the same name as the Project Type in CRM config.
    6.       Created and released the campaign ids being created in the CRM system.
    As already mentioned, we can see that the BDOCS are coming to the ECC system and are getting stored in BDOC_TRACK table. However the issue is that the corresponding WBS elements are not getting generated in the ECC system. Is there anything that that we are missing in the ECC box which would trigger the WBS element creation?
    Request you all to share your inputs which would be immensely beneficial for us in achieving this integration.
    Thanks and Kind Regards,
    Aditya Shrivastava

    Hello Aditya,
    We too are facing this issue.. if you have resolved the issue could you please let us know the solution ?
    Some inputs related to our system,
    We have upgrade from CRM 4.0 to CRM 7.0 SP07 and R/3 backend system is on 4.7 SP27, earlier we have completed the upgrade on sandbox without any issues which was upgrade to CRM 7.0 SP04 but with SP07 we are facing the problem of WBS Element not getting created in R/3.
    Your help is highly appreciated.
    Thanks & Regards,
    Sumukh Kapoor.

  • Project system Budget Needs to be Doubled

    Hi All,
    I am facing a issue in project system where we have to double our budget, if we need to run a settlement in the system.
    For a example, if we have a budget of 100,000 and that is allocated to TWO sub WBS Elements as 50,000 each and when we want to run the settlement run it informs us that the budget is exceeded. So if we need to get the settlement run we have to allocate additional budget to the main WBS Element. But when we checked all the Purchases for the respective WBS, we find that the budget is not exceeded, but the settlement is checking for budget again in the main WBS Element.
    This is the way our consultants have configured this and now they are no more in the company. Can any one ex-plane how we can fix this so that we don't need to allocate more budget to the main WBS Element.
    Regards
    Ruchendra

    Hi Ruchendra,
    Have you checked the settlement rule ..It might be receiver as higher level wbs-element in lower level wbs-element.
    For example:-
    You maintained two 2nd level wbs-element below 1st level wbs with 50000 budget each.
    Now you consumed budget and cost inc rued.
    Now while settlement this cost moves to higher level wbs-elemnt bcoz of settlement rule.
    Thats why it needs budget to cover up that cost.
    Check this ..It might help you.
    Thanks
    Rahul

  • Budget error in Project system

    Hi All,
    My overall budget is 100000 the project is been planned on the overall basis and not on annual basis
    my assigned value in tcode Cj30 is 98000 so i have only 2000 remaining But in information system tcode s_alr_87013558 it is showing me that mine assigned value is only 70000 and remaining is 30000 but however i could not make any purchase req or any services activity even though i have 30000.
    What is this Assigned Values is there any report for me to see this assigned values.
    The solution which i did is in tcode cjbw i have deactivated the availability control for the project. Now the 30000 which was available it is absorbing and my problem is now solved but now this available budget is also going in minus values how can i stop this.
    How Again can i Reactivate the availability control. In my budget profile (OPS9) i have put availability control status as 1 (activate at the time of budget allocation)
    ASSURED OF REWARD POINTS IF FIND USEFUL.
    Regards,
    Abraham

    Hi Vasudevan,
    I had checked the report cje3 ie as same as s_alr_87013558 so already i had menrtionred tht the assigned value fig in this reopport is totally differnt from that of cj30
    Even how can you create an purchase order on wbs element without entering the specification in project builder ie from where we can get the requistion and if requistion is not needed how can we directly create an purchase order without an requistion can u explain in details
    Second thing for this problem i had deactivated the availability Control by code cjbw now i am facing problem for again to activate it i had tried T code CJBN and CJBV
    Regards,
    Abraham.S

  • Project System Cash Management in combination with statistical WBS element

    Hi,
    within  a customer project, we have to solve the following issue:
    Customer runs projects and statistical projects in combination with internal orders.
    We want to use the PS Cash Management for planned and actual payments.
    With statistical projects we have the following problem:
    Invoice and actual payments will be processed with the transaction CJFN.
    Actual payments are shown only on the internal order (transaction CJIA), but not on the statistical WBS element.
    We want the information about the actual payments with in the project system reporting (S_ALR_87013574).
    Projects, not flagged as statistical will deliver the expected results.
    Many thanks for your ideas, to solve this problem.
    Steffen

    are u posting to some other cost object also. normally they wud have to be posted to a COPA also with the cost element being 11 category.
    the wbs will receive the statistical posting, so there needs to be a real object also.
    see whether the real object is getting derived.
    the system is nt finding the real object and trying to post with the WBS in real, but since its statistical, the error.
    any other calrifications. plz post.
    regards
    anantha

  • Project system - Budget

    Hi
    We have activated Project system at our end.
    We are maintaining Budget at cost element level in project system.
    we required to maintained in at both cost element and material level which we have given with example wise
    Can any body help in the same -- Please guide us
    Example
    If initial we procure Material A - in 2005 at the rate of Rs.500/-
    per kg and quantity required for the project is 200 KG
    Accordingly we maintained the budget for the same for Cost element for Rs. 100000/-.
    If during the execution stage the cost went up to Rs. 700/- Per kg. say in year 2006.  and we raise a purchase order for 142 KG where the budget will get  exhusted. but we can not able to put the trace on quantity wise budget tracking.
    I Do agree that value wise we can put the track but i required it to maintained t quantity wise also.
    Please guide us in the same issue.
    Points will be awarded.
    Thanks & Regards
    Mahesh

    Hi,
    Good afternoon and greetings,
    Wishing you a very Happy New Year 2007
    Please go through the following OSS Note
    Note 167405 - Totaling up zero values not possible
    Please reward points if found useful
    Thanking you
    With kindest regards
    Ramesh Padmanabhan

  • Project system budget error.

    hi all,
    this my query against budget error in project system in tcode sap_alr_87013558 i am finding that my budget is for 11100000, actual is 8116942,commitment is 511355,remord plan is 9597403,and available is 1502597 .
    please note that even i am having the budget i could not make a requistion for 44000. plase help me out.
    Regards ,
    Abraham

    hi Paul,
    My overall budget is 100000 the project is been  planned  on the overall basis and not on annual basis
    my assigned value in tcode Cj30 is 98000 so i have only 2000 remaining But in information system tcode s_alr_87013558 it is showing me that mine assigned value is only 70000 and remaining is 30000 but however  i  could not make any purchase req or any services activity even though i have 30000.
    What is this Assigned Values is there any report for me to see this assigned values.
    The solution which i did is in tcode cjbw i have deactivated the availability control for the project. Now the 30000 which was available it is absorbing and my problem is now solved but now this available budget is also going in minus values how can i stop this.
    How Again can i Reactivate the availability control. In my budget profile (OPS9) i have put availability control status as 1 (activate at the time of budget allocation)
    And also can u give me the ps community name.
    Regards,
    Abraham

  • Project system budget erro

    hi all,
    this my query against budget error in project system in tcode sap_alr_87013558 i am finding that my budget is for 11100000, actual is 8116942,commitment is 511355,remord plan is 9597403,and available is 1502597 .
    please note that even i am having the budget i could not make a requistion for 44000. plase help me out.
    Regards ,
    Abraham

    Hi,
    Good afternoon and greetings,
    Wishing you a very Happy New Year 2007
    Please go through the following OSS Note
    Note 167405 - Totaling up zero values not possible
    Please reward points if found useful
    Thanking you
    With kindest regards
    Ramesh Padmanabhan

  • Urgent - Business Object for Original Budget in Project Systems

    Hi,
      I am working on a workflow for original budget release in Project Systems.The transactions used are CJ30 (Original budget creation) CJ32( Budget release).
      I have to send a workitem fo release the original budget for a user. But I am not able to find out any business object relevant to Budget.
    Can any one helo me in this...????
    Thanx,
    Sivagami.R

    Hi,
    I have tried that option already. But I could not find any.
    Any update????
    Thanx,
    Sivagami.R

  • Budgets in projects system

    dear ps experts,
    wud like to know in any report of S_ALR*
    to know the budget updates in a project
    1. first cj30 & cj32
    2, later after some time cj36 & cj32
    wud like to know which report shows that cj30 & cj32  history
    and when cj36 & cj32 history.
    because every update at cj30,cj32,cj36,cj37,cj34 there is document created in sap, how to view these details as &when required
    thanx in advance
    regards
    srihari
    ps : s_alr_87013560 is of now use for my requirement

    Hi,
    When you go into CJ3B, it asks you for the document number. Then press F4, this will take you to another screen. Here you have a facility of entering the WBS element. Enter the Top Level WBSE of the project for which you want to see the detail. Then it will show the list of documents generated for that project.
    Hope this solves your issue.
    regards
    Pratap.V

  • Project system: Budget exceeded issue.

    Dear Sir or Madam,
    This issue is related to project system.  We have overall budget and annual budget.  If annual budget in a year is exhausted is it possible to make the system look at overall budget since there are sufficient funds in overall budget. 
    Thanks
    Joseph

    Hello Joseph,
    Unfortunately not. You may however change the assigned budget profile so that the overall budget is
    checked (transaction OPS9->tab "Availability Control->flag the field "overall") and rebuild availability control of the project in transaction CJBN afterwards.
    But there is definitely no "combination" of both possible.
    Greetings
    Florian

Maybe you are looking for

  • Cannot Update Apps After iOS 8 Upgrade

         Ever since I updated to iOS 8 I've been having issues updating my apps through the App Store app on my iPad 3rd gen. Even though I'm logged in and slect Update All, the apps won't update. On the home screen each app to be updated will be faded a

  • [JS CS3] Tab Stops in Table

    Below is a function that would delete all existing tab stops in a column and the add a new tab stop. function TabStopper (myPosition, xx){ myTable.columns.item(xx).cells.everyItem().texts[0].tabStops.everyItem().remove(); myTable.columns.item(xx).cel

  • TV went black..

    It is less than 2 years old, and today the screen went black.  I still have audio.  Is it dead? It's a model 26av502u.  26 inch LCD. Solved! Go to Solution.

  • PR's are raised for components(PM2 Secondary Packing) are not in BOM

    Dear Gurus It was found that PR's are raised for components(PM2 Secondary Packing) are not in BOM after MRP run. In MRP4 view of the material (Material type  ZVER  Primary Packaging material) i found that : <u>SLoc MRP indicator#       </u>          

  • Problem connecting Macbook Pro with WRT160n wireless

    My roommate and I recently got WRT160n, and she has a PC and her connection was fine. But for my Macbook, whenever I try to connect to the network and put in my password (the one that I set up) it says that the password is incorrect. I'm not sure wha