PO Currency different than PIR

Hi,
We recently changed the currency on a PIR but when creating a PO for the material and vendor, it's defaulting to the old currency.
The company code currency is still the old currency.  Could that have something to do with it?
Thanks
~ Chris

Hi Guys, i agree with what is mentioned in SAP note 491789 (as that is applicable for currency at header level in PO) but we still can maintain different currency in PIR (which we can maintain via condition record - there you can maintain currency different than vendor currency for a validity period) and in PO price (PB00) will be automatically calculated in this currency.
question to Chris - does your PO referring to a contract or SA? have you checked in conditions tab of the PO item details if base price currency is same as what you have maintained in PIR?
yogesh
Edited by: Yogesh Lohiya on Feb 10, 2012 6:19 PM

Similar Messages

  • 0COMP_CODE Local currency different than 0COMPANY currency

    Hello guys,
    We are implementing BCS for our client and the scenario for the same is as follows:
    We are using ECC 6.0, BW 3.5 with SEM 4.0., we have activated New GL Accounting in ECC 6.0. and have been able to bring in data from totals table FAGLFLEXT into BW.
    Now we need to bring in the data from BW to BCS cubes using the load from data stream method. We needed to bring all the three currency types (transaction, group and local) into the SEM BCS cube (0BCS_C10), so we have added all the 3 currencies in the data basis roles.
    When we run the load from data stream method, we get the following error for some items:
    Error message UCD1 032 (Local currency of company X is not correct).
    This message occurs for the company codes (0COMP_CODE) which not have the same currency as their related Company (0COMPANY).
    Could you please help us solving this "issue" ?
    Thank you in advance,
    Regards,
    Pascal MORIZUR

    Pascal,
    IMHO, the situation is a bit different.
    AFAIU, It doesn't matter which local currency is set for 0COMP_CODE in ECC.
    The BCS totals cube has three key figures for currencies. Each KF has attached to it a currency key. In your case this key doesn't correspond to local currency set for 0COMPANY.
    This causes the error.
    If I were you, I'd try to replace incoming local currency key by the proper currency key. The particular solution may depend on your details. Try to add an attribute of currency to 0COMP_CODE and to MOVE this attribute to local currency in mapping.
    Very straight forward but not flexible is to use a CONSTANT in mapping (if all the companies have the same local currency). If not - use also a condition which will determine for which company code which local currency to apply.
    Edited by: Eugene Khusainov on Apr 3, 2008 9:17 PM

  • GR local currency different than PO Currency in import PO

    Hi Everyone,
    My PO is in currency CAD and local cureency is in GBP.
    Exchange rate maintained is 1.83240.
    There are four line item out of which three line item conversion are right but for one line item convertion is not appearing correct during GR.
    Same conversion rate is maintained for all line item.Even for all line item GR is done on the same day.
    GRN for 131 units @ 95.88 CAD each should give value of 12560 Cad which is around 6500 GBP but in GR its showing 3646.04 GBP.
    Can anuone please help on this.
    Thanks,
    Praful

    Hi,
    For three line item conversion are right but for one line item conversion is not appearing correct?
    If  GR posted for all line items, then check to compare GR posting date for three line items and GR posting date of 4th  line item which cause your concern. May be difference of posting date where different conversion factor maintained(OB08) based on validity period which causing different conversion during GR posting for 4th line item!
    Regards,
    Biju K

  • Posting line item currency different than header curency

    Hi ALL,
    Is there any way in SAP where I can post line items in a different currency that header currency?
    for e.g.  Doc header currency - USD
    Line item 1 Dr A/c -  Amount in USD
    Line item 2 Cr A/C - Amount in CAD
    Can you please let me know if it is possible to post in SAP?
    Thanks,
    Ram

    Absolutely not possible.
    Currency is at header level and not at line item level.
    Regards,
    SDNer

  • Converting from a currency other than LC

    Hello,
    We have a customer application where we store not only amount in LC but also the amount in Invoice Currency ("IC").  For example, we invoice customers in a currency other than our company code's local currencies.  We have a requirement to convert actuals into USD and EUR by taking IC not LC.  I have created a new category for this ACTBUD and have gotten it working for LC.  I want to get it to work starting IC as the base currency.  All the documentation I have read says that BPC uses LC as the default for currency translation.
    Does anyone know if this can be changed?
    Thanks,
    Mark

    Here you go...we have four different reporting currencies:
    IC = invoice currency or document currency.
    LC = Local Currrency
    USD = USD or Group Currency
    EUR = Our EU users have requested that we also track Euros translated at budgetd rates.
    The below code translates LC, USD and EUR from IC for all categories but Actual.  Our actuals we get directly from our SAP system.  We created a new category called ActBud and then translate the other reporting currencies from IC.  It works pretty well.
    // FX Translation for any data in the Customer application
    // Added following line for performance
    *PROCESS_EACH_MEMBER=TIME
    *SELECT (%FX_RATES%, "[ID]", "RATE", "[GROUP] = 'FX RATE'")
    // Block 1 - Clear out any previously calculated USD and EUR values, for all categories but Actual.
    *XDIM_MEMBERSET DATASRC=COMPANY
    *XDIM_MEMBERSET RPTCURRENCY=USD,EUR,LC
    *XDIM_MEMBERSET INTCO=<ALL>
    *WHEN CATEGORY
    *IS <> "ACTUAL"
        *WHEN CUSTACCOUNT.RATETYPE
        *IS <> "NOTRANS"
            *REC(FACTOR=0)
        *ENDWHEN
    *ENDWHEN
    *COMMIT
    //Block 2 - Perform standard foreign currency translation, for all categories but Actual.
    *XDIM_MEMBERSET DATASRC=COMPANY
    *XDIM_MEMBERSET INTCO=<ALL>
    *XDIM_MEMBERSET RPTCURRENCY=IC
    *LOOKUP RATE
        *DIM RATESRC="RATECALC"
        *DIM RATE=CUSTACCOUNT.RATETYPE
        *DIM SOURCECURRENCY:INPUTCURRENCY=INVOICECURRENCY
        *DIM TARGETCURRENCY_LC:INPUTCURRENCY=ENTITY.CURRENCY
        *DIM TARGETCURRENCY_USD:INPUTCURRENCY="USD"
        *DIM TARGETCURRENCY_EUR:INPUTCURRENCY="EUR"
    *ENDLOOKUP
    //*XDIM_MAXMEMBERS TIME=1
    *WHEN CATEGORY
    *IS <> "ACTUAL"
        *WHEN CUSTACCOUNT.RATETYPE
        *IS "NOTRANS"
        *IS %FX_RATES%
            *REC(FACTOR=LOOKUP(SOURCECURRENCY)/LOOKUP(TARGETCURRENCY_USD),RPTCURRENCY="USD")
            *REC(FACTOR=LOOKUP(SOURCECURRENCY)/LOOKUP(TARGETCURRENCY_LC),RPTCURRENCY="LC")
            *WHEN ENTITY.EURO
                *IS "Y"
                *REC(FACTOR=LOOKUP(SOURCECURRENCY)/LOOKUP(TARGETCURRENCY_EUR),RPTCURRENCY="EUR")
            *ENDWHEN
        *ELSE
           *REC(RPTCURRENCY="USD")
           *REC(RPTCURRENCY="LC")
           *WHEN ENTITY.EURO
                *IS "Y"
                *REC(RPTCURRENCY="EUR")
            *ENDWHEN
        *ENDWHEN
    *ENDWHEN
    *COMMIT

  • Why is the contents of Safari's downloads folder different than the actual folder?

    Why is the contents of Safari's downloads folder different than the actual folder that resides in my users folder?

    Problem is if I delete that .plist I'll delete those downloads.  I'm still able to launch those downloads from that location so that tells that file is probably not corrupted. I need to be able to located that folder and transfer the downloads from it before I do anything like this.  So that begs the question, where is that folder located?  When I do a folder search I'm taken to a Downloads folder, but it's not the one that is showing up from within Safari as it's contents are too different. 

  • I am having a problem with homesharing on my apple tv. The email address on my tv is different than what I am registered with. How do I correct the email address that is being displayed under home sharing on the apple tv?

    Somehow my apple id email address under homesharing on my apple tv is different than that used for homesharing on itunes in my imac. I can't access home sharing on my apple tv because of this. Can you please tell me how to change it on the apple tv in order to get homesharing to work?

    turn off home sharing on apple tv, then turn it on again, entering new credentials. Apple-TV works very reliably with home sharing unlike iDevices which don't

  • If I have two email accounts, one personal hotmail account and one MS Exchange work account, how can I setup individual notifications for each account. Right now, any email from any account has the same notification. I want work to be different than perso

    If I have two email accounts, one personal hotmail account and one MS Exchange work account on my iPhone 4s, How can I setup individual notifications for each account? Fore example, if I get a work email, I want to hear a DING, DING....If I get a personal email, I want to hear a BEEP, BEEP. Right now, any email from any account has the same notification. I want work incoming email notification to be different than personal incoming notification. The only semi-workaround I've seen is just disable any notification for the Hotmail account, so only work emails would notify. But then I don't know when I get a personal email. Even the lowely Blackberry Torch 9800 has this feature..not iPhone 4s??
    Thanks

    Sorry you get only one notification sound for all email accounts.  you can send a suggestion to apple here http://www.apple.com/feedback/

  • I had my itunes acct with a yahoo mail, now Im using icloud with my apple id, which is different than itunes I had.  how can I merge this 2 accounts? I still have money in my old itunes acct. 2 acct

    I had my itunes acct with a yahoo mail, now Im using icloud with my apple id, which is different than itunes I had.  how can I merge this 2 accounts? I still have money in my old itunes acct. 2 acct

    Is your phone still signed in with your old iTues ID for iCloud (in Settings>iCloud)?

  • I entered a new calendar event at I cloud on my laptop.  The enent showed up on my I Phone  4S but, the start and finish times on the entry in I cloud was different than the times shown on the I phone calendar.  How do I sync the time in my I Phone with

    I entered a new calender event using I cloud on my laptop. The enent transfered to my i Phone 5 S but, the start and finish times shown st i cloud on the laptop are different than the times shown on the i phone.  How do I sync the times on the i Phone with the times shown on the laptop i cloud calender?

    Turn off time zone support on the phone.

  • Error Transaction Currency Differs - Goods Receipt PO

    Hi
    I am trying to creat a goods receipt po for a overseas order which is in US $
    (System Currency in AUS $)
    When I try to add the Goods Receipt po i get the following error
    Transaction currency differs from account or BP currency
    [Goods Receipt PO - Rows- warehouse Code][line:0 ]
    [Message 173-57]
    Do u have any idea why am i getting this error.
    thanks for the help in advance.
    Sanjaya

    Hi Sanjaya,
    Me again, I will be more detailed this time.
    The SO/PO will not be a problem as there is no Journal Entry created for those documents. For a Goods Receipt there is a Journal Entry created.
    The Journal will debit Stock and credit Allocation Cost account.
    The checks to be done:
    - The Business Partner must be set to either multi currency or the same currency as the document.
    - On the Item Master Data -> Inventory/Stock Data tab, check if the Item set to:
    Set G/L Accounts by: WareHouse, Item Group or Item Level.
    If it is set by Warehouse check the warehouse on the row level, if it is not already displayed use form settings to display it. Open it and check the above mentioned accounts. In this case they must be set as multi currency.
    If it is set to Item Group please check the Item Group on the Item Master Data of all the Items involved in the Goods Receipt PO. Go to these Item Groups and check the above mentioned accounts. Again, they need to be set to multi currency.
    If it is set to Iem Level, please use the Form Settings to display the allocation cost account and the stock account. The accounts will be displayed on the Inventory/Stock Data tab for each warehouse row. make sure that the accounts here are multi currency.
    If it still does not work, in the Goods Receipt PO use form settings to display the GL account on the row level. Please make sure that for every row the account that is displayed is set to multi currency.
    If there should still be problems start checking the tax accounts, after that if they are using additional expenses check those accounts as well.
    This should hopefully solve it.
    Thanks,
    Jesper

  • Photo rotaion in organize view different than edit view & slideshow

    Photo rotaion in organize view different than edit view & slideshow. The fact that the power supply to the computer was accidentally disconnected while I was working in iPhoto no doubt was the cause of this phenom.
    Any suggestions as to how to re-sync the rotations back up?

    Thanks for the tip. I wasn't aware of the use of theses two keys simultaneously. It occured to me after this post to just trash the whole library which I had just created for this particular group of photos and re-import the photos to a newly re-created library. I still had the camara connected so as it turned out it was fairly easy. Now that I think about it, if this hadn't been a newly created library just for this group of photos it wouldn't have worked so simply, so I guess I discovered another benifit for having multiple libraries.
    I'm glad you recomended the apple/alt key combo though as this knowledge no-doubt will come in handy at some time.
    iMac PowerPC G4 800 mhz 1GBSDRAM 17" Flatpanel   Mac OS X (10.4.8)   Seagate external Firewire/USB HD's:250GB & 500GBSony DSC-V3 & DSC-S8 Cybershot

  • How can I have a topic name different than the filename of a linked Word document?

    I've encountered multiple issues with linking to Word files ...here's another one: If a Word document is entitled Feature_ABC, then upon generating the HTM after linking it, the HTM's filename and topic name are both Feature_ABC. As underscores are ugly in topic names and features can be renamed, I would hope that I could rename the topic to be different than the filename.
    The Help documentation suggests this is possible by editing the Topic Name Pattern in the Word Conversion Settings dialog of Project Settings. However, reagardless of the Pattern entered, every time I generate or update from the context menu of a linked Word document the topic name remains the same as the filename.
    Because the topic name is shown in the Search panel and browser tabs, it will be a little ugly and may even be confusing. It is possible to edit the HTML directly, but then the HTML is overwritten each time the Word documents are update and the great advantage of using linked documents is lost.
    Is there a way to solve this problem?
    Thanks in advance for any help you might be able to provide.

    Thank you for your quick reply - just checked Multifox out.
    It seems it still forces me to open a new window, while preventing the need for a new profile.
    Why isn't it in the addons.mozilla.org ? Looks dangerous ...

  • I just upgraded to lion on my intel macbook.  I would like to change my facetime alert to something different than a phone ring and, I would like to be able to have full screen.  How do I do this?

    I just upgraded to lion on my intel macbook.  I would like to change my facetime alert to something different than a phone ring and, I would like to be able to have full screen.  How do I do this?

    Downgrade Lion to Snow Leopard
    1.  Boot from your Snow Leopard Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID then click on the OK button. Click on the Partition button and wait until the process has completed.
    4. Quit DU and return to the installer. Install Snow Leopard.
    This will erase the whole drive so be sure to backup your files if you don't have a backup already. If you have performed a TM backup using Lion be aware that you cannot restore from that backup in Snow Leopard (see below.) I suggest you make a separate backup using Carbon Copy Cloner 3.4.1.
    If you have Snow Leopard Time Machine backups, do a full system restore per #14 in Time Machine - Frequently Asked Questions.  If you have subsequent backups from Lion, you can restore newer items selectively, via the "Star Wars" display, per #15 there, but be careful; some Snow Leopard apps may not work with the Lion files.

  • Automatic Payment F110, Using currency other than the currency of invoice.

    I want know if it is possible to make automatic payment by F110, paying through a currency other than the currency of the invoice?
    Using the f-53 transaction i know that is possible, but i must use the F110, because I generate a file to send to the Bank.
    Thks,
    Fernando

    Invoice Booked for USD but payment want INR through F110, Cheque printing.
    Christoph Gilberg Mar 26, 2015 8:27 PM (in response to Sam P)
    Hi Sam,
    you have to add this information at the time of invoice entry. Screenshot from F-43 below.
    Best Regards,
    Christoph

Maybe you are looking for

  • Give me some ways to update my Nokia C3....

    Is there anyone know how to update it to the latest version (Is it better to do that), please give me some advice.... I have no USB cable but I have a card reader for my Micro SD... I couldn't  also update through mobile update it says "no network co

  • Installing Des 6.0

    Are there any problems in installing Des 6.0 onto my Nt Workstation with Dev 6.0 patch 3 and Discoverer 3.1 in default home ? Thank's for replies ..

  • 2720 fold in USA

    I took my 2720 fold with me on a trip to USA, but the phone did not work there. No operator found it said, both in manual and automatic. My old 6310i with the same SIM worked fine over there. What is wrong? Solved! Go to Solution.

  • How to create a physical table with a session variable.

    Hello, I have been trying to accomplish accessing data multiple databases from a single rpd and single connection pool. Is there a way to do it using session variables and OBIEE stored procedures or something. If someone has anything I could read up(

  • Pass parameter from one jsff to other in bounded task flow

    Hi All, I'm using 11g adf. I have a requiement to get parameters value from one jsff to another jsff . In bounded taskflow , the trans.jff has parameters which i have to carry to couple of detaill.jsff (5 jsff). In between trans.jsff and detail.jsff