Contract Currency and different User Default Currency

Hi,
I have the following challenge related to contracts. I have maintained a central contract at country A which uses EURO currency (for example a value contract worth u20AC10K). Call offs (purchase orders) can be made against this contract by subsidiaries in other countries (country B and C). Users from these subsidiary offices have defaulted their currency as the correct local currency unit e.g. PLN, CHF. However when users from country B and C make call-offs (purchase orders) against the central contract the system appears to ignore their default currency and uses the contract currency of EURO in the call-offs (purchase orders). My question is as follows, is it possible to have a central contract maintained in one currency e.g. EURO and allow users to generate call offs against this contract in their local currency which can be different? If so can you please give me some guidance?
Regards

Hi
Hope you created a contract for 10000 EURO total value
Purchase order also created for PLN, CHF as EURO currency only which against the contract
so release value also updated in EURO only.

Similar Messages

  • Transactions in local currency and report in Foreign currencies

    Hi All,
    Can anybody help me out to find the solution for my issue. The issue is, all the transactions are entered in Inr Currency and the report in FBL5N, FBL3N and FBL1N is to be taken out in USD Currency.
    Please help me to sort out this issue.

    Hi,
    Add additional filed in FBL5N, FBL3N & FBL1N structure and write logic to get values.
    Simply multiply document currency into exchange rate as on posting date of that document. You  will get exchange rate from table TCURR.
    To add addition field go through following documents.
    http://www.scribd.com/doc/61909106/Adding-Fields-Other-Than-Special-Fields-in-Fbl3n
    http://scn.sap.com/community/abap/application-development/blog/2012/08/30/enhancing-sap-standard-transactions-fbl3nfbl1nfbl5n-with-extra-fields-in-the-output-list-via-bte
    Regards,
    Yogesh.
    Message was edited by: YOGESH KSHATRIYA

  • Query with different currency for different users

    Hi at all,
    just a crazy thing happened. I created a query. Every user gets the result with the currency EURO.
    Only one user here gets the country currency like US$, Francs etc.
    If he logs in on a different PC, he also gets EURO.
    So I think the problem is because of his PC.
    I already checked his user data in SAP and BW.
    And he really uses the same query with the same filters...
    Thanks for helping...
    Kind regards from totally confused Marielle

    Hi,
    Check the Front end Patch levels on both the machines. If they are different, then you can decide what you want to do, either upgrade it on other PCs or not use the one that has it.
    Cheers,
    Kedar

  • BP currency and transaction currency is different from Local currency.

    Hi,
    I have this confusing scenario here and really appreciate some share of ideas.
    I have a scenario here.
    Local currency + system currency = AUD
    There is some New Zealand (NZ) customers (eg: C00001), set up with multicurrency, because we process transactions with them in USD.
    We hedge USD and NZ currencies.
    Let's say today is 29/9/2008 and I have the following rate:
    Spot rate 1 USD = 1.207 AUD
    Spot rate 1 NZD = 0.82293 AUD
    Forward rate 1 USD = 1.10 AUD
    Forward rate 1 NZD = 0.9 AUD
    process NZ customers in USD
    When a sales transactions is processed against C00001 in USD, forward rate 1.10 is used, SAP recorded the transactions in USD and AUD.
    To see how much NZD it is, forward rate 0.9 should be used.
    (ii) process NZ customers in NZ
    Spot rate 0.82293 is used.
    Now, we need to provide a Profit and Loss in NZD to NZ Tax Department for those sales transactions to New Zealand customers.
    This is what I have considered but stuck.
    (a) I cannot make use of P & L statement - revalutaion function,  because there is a combination of rate (forward and spot) in the same day. 
    (b) To manually enter the 'Fixed Exchange Rate' in Journal Entry and then use  "Refer to rates in Journal Entry" when running P & L statement - revaluation funciton won't work, because the volume of transactions each day is massive.
    (c) I have considered setting up a seperate database with local currecy = NZ, system currency = AUD and then processed all NZ transactions here.
    That will resolve the issue for reporting to NZ Tax Department.
    However, I will then again be stuck with the problem to convert from NZ to AUD in order to produce AUD P & L because there is combination of forward rate and spot rate being used.   The reason for producing AUD P & L is so that we can consolidate the AUD database and NZD database.
    Appreciate some help here.
    Kind regards,
    Shwu Hua

    I am afraid you may have to go through SDK programming in order to solve this problem.  Even the current available add-on may not have solution yet.
    You are talking about two exchange rates in one day.  That is not easy to achieve.  In my opinion, all rates are not exact numbers per se. You may just use the middle rate to post all your transactions.  The others should be Exchange Rate Gain/Loss.  That will be the easiest work around before any SDK work done.
    Thanks,
    Gordon

  • How to block Entity Currency and make only ENtity Currency Adj available?

    Hi,
    I have some P&L accounts which need to be blocked for Entity currency but have a calculation in rules. These accounts still need to be available for journals. I have ensured that the Is Calculated is 'N'. Then I ve set up formulas for the accounts. Also I ve ensured that the accounts are non input for Entity Currency. The entity currency calculations are happening fine. I can even post journals but when I run a consolidation, the amount in ENtity Currency Adj dissapears.
    Thiis is the Sub routine for No input. I guess I'll need to add a HS.Clear for these accounts as well
    Sub PANDLNOINPUT()
         Dim sAccount, aAccountList
         aAccountList = HS.Account.List ("PANDLV2","[Base]")
         For Each sAccount In aAccountList
              HS.NoInput "A#" & sAccount & ".V#<Entity Currency>"
         Next
    End Sub
    Also for the calculation of teh P and L accounts, I have the following rules
    Calculate Cash Flow
    '=================================================================================================================
    Sub CalcCPandLFlow(sPOVScenario)
         Dim nVal
         Dim aCustom1List, sCustom1, aCustom4List, sCustom4
         Dim sPriorScenario
         aCustom1List = HS.Custom1.List("", "C1_AllBaseXNone")
         aCustom4List = HS.Custom4.List("", "C4_AllBaseXNone")
         sPriorScenario = GetPriorScenario(sPOVScenario)
         For Each sCustom1 In aCustom1List
              For Each sCustom4 In aCustom4List
                   'Operating Profit
                   nVal = HS.GetCell("A#B20201.C1#" & sCustom1 & ".C4#" & sCustom4 & ALL_TOPXC1XC4)
                   Call SetValPL("A#P20201.C1#" & sCustom1 & ".C4#" & sCustom4, nVal)
    Finally the sub routine for calculation is
    Sub SetValPL(sCFAccount, nVal)
              If nVal <> 0 Then
              Call HS.SetDataWithPOV(sCFAccount & ALL_NONEXC1XC4, nVal, False)
         Else
              Call HS.Clear(sCFAccount & ALL_NONEXC1XC4)
         End If
    Please help me as we are in year end. Need help desperately
    End Sub

    The clear action takes place within Sub SetValPL, but you are not limiting its exectution in the value dimension. As a result, the clear is being executed in every value member in which Sub Calculate runs. You must add a condition to allow it to only run when the point of view value member is not Entity Cur Adjs, or whenever you want it to. Generally speaking every rule in your file should at least have a value dimension condition with you determining when it should or should not execute.
    --Chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to manage seasrch directorie​s for different TestStand projects and different users?

    I am working with several others and we share some number of directories and at the same time own different directories for each projects. Problem rises when there are duplicated VI names are created by two users working on two different projects. Search path has to be manually changed to avoid loading a wrong VI. Sometimes user forgets to change and load a duplicated VI name. Is there a better way to manage th search paths?

    LegalEngineer -
    Matt's comments above regarding the SearchDirectories object only apply to TestStand 3.0.
    Under TestStand 2.0.1, you have to manage the settings in the config file Testexec.ini. You can also have read access to the search directories by accessing the .Data.SearchDirectories array property that is returned from Engine.ConfigFile().
    Scott Richardson (NI)
    Scott Richardson
    National Instruments
    Attachments:
    temp.jpg ‏15 KB

  • How do you share library's with different accounts and different users

    My family has lots of music and to save hours of time we want to share our music, is this possible? The only problem is, we each have different Apple ID's and our own computers.

    Each device will ONLY sync what you select.
    Just do not select the apps that you do not want.  Only select the apps that you do want.

  • SEM -BCS Trasaction currency and Local Currency

    SAPGURUS
    I have one issue , When the users are doing Half yearly BCS they see  that for one company code for one item period values Local currency is diifeernt from
    Transaction currency .
    My question is why this Transaction currency is different from local currecny.
    How to rectify this .
    Are they  missing any exchnage rate conversion .
    Thanks in Advance .
    are they  missing any exchnage rate conversion .

    Hi Dan Sullivan
    Thanks for the quick reply .
    One more question .
    I see in the BCS  T Curency as Euro and Local currency as Euro .
    but the period values localy currency is different from Transaction currency .
    I think the values should be the same if both T Currecny and Local Currency is same .
    I also observed that this particular difference is happening only for 2 particular set of accounts . Those accounts are related to Intercompany related G L Accounts values .
    I also observed that in the Break down category for these G L Accounts The break down structure category has defined as defaulted .
    I would like to know what would be the cause for the above .
    Thanks in Advance .
    Ravindrareddy.P.

  • Multiple BP Currency and Payments

    Hi All,
    The scenario is we have a BP to whom we do the sales billings in multiple currency eg. USD & EUR and system currency or local currency is SGD.
    Have created a BP master with multiple currency and it looks fine as far as sale invoice is concern. Now we have reaceived an advance payment from the customer in EUR 1000, when we process the same through Incoming payment screen by selecting Payment On Account system considers it as SGD ie. Local Currency and not in Foreign Currency ie. EUR.
    We have two bank accounts one is for USD and another one is for EUR. We will be debiting the respective GL accounts while posting incoming payment.
    Request help from all experts to extend a solution for the same.
    Regards
    N.Narayana Swamy

    Hi Kestrin,
    With the information and deails provided, I understand the complexity in managing a BP in multiple currency.
    In this case customer book all commercial sales invoices and purchase transactions in USD & EUR currency for a particular BP. Which we can post by changing the currency at doc level, the issue is when we receive an advance payment from the customer in FC.
    While processing incoming payment no where in the screen we can specify currency type, by default system prompts LC. Where as I have different bank accounts like ABC Bank - USD and XYZ Bank - EUR. In GL account we have mentioned respective currency type and not the LC.
    In such case, how do we can post an incoming payment to repsective bank account with respective currency type mentioning in incoming payment screen.
    Regards
    N.Narayana Swamy

  • Amount in document currency and amount local currency in F-65

    hi everybody
    im doing a functional spec whereby we are getting a text file which contains data for tcode F-65
    Im wondering if we can transfer amount in document currency and amount in local currency data by writing a program or we have to transfer only amount in document currency and SAP calculates amount in local currency
    plz advise

    i know that
    but the users dont want SAP to convert the document amount, you see
    they want the data uploaded to appear on the screen i.e.
    if document amount is 5000 and local amount is 3500 in the file, they want these values to be uploaded
    and not that document amount 5000 is uploaded and the local amount is calculated by SAP

  • Doubt on User default

    Hi All,
    I have tried to understand and replicate the screenshots at User Defaults - GRC 10.0 , but could not understand Loop and Ruleset.
    - Function USER_DEFAULT_FUNCTION is calling Ruleset,and Ruleset has the operation " Change USER_DEFAULT_ID after processing expression LOOP_CONNECTOR_ITEMS.
    So, could you say to which value will USER_DEFAULT_ID be changed to, and what is meant by "after processing expression LOOP_CONNECTOR_ITEMS. "
    - I could not understand the logic of the loop.
    - Also George's screenshots are not in sequence. He first adds condition 'then'. why not 'if'
    Could you please suggest, as i have to review a User default setting.
    regards
    Plaban

    Hi Plaban,
    Since SYSTEM is not available under Request Header attributes, rather it is available as Role Attributes which are called as line-item fields while calling the BRF Rule. So, in such cases LOOP is a suggested solution, rather than using the Decision Table directly. Though within the LOOP, you can still call the Decision Table or implement IF/ELSE conditions.
    So, basically we have created a BRF+ rule for user defaults which will return User Default ID after looping through decision table entries based on SYSTEM as usually each SYSTEM will have different User Default ID.
    Regards,
    Madhu.

  • CUP - Using several Parameters ID in User Default

    Hello everybody,
    I have a problem with using User Default section in CUP.
    In fact I want to use the User Default Mapping to define two different parameter ID in the SU01.
    For example: the Company Code (BUK parameter) and the Cost Center (KOS parameter).
    If I define two different User Default (one for the company code and the other for the cost center) with two different User Default Mapping Condition (Custom fields Company code with the good value for the first one and cost center custom fields for the second one) it doesn't works.
    It seems to use only one User Default even if the both User Default Mapping Conditions are different.
    Does anyone know how to define two different User Defaults that works together?
    Thanks in advance.
    BMW

    BEN,
       I have never tried this scenario. It seems to me that this might not work.
    Regards,
    Alpesh

  • How to set default currency and Country in R12 financial modules

    Hi all,
    How to set default currency and Country in R12 financial modules (AR,AP,GL,FA,CE) becuase I found some default settings are shown "USD" & "United States" such as create AR Customer, the Country is shown the default "United States"....
    Can anybody advise ?
    Thanks & Regards,

    Hi,
    Change the below profile for the user to a territory different than the US :
    In System Administrator, navigate to Profiles -> System.
    Select Site, Application, and Responsibility.
    Profile options:
    Default Country
    HZ: Reference Territory
    ICX: Territory
    Regards,
    Raju.

  • How to change the default currency in CJ32 and CJ33

    Dear all,
    As required by the user, I want to know how to change the default currency from controlling area currency to object currency in TCODE CJ32 and CJ33. Currently, the controlling area currency will be defaulted in the field "Views in".
    Could any one help me? Points will be awarded.
    Thank you.
    Christina.
    Edited by: Virendra Pal on May 5, 2010 8:34 AM

    Hi Christiana ,
    Once you are in tcode CJ30 / CJ32 , Enter either Project definition or WBS element and this shall take you to the Budget screen and once you are here you can find a drop down with two options .One is Controlling are currency and the other one is Object currency.
    Since the Currency is set to Object currency in OPS9, System shall allow the budget values in Object currency and if the user wants to see the same values in Controlling are currency ,then the user needs to view the values in Controlling are currency using the drop down .
    Regards
    Judy

  • Show report in different currency depending on user parameter

    hi all,
    i'm trying to show my report in different currency, depending on users given parameter.
    i hold my account balance in USD based. User should select one parameter, in which currency they want to see their account balance. (e.g. EURO, GBP ...) and depending on their selection, i want to convert USD based info into chosen currency, by fetching field from currency table and making some calculation.
    also i want to include in report currency($, £ ...) accordingly ().
    how can i achieve this, has somebody any suggestion to me?
    thanks in advance.
    bogi.

    hi,
    i think i need to explain my problem more detailed. anyone who has suggestion, please help me.
    i have 3 tables account, times and currency.
    - times table has time_key, date, day_of_week fields.
    - account table has - account_balance and time_key_FK fields.
    - currency table has currency_type, amount, time_key_FK fields.
    1. i have function decode(:Currency,'USD',account_balance,'EURO',--here i want to replace my calculation CALC1---)
    CALC1- this calculation need to some calculation like this: account_balance * (fetched field from this sql)(select amount from currency, account where currency.currency_type='EURO' and account.time_key_FK=currency.time_key_FK)
    i tried to do this, but discoverer plus doesn't let me make condition and calc. i'm very confused.
    2. after i achieve this query, somehow i want to display on worksheet on which currency is it based. can i get parameter value, and show this value as in column heading?
    tnx!!!

Maybe you are looking for

  • APEX 3.0 - flash chart using 'Omit label interval'- missing lines in legen

    Hi, we are using APEX 3.0 on XE as development database. Using the option "omit label interval" in the flash chart configuration, the legend will show the entries the same way as the x-axis. For example: setting omit label interval to 23 to get only

  • How to Disable Popup Preview of Messages?

    Hi. I'm just trying to figure out if there's a way to stop Mail.app from popping up the small preview of messages in the top right corner of the screen when they're first received. I find this incredibly annoying. I've searched thoroughly for a solut

  • IPad 2 light leakage? Does it get worse with time?

    My iPad 2 suffers from the leakage. Question. Will it get worse over time, or WYSIWYG? Regards

  • ALE using PULL Approach question

    Hello All,               Can anybody  explain me the sep-by-step process for getting the material master using BD11- PULL approach. I had already configured the Distribution model for sending the request MASFET in system B, from which we are requesti

  • Authorization Error Loop

    I am now stuck in this loop: This started after I upgraded to Lion the iphone backs up and syncs contacts, mail, etc. then when it gets to the music and apps, I get this message: "this computer is no longer authorized to play purchased items that are