Budget needs to be transfered from Main WBS to Sub WBS Element

HI,
Scenario:
Created a Project with Main WBS Element ( eg:0043-VI)and Budgeted on the same in CJ30.
Created a PO against 0043 -VI
Now i added two more WBS elements under 0043 -vi-st and 0043-vi-fn.
I want to allocate the budget on the sub wbs.Already Main WBS is assigned with some value.
Can any one suggest me how to transfer or use the sub WBS elements .
THANKS IN ADVANCE
BALU

Hello,
If there is some remaining budget after creating the commitment, you will be able to distribute it to the child WBS elements in CJ30.
The remaing budget can be calculated as "current budget" - "Assigned". The result can be distributed in CJ30.
Otherwise, you will need to suplement or increase the original budget for the parent WBS element as suggested.
Hope this helps
Rgds
Martina

Similar Messages

  • I have an excel spreadsheet that needs to be transferred from a PC computer to my imac.  I downloaded the numbers program, but when I transferred the spreadsheet using numbers, it didn't appear the same.  Do I need to buy the mac office software?

    I have an excel spreadsheet that needs to be transferred from a PC to my imac.  I downloaded the numbers app, but the spreadsheet isn't appearing like the original in the numbers program.  Drop boxes aren't working the same and things are moved around.  Will I need to now purchase the mac office software or will I still have the same problem?

    More compatible are OpenOffice or NeoOffice.  Also if you are using a PowerPC Mac you may not be able to use the most recent Office anyway.    Make sure the version of Office you get is compatible with your Mac.  PPC indicates PowerPC, which was only found on Macs early 2006 and older.  Go to Apple menu -> About This Mac to determine which CPU is on your Mac.  If it says G3, G4, or G5 it is PowerPC.  If it says Intel Core you can upgrade to Snow Leopard minimum and possibly the latest Office, if it says Intel Core2Duo (with the 2 in the middle)  or Core i with some number you may be able to upgrade to Lion, but certainly no trouble wiht the latest Office.

  • Material exchane ,copy pricing and conditions from main item to sub item.

    Hi All,
    We are using parts exchange/interchangeability in the transaction ME22N,
    While using ME22N we are exchanging  main item with interchangeable part and while doing so we want to copy pricing and conditions from main item to sub item.
    But its not happening.
    As per sap help its possible, details describe below.
    http://help.sap.com/erp2005_ehp_04/helpdata/en/c2/0a5288b77d11d3bcce00105ab03aee/content.htm
    Price Determination by Copying from Main Item
    In the case of price determination by copying from the main item, the net price of the originally ordered part is still used for the superseding part in a part exchange.
    The system copies all conditions from the main item to all sub-items and takes into account the order quantity for the main item when calculating scale prices. It does not take into account the conditions and scale prices that exist for the interchangeable part.
    You cannot change the conditions, which have been copied from the main item, at sub-item level. It is possible, however, to define additional conditions for each sub-item.
    Prerequisites
    A calculation schema, which can be altered on an individual basis in Customizing, has been supplied for the price determination.
    In the vendor master record, you have set the schema group 09 (interchangeable material).
    But in customizing I didnu2019t find value 09 for schema group .
    Can any buddy through some light on missing pieces which need to be set?
    Thanks
    Regards
    Ritesh

    Hi,
    Can you check few more things and tell me?
    - In this exit, does XVBPA and XVBAP contains all the line items. ( main and sub items ).
    - In Sales order creation time, do these table have VBELN populated when this exit triggers.
    - If you modify XVBPA or XVBAP in this exit, do they get overwritten after that.
    Try this code. See if it works.  Let me know if you still have a problem.
    DATA: wa_hvbpa LIKE vbpa,
          wa_xvbpa like vbpa.
    CLEAR: wa_hvbpa, wa_xvbpa.
    * check if HVBAP and VBAP line items are not same
    IF vbap-posnr <> hvbap-posnr.
    * read the ****-to partner from main-item
      READ TABLE xvbpa INTO wa_hvbpa WITH KEY posnr = hvbap-posnr
                                              parvw = 'WE'.
      IF sy-subrc = 0.
    *   read the line item data for sub-item based on main item
        READ TABLE xvbap WITH KEY posnr = vbap-posnr
                                  uepos = hvbap-posnr.
    * See if current line is the child of that BoM parent
        IF sy-subrc = 0.
          MOVE wa_xvbpa-kunnr TO xvbpa-kunnr.
          MOVE xvbap-vbeln TO wa_xvbpa-vbeln.
          MOVE xvbap-posnr TO wa_xvbpa-posnr.
          MOVE 'WE' TO wa_xvbpa-parvw.
          MODIFY vbpa FROM wa_xvbpa.
        ENDIF.
      ENDIF.
    ENDIF.
    Regards,
    RS

  • Passing values from main report to sub-reports

    - How do we pass values from main report to sub-report?

    Look at this link which shows how to pass values from a subreport to a main report.
    http://www.datamanagementgroup.com/resources/trainerstalk/trainerstalk_howto_share_subreport_data_with_main_report.asp
    You can use the same method to pass values from main report to a subreport.
    1) Create a formula @mainFormula in the main report, as given in item 1 of link.
    2) Place this formulla in a suppressed report footer section above the target subreport.
    3) In the subreport, create a formula @subFormula that declares the same variable name, as given in item 3 of link.
    4) Place @subFormula column in the subreport where you want to display it.

  • Revenue transferred  from one WBS to Another

    Hi ,
    Is any realationship exists to check the revenue transferred and realted information from one WBS to another.WBS ? The main criteria is -From WBS  to TO WBS  for revenue transfer?
    Thanks
    Anil Kumar

    CJI3 report with the field Partner Object should show you the sender and receiver WBS if revenues have been manually reposted.
    Regards
    Sreenivas

  • Copy down Ship-to Partner from main item to sub-items on Sales Order

    This is my first post on the forums here.  I'd appreciate any help you can give on my issue below.
    I have a requirement to copy down the ship-to partner from the main item to sub-items during sales order create or change.  Currently I have code in include MV45AFZB within user exit USEREXIT_FILL_VBAP_FROM_HVBAP as follows:
    <i>* Need to be able to copy the ship-to of a BoM parent down to the
    respective BoM children if the parent has a different ship-to
    from the header.
    data:  wa_xvbpa like vbpa.
    Clear: wa_xvbpa.
    read table xvbpa into wa_xvbpa with key posnr = hvbap-posnr
                                            parvw = 'WE'.
    A BoM parent line has a different ship-to from the header.
        if sy-subrc = 0.
          read table xvbap with key uepos = hvbap-posnr.
    See if current line is the child of that BoM parent
            If xvbap-uepos = hvbap-posnr.
              move wa_xvbpa-kunnr to xvbpa-kunnr.
              move xvbap-vbeln to wa_xvbpa-vbeln.
              move xvbap-posnr to wa_xvbpa-posnr.
              move 'WE' to wa_xvbpa-parvw.
              modify vbpa from wa_xvbpa.
            endif.
          Endif.</i>
    This isn't working for me.  At one point, I was able to copy the ship-to down to the first sub-item but not any subsequent ones.  I'm sure I need to add some code to another sales order user exit to get this to work, but I'm at a loss at this point.   Has anyone had to do this or something similar before? 
    Thanks very much in advance for your help.
    Angela

    Hi,
    Can you check few more things and tell me?
    - In this exit, does XVBPA and XVBAP contains all the line items. ( main and sub items ).
    - In Sales order creation time, do these table have VBELN populated when this exit triggers.
    - If you modify XVBPA or XVBAP in this exit, do they get overwritten after that.
    Try this code. See if it works.  Let me know if you still have a problem.
    DATA: wa_hvbpa LIKE vbpa,
          wa_xvbpa like vbpa.
    CLEAR: wa_hvbpa, wa_xvbpa.
    * check if HVBAP and VBAP line items are not same
    IF vbap-posnr <> hvbap-posnr.
    * read the ****-to partner from main-item
      READ TABLE xvbpa INTO wa_hvbpa WITH KEY posnr = hvbap-posnr
                                              parvw = 'WE'.
      IF sy-subrc = 0.
    *   read the line item data for sub-item based on main item
        READ TABLE xvbap WITH KEY posnr = vbap-posnr
                                  uepos = hvbap-posnr.
    * See if current line is the child of that BoM parent
        IF sy-subrc = 0.
          MOVE wa_xvbpa-kunnr TO xvbpa-kunnr.
          MOVE xvbap-vbeln TO wa_xvbpa-vbeln.
          MOVE xvbap-posnr TO wa_xvbpa-posnr.
          MOVE 'WE' TO wa_xvbpa-parvw.
          MODIFY vbpa FROM wa_xvbpa.
        ENDIF.
      ENDIF.
    ENDIF.
    Regards,
    RS

  • Removing the business area from the WBS element

    Hi Experts,
    I have created the WBS element with business area. Then created the PR against that WBS element , converted the PR's to PO's.
    Now I want to remove the business area from WBS element.
    Now as Business area field become grayed out hence I canot remove the Business area from WBS element.
    Hence I have cancelled the PO's then Cancelled the PR's. So now there is no actual cost & no commitment exists against the WBS element.
    But still Business area field is grayed out for that WBS element.
    Could you please let me know how to remove the business area in this case ???
    Regards,
    Pradip

    Hi,
    Once BA is grayed out then you can not change the same, this is sap std. behavior. Here you can lock the existing wbse which having wrong BA to avoid further actual postings.
    Create new wbse with correct BA & then create pr & po.
    Regards,
    Sandeep

  • Can't change an asset that originated from a WBS element that is now closed

    When we try to transfer or make a change to an asset that originated from a closed WBS element we receive the following error message. 
    System status CLSD is active (WBS CP-00000999-009-009)
    Thanks, Kevin

    When we remove the wbs element number under the "Account assignment for investment" heading, then we are able to perform the asset transferwithout reopening the wbs. We were wanting to use that field so that our auditors could see the wbs from which the asset was created. If we do not use that field, how can we trace an asset back to the originating wbs?
    Thanks,
    Kevin

  • (ABAP-FI)How to get project definition from agiven WBS element

    Hi,
    I have to update some columns of PRPS table relating to a WBS element.
    While using  BAPI_BUS2054_CHANGE_MULTI it wants project definition to be passed as an input parameter.
    Is there any means to know project definition for  a given WBS element of PRPS table.
    Thanks in advance.
    Regards,
    Sourya Prakash.

    Hi,
    why don't you display table PRPS in SE11 to see what fields you have there? It's not that hard to see that there is a field PRPS-PSPHI with description "Current number of the appropriate project". Yes, there is a link from WBS element to project definition.
    Cheers

  • Can Budget Availability Control be turned off at WBS elements Level?

    For Project and WBS elements, we activate the budget  availability control in the budget profile and assign the budget profile to the Project. So once we budget one WBS elements under that project and release the project, the availability control is active for all WBS elemens under this project.
    My question is whether we can turn off the availability control for one WBS element under that Project and let the availability control on for the other WBS elements under that project.
    thanks,
    Ting

    Hi,
    I doubt if this can happen. CJBW will deactivate avalability control for entire project. Try OPSX for that particular WBS, it will reset budgeted status. Not sure if this will help, try and confirm.
    One more way could be assigning userstatus to the WBS and restricting 'Availablity control' by that status. This option looks more practical.
    Regards
    Edited by: Shrikant Rakate on Sep 10, 2008 9:21 AM

  • Numbering from standard wbs elements

    Hello,
    where do I have to define that wbs elements in a  project which is created by a standard wbs get the new number from the operative project and not the number from the standard wbs?
    I cannot find such a setting in the project profile or something like this.
    When I create a project from a standard wbs all of the wbs elements keep the numbering from the standard wbs!
    Thank you.
    Timo
    Edited by: Timo Renz on May 25, 2010 9:22 AM

    Thank you for your answer Virendra.
    I know the screen to replace the numbering manually. But I have seen the same functionality automatically in the IDES system without the question to replace and now I am searching for this setting but I cannot find a difference in the project profile.
    Caused by the number of wbs elements it`s not possible to set the numbering of each wbs elements manually.
    Is there any other object I can define this setting?

  • How to find parent wbs element from child wbs element

    Hi ,
            I have a WBS element . How to find its parent WBS element . What should be the logic and table fields should i consider ? Please help me , its urgent.

    You can use the BAPI_PROJECT_GETINFO function module to get this info.
    The function is very well documented, and it looks like the table E_WBS_HIERARCHIE_TABLE should have the WBS heirarchy in it.
    Hope this helps.
    Sudha

  • Problem issueing material from one WBS element to another

    Hi Guys,   This is my first post so be kind.
    Our projects during their life cycle change their WBS element sub number.   Example New project starts with WBS element # E.7029.00.010  at some point in the project it moves on to the next level and the WBS element changes to E.7029.00.020  later in the project it will again change to E.7029.00.030.  Ok you get the idea.
    Now the problem.   When the project is at the .020 level we purchase inventory and recieve it into project inventory under the WBS elemement E.7029.00.020.
    Now the project has moved on to E.7029.00.030 and we want to create a production order to make a prototype.  The WBS element for the production order is E.7029.00.030  but the inventory is still under WBS element E.7029.00.020.  When we go to issue the material to the job it says there is none in inventory under WBS E.7029.00.030. Which is right it is all under E.7029.00.020. 
    Is there a way that we can store the inventory under E.7029.00 and be able to issue it to any sub group of E.7029.00 so that it would not matter if the current WBS is E.7029.00.020 , E.7029.00.030 or E.7029.00.050?
    Since our BOM's can be quite extensive and often contain a large number of new components this would be of great assistance.
    Thanks for your time and consideration.

    The project moves on to another stage.   During the development of new products the project goes through several stages before the new product is released for production and sales.   For example:
    Stage 10 - concept
    Stage 20 - initial design
    Stage 30 - design refinement
    Stage 40 - Bata testing
    Stage 50 - Final design
    Stage 60 - Production process design
    At each of stages 20 - 50 changes to the BOM can occur.  Material would be purchased at stage 20 and could continue to be used through the rest of the stages including after release to production.   But if the material is purchased during stage 20 then it sits in inventory under the WBS element ending in 020 but when the project moves on to the next stage the material will  be used to produce prototypes for stages 30 - 60 as long as the material is included in the BOM at that time.

  • How to pass control from main controller to sub controller?

    Hi Experts,
    I have created one controller named "available.do" by which I am calling a view "available.htm". On that view I am showing one Button which says Check Availability. On clicking of this button it shows another view "list.htm". But it is showing new view and old view on same page.
    Second I want to add one button on second view "list.htm" which should perform some function. I don't know how I can achieve this functionality?
    Someone has suggested me that for this I have to create sub controller...but i don't know much about it as I am new in BSP.
    Kindly tell me and paste code so that I can solve my both problems.
    <<Text removed>>
    Thanks in Anticipation,
    Virendra Kedia
    Edited by: Matt on Oct 15, 2011 7:25 AM

    Hi,
    I guess you might have below coding in DO_INIT method,
    me->view_main = 'main.htm'.   "Where VIEW_MAIN is the attribute in you main controller of type STRING.
    you should have below coding in DO_REQUEST of main controller.
    DATA: main TYPE REF TO if_bsp_page.
      me->dispatch_input( ).
    *Create main view.
      main = create_view( view_name = me->view_main ).
    *Set desgin attribute.
      main->set_attribute( name = 'design' value = application->design ).
    *Call main page views.
      call_view( main ).
    *Activate  Sub -controller.
      controller_set_active( controller_id = 'sub_cntrl' active = lc_active ). 
      l_cntl_inst ?= get_controller( controller_id = lv_cntl_id ).  "DATA: l_cntl_inst TYPE REF TO cl_bsp_controller.
    *Call sub-controller.
      call_controller( l_cntl_inst ).
    Please check with this.
    Thanks,
    Chandra

  • Footer needs to pull data from main table

    Hi Gurus,
    I need to have a footer which displays the value of a tag from the main table in BI publisher. The main table in the BI Publisher has the customer information and the address information of the customer needs to print on the footer of the page that displays the customer. This address would change for each customer. There must be a way to do this. I searched through the BI Publisher forum but couldnt find any way to do this. Could you pls help.
    Thanks,
    Swarna

    hi Paolyn,
    We can't insert data's from table using publisher desktop
    just double click on the footer part and added the data with the following format
    <?CUSTOMERNAME?>
    <?CUSTOMERNUMBER?>
    The tag value should be in upper case
    then close the footer and try that
    Thanks,

Maybe you are looking for

  • What do i do if my new tabs dont apear when i click the + or do the Ctrl+T?

    my tabs dont open anymore:( i keep clicking the lil' + on the side to open a new one and it doesnt work no more, i tried opening a file by clicking ctrl+T but that doesnt work either, i tried reinstaling firefox and it still doesnt work:( i even look

  • Nokia N8 (Belle) Operator Messages

    Hi. Before the software update from Anna to Belle I could setup my phone to receive operator messages like adding a 050 subscription which will display on the homescreen from which antenna the phone signal is received. I can't find this option to set

  • [JS] [CS3] UI Modal Dialog Layering

    I have a dialog with a list of objects, sort of object manager, with a typical New/Edit/Delete set of buttons. I'm showing this dialog modally. Now, the New/Edit buttons are supposed to open modal edit dialogs on top of this window. And they apparent

  • Data entry layout

    Hello all I have created a form (data entry layout) in BCS. I want to change the order of the objects in the rows (etc. i want "item" to come before "company"). How can i do it? Best Yuval

  • Stack protecion under Arch ?

    I found an article on the Internet here about stack protection testing, and found that Arch lack that feature.  I would like to know how easy or difficult stack protection can be added to Arch Linux, and if it's a good thing to have it, or a waste of