Commitments Market vs Plan Rates

Currently Purchase Requision and Purchase Order Commitments are expressed on controlling area currency by applying the M (or market) rate to the object currency.  We would like commitments to use the P-rate for currency conversion.  Both rates are defined in table OB08.  How do we do this?  Is it done by configuration?  If so, where is the config?

Well, you have to balance risk and benefit. A higher salary risks that you won't get the salary job and will have to stay with the hourly, but the benefit could be, obviously, a higher salary. A lower salary request clearly risks getting less money, but the benefit is a greater certainty of getting the job. So you have to consider your preferences for the two jobs, plus whether you prefer hourly or salary.
If it isn't clear by now, there's a very limited amount of advice anyone can give you. :-)

Similar Messages

  • Translating at Prior Year and Plan Rates

    I have a rule with a few accounts that are populated by values out of the P&L rollup. Here is an example: in my Calculate Sub, I have:
    If pov_TransCur = False then          
    HS.Exp "A#NetSales_PYRates=A#NetSales.I#[ICP Top]"
    End If
    Where pov_TransCur = HS.Value.IsTransCur
    And in my Sub Translate, I have:
    PY_Avg_Rate = HS.GetRate("A#AverageRate.Y#Prior")
    HS.Clear"A#NetSales_PYRates"
    HS.TransPeriodic "A#NetSales_PYRates","",PY_Avg_Rate,""
    The Results in my Child Entity are:
    Entity Currency USD
    Net Sales 7.194 Mill. 7.203 Mill
    NetSales_PYRates 7.194 Mill. 6.144 Mill.
    Which is Great, that is what I want.
    However at the Parent Level I get:
    Entity Currency USD
    Net Sales 7.203 Mill. 7.203 Mill
    NetSales_PYRates 7.203 Mill. 7.203 Mill.
    I need to see the 6.144 Million in USD in the NetSales_PYRates accounts , the other child entities don't have any data.
    Any ideas in how to correct this issue?
    Thanks in advance

    Wow, it took me a while to set this reply, I was stuck on Rich Text format, and I did not have a box for the body of the message. Anyway, thanks; however, I keep getting the same results. My rules are quite simple, in the calculate sub routine I only have the population of Beginning Balances for Rollforward accounts, plus these Prior Year and Plan Rate accounts. While there is more than just the net sales account, there is nothing else in it. Here is What I have
    If HS.Entity.IsBase("", "") = True And HS.Value.Member() = "<Entity Currency>" Then
              HS.Exp "A#NetSales_PYRates=A#NetSales.I#[ICP Top]"
              HS.Exp "A#Material_PYRates=A#CosMat+A#DirMatVar"
              HS.Exp "A#DirLabor_PYRates=A#CosLabor+A#DirLaborVar"
              HS.Exp "A#FactoryOH_PYRates=A#CosOH+A#Manufacturing"
              HS.Exp "A#OthCostOps_PYRates=A#OtherCostOfOps"
              HS.Exp "A#InvProv_PYRates=A#ShrinkProv+A#ObsolProv+A#LIFOFIFOProv"
              HS.Exp "A#ShipHand_PYRates=A#ShipHand"
              HS.Exp "A#Engin_PYRates=A#Engineering"
              HS.Exp "A#Sell_PYRates=A#Selling"
              HS.Exp "A#Admin_PYRates=A#Admin"
              HS.Exp "A#GLSPPE_PYRates=A#GainLossSalePPE"
              HS.Exp "A#MiscIncExp_PYRates=A#MiscIncExp"
              HS.Exp "A#ONon_PYRates=A#NonOpIncExp-A#GainLossSalePPE-A#MiscIncExp"
              HS.Exp "A#NetSales_PLRates=A#NetSales.I#[ICP Top]"
              HS.Exp "A#Material_PLRates=A#CosMat+A#DirMatVar"
              HS.Exp "A#DirLabor_PLRates=A#CosLabor+A#DirLaborVar"
              HS.Exp "A#FactoryOH_PLRates=A#CosOH+A#Manufacturing"
              HS.Exp "A#OthCostOps_PLRates=A#OtherCostOfOps"
              HS.Exp "A#InvProv_PLRates=A#ShrinkProv+A#ObsolProv+A#LIFOFIFOProv"
              HS.Exp "A#ShipHand_PLRates=A#ShipHand"
              HS.Exp "A#Engin_PLRates=A#Engineering"
              HS.Exp "A#Sell_PLRates=A#Selling"
              HS.Exp "A#Admin_PLRates=A#Admin"
              HS.Exp "A#GLSPPE_PLRates=A#GainLossSalePPE"
              HS.Exp "A#MiscIncExp_PLRates=A#MiscIncExp"
              HS.Exp "A#ONon_PLRates=A#NonOpIncExp-A#GainLossSalePPE-A#MiscIncExp"
    End If
    End Sub
    and for the Translate Sub I have:
    Sub Translate ()
    Plan_Avg_Rate = HS.GetRate("A#AverageRate.S#Plan")
    PY_Avg_Rate = HS.GetRate("A#AverageRate.Y#Prior")
    'HS.Clear"A#NetSales_PYRates"
    HS.TransPeriodic "A#NetSales_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#Material_PYRates"
    HS.TransPeriodic"A#Material_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#DirLabor_PYRates"
    HS.TransPeriodic"A#DirLabor_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#FactoryOH_PYRates"
    HS.TransPeriodic"A#FactoryOH_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#OthCostOps_PYRates"
    HS.TransPeriodic"A#OthCostOps_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#InvProv_PYRates"
    HS.TransPeriodic"A#InvProv_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#ShipHand_PYRates"
    HS.TransPeriodic"A#ShipHand_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#Engin_PYRates"
    HS.TransPeriodic"A#Engin_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#Sell_PYRates"
    HS.TransPeriodic"A#Sell_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#Admin_PYRates"
    HS.TransPeriodic"A#Admin_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#GLSPPE_PYRates"
    HS.TransPeriodic"A#GLSPPE_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#MiscIncExp_PYRates"
    HS.TransPeriodic"A#MiscIncExp_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#ONon_PYRates"
    HS.TransPeriodic"A#ONon_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#NetSales_PLRates"
    HS.TransPeriodic"A#NetSales_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#Material_PLRates"
    HS.TransPeriodic"A#Material_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#DirLabor_PLRates"
    HS.TransPeriodic"A#DirLabor_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#FactoryOH_PLRates"
    HS.TransPeriodic"A#FactoryOH_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#OthCostOps_PLRates"
    HS.TransPeriodic"A#OthCostOps_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#InvProv_PLRates"
    HS.TransPeriodic"A#InvProv_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#ShipHand_PLRates"
    HS.TransPeriodic"A#ShipHand_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#Engin_PLRates"
    HS.TransPeriodic"A#Engin_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#Sell_PLRates"
    HS.TransPeriodic"A#Sell_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#Admin_PLRates"
    HS.TransPeriodic"A#Admin_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#GLSPPE_PLRates"
    HS.TransPeriodic"A#GLSPPE_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#MiscIncExp_PLRates"
    HS.TransPeriodic"A#MiscIncExp_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#ONon_PLRates"
    HS.TransPeriodic"A#ONon_PLRates","",Plan_Avg_Rate,""
    End Sub
    There is nothing in here that can cause the results I have. I don't understand why yours will work and my won't, but I will keep looking for a solution.

  • About those new data plan rates......

    not sure how accurate this is since it only cites droidlife and doesn't appear to have got any of the info directly from verizon, so take it as you will:
    http://www.huffingtonpost.com/2011/06/21/verizon-unlimited-data-plan_n_881091.html

    PJNC284 wrote:
    They really should fire whoever came up with that pricing scheme.  Really doesn't make sense to have the cheapest tier at $30 for 2GB when they claim most people use much less than that.  Oh well, the QOS better increase substantially or they're going to have even more unhappy customers
    They did release some good news today though. 
    http://news.vzw.com/news/2011/06/pr2011-06-21k.html
    06/21/2011
    RALEIGH, NC — Verizon Wireless announced today it is turning on the world’s first large-scale 4G LTE (Fourth Generation, Long Term Evolution) Network in Raleigh-Durham, N.C. on July 21, 2011. Verizon Wireless’ 4G LTE Mobile Broadband network is the fastest and most advanced 4G network in America.
    The deployment of Verizon Wireless’ 4G LTE in Raleigh-Durham, N.C. also provides LTE coverage throughout the surrounding areas of Cary, Apex, Clayton, Morrisville, Chapel Hill, Carrboro, Gorman, Wake Forest, Rolesville, Knightdale, Wendell, Holly Springs, Fuquay-Varina, Garner and Smithfield.
    congrats pjnc! 20mbps is pretty nice!!! 
    as far as the pricing goes (if this is even accurate), my guess is that they have figured out that $30/month is an acceptable minimum plan. i rarely us even close to 2gb's and would love to have a $20 plan for up to 1gb.....but they tried the $10 plan with media phones a couple years ago and then did those promotional $15 plans over the past holiday season. i suspect that they figured out that daily users of data are fine with $30 and that people that only pull email once in a while or download a game on a media phone will just pay the few bucks per month it costs to do those sorts of things. apps are getting bigger and the amount of data being consumed has drastically increased in the past year. i suspect that 2 years from now (i believe the average customer always signs the 2 year contract) 2gb's wont seem like much and we will all likely be using that much data???

  • Re: marketing plan and campaign element

    Hi Dipesh
    Iam facing somewhat similar issue.
    My requirement is that everytime i want to create a new number for the campaign element. We are using the BAdi CRM_MKTPL to generate the Marketing/Campaign Plan number. And using the Coding Mask to generate the campaign elements. But when we delete some campaign elements and create new ones, the system used the same Ids that are previously deleted. I want only new number to be generated, i do not want to use the deleted Ids.
    How to solve this issue? Please suggest me some solution.
    Thanks,
    Raju

    Hi Rajesh,
    This is happening b'cos the Marketing Projects (Plans, campaigns and elements) which u r trying to upload are with same name (External ID) which u have deleted, try either (Rename)change the name of u r marketing Projects while uploding in system.
    System error : The external ID is already used in the description of another marketing project. To avoid data inconsistencies in SAP BW, the external ID cannot be reused.
    Regards,
    Dipesh.

  • Marketing Plan

    Hi Experts,
    Is it possible to replicate the pricing from a marketing plan or campaign from CRM to R/3 for a sale deal?  I really need help on replicating the pricing(including condition tables, condition types,,) to R/3.  What are the steps to set up the middleware and what obejects that I need to create to replicate to R/3. 
    Thank you in advance.

    Hi again Forum!
    Anybody knows a function or a way to relationate a marketing project, (plan or campaing) among them¿? with their guids¿?
    Regards and thanks in advance!
    Mon

  • ERROR: Key Figure Planning

    Hi All,
    I’m very new to SEM-BPS, can someone help me in resolving the following issues.
    I want to do Key Figure Planning for Marketing & Campaign Planning in CRM.
    •     I created few planning areas with all the required elements in BW-SEM-BPS.
    •     RFC destination from BW to CRM and CRM to BW is defined.
    Now I’m getting following errors, in SAP CRM {SPRO>CRM >Marketing>Marketing Planning & Budgeting>Key Figure Planning >… }
    •     While defining Planning Profile Group F4 Help is not working for selecting Planning Profile from SEM-BPS.
    •     While doing Manage Key Figures - Function module “UPC_FW_START_RFC” not found (Message no. BL001)
    While creating Marketing Plan and Key Figure Planning following errors appear.
    •     Function Module “UPC_PROFILE_GET” not found (Message no. BL001)
    •     Function module "API_SEMBPS_PLANSTRUCTURE_GET" not found
    Can someone please provide me details how to resolve the above issues.
    If anyone can mail a doc. which lists all the steps to be followed while integrating SEM-BPS & CRM and doing Key Figure Planning will be of great help.
    Thanks
    Vikas Sharma
    [email protected]

    Please see the following message:
    Re: "API_SEMBPS_PLANSTRUCTURE_GET" error while doing Key Figure Planning
    Regards
    Marc
    SAP NetWeaver RIG

  • Unexplained exchange rate difference

    We have created a delivery plan in USD (our local currency is EUR) without fixing exchange rate. This plan has a received several GR and IV at different rates. The material is valuated at standar value.
    D.Plan: Rate A , price 15,96 USD/UN
    month 1 - GR and IV at rate B
    month 2 - GR and IV at rate C
    month 3 - GR and IV at rate D
    All invoices are posted at a price of 14,32 USD.
    In month 1 we had price difference due to differences with the standard price. That was correct.
    In month 2 the system has posted unexpected exchange rate differences (key DM). We don't understand them as fas as GR and IV were posted at the same rate.
    Could it be that the system is using the rate of the first IV? We wonder the way SAP is calculating that exchange rate difference?

    no replies

  • Raw Material Costing with Overhead, Product Cost Planning

    Hi,
    I have an issue applying overhead to purchased raw materials. We need to apply this overhead for only a certain materials. So, I have defined a overhead key/overhead Group, and assigned the group in the material master of the raw material. The overhead is 2% freight on raw material costs.
    In the std.costing variant, I have assigned the costing sheet under Overhead on material components tab of the corresponding valuation variant. I have also included the Freight OH in the cost component structure.
    However, when I run the costing with CK11N for the raw material, it is showing only the raw material cost, not the overhead.
    What could be the problem?
    I appreciate your help.
    Thanks,
    Ram

    Is the overhead rate a percentage type or quantity based?
    Have you maintained both actual and plan rates (1 & 2) under define % based OH rates or Qty based OH rates accordingly?
    Does the validity date (in define OH rates )cover the date of costing?
    Is the Costing sheet assigned to the valuation variant at plant level?
    Is the OH base in the costing sheet includes the cost element of the raw material?

  • Another question?  Is 2G iPhone data plan lower than 3G iPhone data plan?

    If I take a 2G iPhone into AT&T and get it set up, is the data plan rate for 200 text messages and internet lower than the 3G iPhone data plan rate. I know the 3G in $30 + $5 (200 text messages) = $35. What would it be for the 2G?
    Thanks...
    (I want to give my wife my 2G to replace her flip phone and get me a new 3G)

    The First Generation iPhone is $20 for Unlimited Data and includes 200 SMS text messages, You can add more to the plan but it will be an additional cost. For $40 total you get Unlimited Text and Data usage.

  • Wbs element number changing in easy cost planning

    Hi ps guies
    I m facing a strange problem in ps.
    I create a structure in project bulider.after that when switch to easy cost palnning ,the top wbs number changes to another number which i dont know from where it is coming.
    This happens only with top wbs ,rest of the numbers are same as i created.
    it is happining in only easy cost planning ,and in rest of the transactions it is fine.
    please suggest ur thoughts
    regards
    shashank

    Hi...
    what about..using item category E :Internal Activity.
    You need to have defined activity types per Person ex T1000 for John W1,  T1001 for Mike W2 etc.
    Also you need to have defined planned rates in KP26 for each one of the activity types.
    This way you can use ECP for each activity type (therefore employee) and use their own rates.
    Hope it helps
    Pan

  • Insert Personnal Number in Easy Cost Planning

    Dear Expert,
    I make project cost sheet using easy cost planning. I want to input the personnal number and the person cost there. is it possible? if yes, how i do this? what item category should i choose?
    Thx

    Hi...
    what about..using item category E :Internal Activity.
    You need to have defined activity types per Person ex T1000 for John W1,  T1001 for Mike W2 etc.
    Also you need to have defined planned rates in KP26 for each one of the activity types.
    This way you can use ECP for each activity type (therefore employee) and use their own rates.
    Hope it helps
    Pan

  • Exchange rate: Saving of quotation type

    I am maintaining exchange rates in OB08 (TCURR). In this context the quotation type has to be selected. Now, I am looking for the table which holds that information about the allocation of the quotation type and the entered values in TCURR. First I thought that the table TCURN includes this information, but that seems to be wrong.

    Hi Tobias,
    exchange rate types refer to standard rate, buying rate, selling rate, planning rate etc.
    You will find these settings in table TCURV.
    You can customize this table in SPRO,
    --> General Settings
    --> Currencies
    --> >Check Exchange Rate Types.
    Standard types are being delivered by SAP, you may want to copy from these.
    Hope this helps.
    Rudolf

  • Why is data plan required?

    I am looking at upgrading to an iphone but i cant get rid of the $30/mo data plan that i dont need. is this required? if so for how many months? thanks.

    The unlimited data plan is required as long as you remain an AT&T subscriber with the iPhone.
    With the iPhone's visual voicemail feature, all visual voicemail messages are downloaded to the iPhone via AT&T's data network only. If you don't have a data plan, you would pay extra for the data download for each voicemail and if you request that data access be completely disabled for your line/number, you wouldn't have access to visual voicemail, which is one of the best features with the phone IMO.
    But you can't get rid of the data plan with the iPhone 3G especially when AT&T is subsidizing or discounting the full retail cost.
    The iPhone is designed to always have an internet connection as long as you have a wi-fi network that you have access to, or cellular reception. A number of people say they don't need the data plan, but you don't have wi-fi access when driving in car or unless you are stationary in a location where there is a wi-fi network available that you have access to. And you will use it more often than you realize. Right now you have to wait until you are connected to a wi-fi network that you have access to for internet access with your Touch. With the iPhone, you don't need to wait - you always have internet access as long as you have cellular reception.
    The unlimited data plan cost for the iPhone 3G is AT&T's standard unlimited data plan rate for all phones in the smart phone or PDA category, regardless if such a phone is a 3G phone.
    If you don't need or want the unlimited data plan, you should consider upgrading to another phone that isn't in the smart phone or PDA category or which does not require a data plan.
    Message was edited by: Allan Sampson

  • Where to find debit entry for planned activities through cost centre?

    hello experts,
    our client would like to know the impact of planned activities cost debit entry. the scenario is as follows.
    1. at the year begining we are planning activity hrs against any cost centre.
    2. respective activity hours are being confirmed through PP/PM orders.
    this time orders are being credited and cost centres are being debited for the activty prices.
    Now the question is tracability of credit entry wrt corresponding entry debit entry in the cost centre.
    Can anyone help me out?
    Regards,
    Varsha.

    Hi,
    Let break this issue.
    1. If you maintain KP06, with reference to CE / CC / Activity, you get debit entries for the relevant cost centers
    2. If you maintain KP26 Planned Activities and Planned Rates, you get credit to the relevant cost centers
    So in the S_ALR_87013611 report referred to above, you would get both debit and credit to the cost centers in Plan Costs column + you can check the plan activities in the below section.
    As against this actuals:
    1. When you post your expenses to the cost centers / carry out assessment or distribution cycles for production cost centers (linked to the activity types), you ge the actual debits.
    2. When you confirm the operations of the production orders, you get the credit to the cost centers.
    Hope this clarifies your doubt.
    Cheers!!

  • Transport of Std.Planning area

    Hi
    1)  I would like to transport planning area '4CFVS01' from client 000 (BPS). Please let me know is it possible to transport only the above planning area with all its subordinate objects?
    When I checked the Import of planning application, I think if we select the planning application e.g marketing and campaign planning it will transport all the planning area under this.
    Where as I need only the 4CFVS01 (Validation sheet planning area) to be transported.
    2) Also please let me know planning area u20194CFVS01u2019 (Validation sheet) & u20184TPM2000u2019 (Trade promotion) come under which planning application head?
    -     Marketing & Campaign Planning
    -     Sales Planning
    -     Quotation planning
    -     Service planning
    -     Resource planning
    -     Profit planning
    I guess it should be marketing and campaign planning?  Please let me know. Thanks for your help.
    Thanks,
    Vijay

    Hi Marc,
    Thanks for your response.
    I have created a customized planning area with Business content (real time Infocube) in BPS side. Now when I do a transport of Std Planning area and its subordinates (i.e 4CFVS01 - planning area) in that case will it throw any error?
    Since already the std infocube is mapped to a customzied planning area. Should I need to delete the customized planning area before doing a copy of the std planning area?
    Thanks,
    Vijay

Maybe you are looking for