Total Budget Value

Hello,
i have the following question:
In the Tabsheet "Financial Overview" in xRPM there are the fields "total budget" and "yearly budget".
I entered a value with cj30 for a project in the ERP System. With the Report RPM_FIN02 this value is transferred to the Table RPM_FIDATA in xRPM with the correct valtype "41". I expected that with Report /RPM/FIN_PLAN_INT the field "total budget" will be filled with this value, but nothing happens.
Can somebody tell me, how i can fill the budget fields??
I also found the Report RPM_UPDFI01which describes in its header, that it will update the budgets, but nothing happens. Is this an old Report for xRPM 2.0 ???
best Regards
Helmut Wenzler

Helmut,
I am not sure, but I think that you can try defining a financial view for budget that maps to the budget amount.
Once done, run the report /RPM/FIN_PLAN_INT and then view the fields in the item.
As per note Note 1054368 ,
Budget Cost  = Sum Of {Financial View (Budget Cost)
Give it a try and let me know your results.
Regards,
Vivek Pandey

Similar Messages

  • Total budget 0.00 EUR in order 12412100 is less than the cumulative bud

    Dear  Sir,
    In t.code KO22 it gives error while saving amount in original budget field for 2008,
    "The total budget 0.00 EUR in order 15210080 is less than the cumulative budget 2.16 EUR.
    The cumulative budget is the total of the annual budgets."
    Can you pls guide.
    Thanks
    Edited by: Mukherjee S on Mar 31, 2008 1:47 PM

    You might have distirbuted the values  (2.16 EUR) over years. In this case you need to enter the value in Overall Budget also.
    Regards
    Sreenivas

  • Report Internal Order needed - showing Plan and Budget Values?

    Hello,
    I want to create a report (Report Writer/Painter) which shows for example in one column the planned values and in another column the budget value of an order group.
    I know the standard reports S_ALR_87012993 - Orders: Actual/Plan/Variance and the other standard report S_ALR_87013019 - List: Budget/Actual/Commitments.
    My question: Is it possible at all to have these both values plan and budget by order/order group in one report? - Or it is not possbile because these values are stored in different tables and different libraries?
    If it is possible with Report Writer, I would be very glad - if not, is there any other chance (e.g. individual programmed report)?
    For any comments or hints thank you in advance.
    Regards,
    VCG

    HI,
    both are report painter reports for libraries 6O1 and 6O2 which are based on reporting tables CCSS and RWCOOM.
    Try to find all value fields that you need in 6O2 / RWCOOM as this is the "big brother" of 6O1/ CCSS.
    Best regards, Christian

  • Total Settlement Value field  not getting populated in IW38  Transaction

    Dear all PMCS group Members,
    I have a list of  Maintenance Orders on which  Actual Costs are posted and also periodic settlements done before TECO.  When i list these Maintenance Orders in IW38 transaction the system is bringing in the values in  Total Actual Costs column  but  not the Settlement values in Total settlement column which i need to cross check before i do mass TECO. 
    Your help will be greatly appreciated.
    regards,
    rajaraman.

    Dear Rajaraman,
    You can see the Total Settlement values by using tcode IW38.
    ---> Goto IW38
    ---> Execute the Report for selected Orders
    ---> Click on the Current Tab or Press CTRL+F8
    ---> Select the Column of Total Settlements and Actual Settlements
    ---> Click on the Save Button... it will ask you to enter the Layout... Enter it and hit Enter
    Your Required Fields will be Displayed.
    Regards
    BK

  • Total order value (net) per PO with ME2N (Purchase order List display)

    Hello,
    with ME2N I can see the order value (net) of a PO per item line. Is it also possible to see the the total order value for all item lines in a PO?
    Thanks for coming back to me!
    Sofia

    hi in standard reports that is not possible
    But you can opt for filter in PO no. feild and go for an specific PO and press enter it will show all the line item of that PO then you can apply the Total of all Po line items in net price feild
    Or even while running the report you can go for specific PO no and then execute the report.
    Hope this helps
    Else need to devlop an Z report with help of ABAPER
    Try with the table EKPO and feild RLWRT
    He can solve your purpose
    Regards
    Sujoy
    Edited by: SUJOY on Sep 22, 2008 2:39 PM

  • Total Amount value not displaying while executing print progrm for PO form.

    Hi All,
               I created the PO form, for this i written a print program.After executing this print program everything s displaying & populating, but only the Total Amount  not displaying r not populating.
              But, if i run the PO n tcode ME23N the Total Amount is displaying, after assigning the form n NACE.
    So help me to get the Total Amount to be displayed n main window, while executing the print program.
    Like this i declared n smartform,                    Total net value excl. tax           &is_ekko-waers& &is_pekko-netwr&......
    The print program as follows,
    report zpo.
    tables: ekko,pekko,ekpo,ekpa,eket,ekkn,ekek,komk,nast.
    data: fm_name type rs38l_fnam.
    data: is_ekko type standard table of ekko with header line.
    data: is_pekko type pekko occurs 0 with header line.
    data: it_ekpa like standard table of ekpa,
          it_ekpo like standard table of ekpo,
          it_pekpo like standard table of pekpo,
          it_eket like standard table of eket,
          it_tkomv like standard table of komv,
          it_ekkn like standard table of ekkn,
          it_ekek like standard table of ekek,
          it_komk like standard table of komk.
    selection-screen: begin of block b1 with frame title text-001.
      parameters: pr_ebeln like ekpo-ebeln obligatory.
    selection-screen: end of block b1.
    select * from ekpo into table it_ekpo where ebeln = pr_ebeln.
    select * from ekko into is_ekko where ebeln = pr_ebeln.
    endselect.

    code as follows,
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        FORMNAME                 = 'ZPURCHASE'
    *   VARIANT                  = ' '
    *   DIRECT_CALL              = ' '
    IMPORTING
        FM_NAME                  = fm_name
    CALL FUNCTION fm_name  "'/1BCDWB/SF00000060'
      EXPORTING
    *   ARCHIVE_INDEX              =
    *   ARCHIVE_INDEX_TAB          =
    *   ARCHIVE_PARAMETERS         =
    *   CONTROL_PARAMETERS         =
    *   MAIL_APPL_OBJ              =
    *   MAIL_RECIPIENT             =
    *   MAIL_SENDER                =
    *   OUTPUT_OPTIONS             =
    *   USER_SETTINGS              = 'X'
        IS_EKKO                    = is_ekko
        IS_PEKKO                   = is_pekko
    *   IS_NAST                    =
    *   IV_FROM_MEM                =
    *   IV_DRUVO                   =
    * IMPORTING
    *   DOCUMENT_OUTPUT_INFO       =
    *   JOB_OUTPUT_INFO            =
    *   JOB_OUTPUT_OPTIONS         =
      TABLES
           it_ekpo                   = it_ekpo
           it_pekpo                  = it_pekpo
           it_ekkn                   = it_ekkn
           it_ekpa                   = it_ekpa
           it_ekek                   = it_ekek
           it_komk                   = it_komk
           it_eket                   = it_eket
           it_tkomv                  = it_tkomv.
    * EXCEPTIONS
    *   FORMATTING_ERROR           = 1
    *   INTERNAL_ERROR             = 2
    *   SEND_ERROR                 = 3
    *   USER_CANCELED              = 4
    *   OTHERS                     = 5
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • GL account balance not matching with the total stock value

    Hi,
    The GL account balance is not matching with the total stock value in report RM07MBSTfor stock in transit, Can anyone please let me know, where should, I look into to verify the reason for difference.
    Quick response will be appreciated.
    Thanks & Regards

    I am able to solve this issue. My client has a customized report, which helped me to look into the details of stock in tranisit account. Stock in transit account actually include PPV and TPV alongwith standard cost.

  • In PO printout, how to add a customs also included in the total PO Value?

    Hi all,
                  In PO Printout customs value is not included in total PO value. But it's showing in the customs row, for ex. matrl value 100, customs 20. both are showing in PO Print out. But in PO Print out total value only matrl value is showing(100 not 120). how to correct it. where i have to do settings? can anyone help me in this regard.Thanks in advance.
    Pradeesh

    Pls check the Pricing Calculation schema settings.
    Regards
    TGB

  • How to copy total freight value from pricing procedure to TAXINN procedure

    Dear Experts,
    I want to copy the total freight value from pricing procedure to TAXINN procedure , i think i have to use SUBROUTINE for that but can you guide me what is the routine number and in which coloum i i have to use e.g. requirement, or ALt CAl Typ, or cond Base value ???
    e.g.
    freight condition type (QTY , freight) will enter manually e.g. 100 Rs and material qty 4 so total freight is 400 Rs this value (400 Rs) i want to copy from Pricing procedure to TAXINN
    How can achieve this ????
    Thanks and regards
    Hanumant Nimbalkar

    Hello,
    If you want to calculate VAT above Freight, then in Pricing procedure make the Sub total as blank for Freight confition types.
    And in Tax procedure, make the condition base value as 363 for VAT condition type.
    Make the tax code for 4 % VAT and u'll get the desired result.
    This will solve ur purpose.
    Regards
    Prabhjot Singh Nayyar

  • Vendor Down Payment should not exceed Total PO Value

    Dear All,
    We want to restric the Vendor Down payment to total PO value and system must not allow to post the Down payment more that Total PO value.
    Eg.
    Material value - 1000
    Tax                     100
    Other charges    150
    Total PO Value - 1250/-
    Now when we make down payment to the above vendor against the PO,the system must not allow us to make down payment more then 1250/-.
    Do suggest.
    Regards,

    Hi,
    You need to write validation rule & user exit for checking PO amount with down payment.
    Whenever you post a down payment with reference to PO, in PO header, there is a status tab where you can check the status of PO i.e down pymt made, GR done etc., so write a user exit on that basis.
    Regards
    Anuj

  • Single project report for Plan values, Budget values,commitments & actual

    Hi experts,
    Highly appreciated if any experts can let me know report which can be used to view Plan values, Budget values , commitments & actual values for each and every WBS levels for given project.
    I need one report to view all mentioned fields.
    Kind regards,
    Sam Lesha.

    Dear Amit,
    TX lot for your helpful  quick answer, I checked the report, it's fine and i need to clear one more thing .
    when i select Std profile as PS infor profile there i could find plan version 0 & 1. would it be  pssible to know how i can add one more plan versions to this.
    Tx in advance,
    Reg,
    Sam Lesha

  • Total Net Value is picking automatically into one G/l a/c in posting time

    Hi to all,
    i have one critical issuse ,
    here i am doing  new pricing procedure in that i put 4 condition types
    80          ZLLU     Actual user price                                        ERL
    850                       Sub Total                      80         849
    860          ZTCS     Tax collection              850                                   ZTS
    872          ZOT1     Other charges 1                                        ZPK
    880                        Grand Total              850     879
    946          ZGPS     Price+ Tax + other      880                                   ZTS
    955                       Total                       945     954
    PR00       ERL
    ZTCS      ZTS
    ZOT1      ZPK
    ZGPS      ERL for this 4 account keys i have assigned different G/L A/C's but while posting into account's. Total net value of billing is hitting into one G/l A/c (that is ERL). it is not hitting into different G/l A/c's
    how it is possible can any clear by issuse ASAP
    REgards
    Murali

    Hi,
    Check Price procedure which key's assign to each condition.
    Check/Carry out configuration in t-code VKOA.
    ELSE,
    Go to VF02, put invoice number
    Environment >>> Account determination analysis >>> Revenue account,
    Here u will get detailed analysis, which condition is hitting proper G/L.
    Kapil

  • Table for Planned cost & Budgeted value with WBS

    Hi,
    Which is the table where we can get WBS description & planned cost in PS?
    and any other table or report where we can see the comparison & see the balance of planned cost value and budget value
    thanks & regards,

    Hi,
    You mean to say in CJ40 not in CJ30.
    Step 1: Go to PRPS Table and enter the WBSE and get the OBJNR no.
    Step 2:Pass the OBJNR in RPSCO and you can get the planned cost value.Note WRTTP should be 1.
    Muzamil

  • Total ordered value for PO

    HI All,
    Is there any standard report to check total ordered value for PO.
    I checked in ME80AN but its not giving excise value. I need Base + Excise + VAT / CST. (Total Net order value per PO)
    Please suggest.
    Regards
    Mahesh M J

    Dear Mahesh,
    ME81N - Anlysis of order values     -  By Material / By buyer /  By supplier           
                      Totals analysis - ABC analysis  -Analysis using comparison period - Frequency analysis
    Regards
    Anand

  • Load the Budget value at cost center level only

    Hello All,
    Can we load the budget value at the cost center level only with out using cost element . I have seen that we can from actual to budget in Kp98 at the cost Center level.
    Thanks ,
    Krishna

    Hi
    There is a work around...
    You can create one Statistical IO for each cost center and upload your budget in it...
    Keep the same nomenclature for IO as the Cost center i.e. If cost center name is 123456, have the same name for IO as well
    In Substitution OKC9, you can use a Field to Field Mapping and populate same IO as the Cost center no in the posting or you can also use exit RGGBS000
    br, Ajay M

Maybe you are looking for

  • Apple Care works? For me don't

    Apple Care is not working for me. I call then and they are saying that they can't unfortunately resolve my problem. I have an Imac 21.7 and it's with an yellow mark behing the glass of the monitor. I bought the computer on agost 20th, and they are sa

  • Best practice for statistic collection in 10gR2

    Hello, In Oracle 9i, I had to run every day scripts to calculate statistics. But in Oracle 10gR2, the collection of statistics has become automatic...I would like some feebback from your experience: 1/ Does it work well? 2/ Do I still need to run my

  • When would it be wise to buy a macbook pro retina

    i would like to know when would be a good time to buy a macbook pro I have one already and was wondering when the newer models will be in stores and perhaps some idea of what chip set along w/ other specs they might be using. I like the all flash mem

  • On Advance & Invoice Reverse Charge Mecanism in SAP

    Reverse Charge Mechanism is to be Calculated on advance or  Invoice which ever is Earlier. then how the RCM Calculated on Advance is to be reversed if we calculate again RCM on total amount on Invoice

  • AppleMail Sent not saved

    It appears (to me) that AppleMail no longer saves Sent email "on my Mac."  Instead, this seems to be limited entirely to what is saved on iClod. It is very important (to me) that my Sent messages ALL be saved to my Mac so that space limitation on iCl