Currency Problem In Documents

Hi All,
I am encountering a probelm and i am not sure how to solve it.
I have a Material 1234 And I have a Purchase infor Record for it Price up to 19.09.2008 was in NZD then It was changed to AUD from that date. Qty issued on 17.09.2008 to cover NZD then Qty issued on 30.09.2008 to be at new price in AUD but the invoices were still all in NZD. Why is this happening? These should be in AUD.
Thanks,
Jograd

You have to change the currency in the PO other wise it will show the NZD or when you post the invoice that time enter all the field and currency field as AUD before hitting enter than system will take AUD.

Similar Messages

  • Currency and Linked documents problem.

    Hello all,
    I am using the sdk to import documents form one database to another. I have a currency problem when I try to create an AR Invoice based on a Sales Order already in the target database.
    We are running SBO 2005 sp1 pl45
    The Sales order document currency set up like this:
    Header : CAD
    Line 0 : USD
    Line 1 : USD
    Line 5 : USD
    When I create an AR Invoices using the SDK based, I set the currency the same way as for the sales orders. The SDK add the document without errors.
    However, there are always one or more lines that switch to CAD currency.
    Header : CAD
    Line 0 : USD
    Line 1 : CAD
    Line 5 : USD
    I have check the database to make sure the currency field and DocCur field where set to the proper value in the order table.
    This is a simplified version of my code. I am having the same behavior as my application. I also tried to remove the itemcode and currency info without success.
    I have also checked that:
    - The currency exists in the database and the exchange rate is up do date.
    - The Customer, Series and Tax Code are correct.
                   oDoc = oComp.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
                    oDoc.CardCode = "C10003"
                    oDoc.DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items
                    oDoc.Series = 2
                    oDoc.DocCurrency = "CAD"
                    oDoc.Lines.ItemCode = "GC0001"
                    oDoc.Lines.BaseEntry = 3
                    oDoc.Lines.BaseLine = 0
                    oDoc.Lines.BaseType = 17
                    oDoc.Lines.UnitPrice = 580
                    oDoc.Lines.Currency = "USD"
                    oDoc.Lines.Quantity = 9
                    oDoc.Lines.TaxCode = "TAXNO"
                    oDoc.Lines.Add()
                    oDoc.Lines.BaseEntry = 3
                    oDoc.Lines.BaseLine = 1
                    oDoc.Lines.BaseType = 17
                    oDoc.Lines.ItemCode = "GC0002"
                    oDoc.Lines.UnitPrice = 1233.58
                    oDoc.Lines.Currency = "USD"
                    oDoc.Lines.Quantity = 9
                    oDoc.Lines.TaxCode = "TAXNO"
                    oDoc.Lines.Add()
                    oDoc.Lines.BaseEntry = 3
                    oDoc.Lines.BaseLine = 2
                    oDoc.Lines.BaseType = 17
                    oDoc.Lines.ItemCode = "WH0001"
                    oDoc.Lines.UnitPrice = 447.01
                    oDoc.Lines.Currency = "USD"
                    oDoc.Lines.Quantity = 9
                    oDoc.Lines.TaxCode = "TAXNO"
                    oDoc.Lines.Add()
                    oDoc.Lines.BaseEntry = 3
                    oDoc.Lines.BaseLine = 3
                    oDoc.Lines.BaseType = 17
                    oDoc.Lines.ItemCode = "WH0001"
                    oDoc.Lines.UnitPrice = 997.5
                    oDoc.Lines.Currency = "USD"
                    oDoc.Lines.Quantity = 9
                    oDoc.Lines.TaxCode = "TAXNO"
                    oDoc.Lines.Add()
                    oDoc.Lines.BaseEntry = 3
                    oDoc.Lines.BaseLine = 4
                    oDoc.Lines.BaseType = 17
                    oDoc.Lines.ItemCode = "WH0001"
                    oDoc.Lines.UnitPrice = 276.15
                    oDoc.Lines.Currency = "USD"
                    oDoc.Lines.Quantity = 9
                    oDoc.Lines.TaxCode = "TAXNO"
                    oDoc.Lines.Add()
                    oDoc.Lines.BaseEntry = 3
                    oDoc.Lines.BaseLine = 5
                    oDoc.Lines.BaseType = 17
                    oDoc.Lines.ItemCode = "TM9999"
                    oDoc.Lines.UnitPrice = 205
                    oDoc.Lines.Currency = "USD"
                    oDoc.Lines.Quantity = 9
                    oDoc.Lines.TaxCode = "TAXNO"
                    If oDoc.Add <> 0 Then
                        MessageBox.Show("Error " + oComp.GetLastErrorDescription())
                    Else
                        MessageBox.Show("Good")
                    End If
    Thank you for your help.
    Simon
    Edited by: Simon Lizotte on Jul 29, 2008 10:35 PM

    HI Simon,
    For me it is works perfect.
    I do not know about the taxno tax group, and your localization, but on my 2007APL38 works fine.
    I have used the demo database  SBODEMO_HU, and added an order and invoice from order, and it is works (without TaxCode).
    generally if you inherit a document, you need you the quantity (less or equal then basic) have to be check and the price modified.
    here is my, i have a BP in multi currency = C20007, and items from A00002 to A00005 in the code at the
    If oDoc.Add <> 0 Then there is less than and more than sign, but here is not visible...
    Sub addSalesOrder()
            Dim oDoc As SAPbobsCOM.Documents = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
            oDoc.CardCode = "C20007"
            oDoc.DocType = BoDocumentTypes.dDocument_Items
            oDoc.DocDueDate = Today
            oDoc.DocCurrency = "CAD"
            oDoc.Lines.ItemCode = "A00002"
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 100
            oDoc.Lines.Currency = "USD"
            oDoc.Lines.Add()
            oDoc.Lines.ItemCode = "A00003"
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 100
            oDoc.Lines.Currency = "USD"
            oDoc.Lines.Add()
            oDoc.Lines.ItemCode = "A00004"
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 100
            oDoc.Lines.Currency = "USD"
            oDoc.Lines.Add()
            oDoc.Lines.ItemCode = "A00005"
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 100
            oDoc.Lines.Currency = "USD"
            If oDoc.Add <> 0 Then
                MsgBox("Erreur " + oCompany.GetLastErrorDescription())
            Else
                Dim newCode As String = oCompany.GetNewObjectKey()
                MsgBox(newCode)
                AddInvoice(newCode)
            End If
        End Sub
        Private Sub AddInvoice(ByVal e As Integer)
            Dim oDoc As SAPbobsCOM.Documents = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
            oDoc.CardCode = "C20007"
            oDoc.DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items
            oDoc.DocDate = Today
            oDoc.DocDueDate = Today
            oDoc.DocCurrency = "CAD"
            oDoc.Lines.BaseEntry = e
            oDoc.Lines.BaseLine = 0
            oDoc.Lines.BaseType = 17
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 580
            oDoc.Lines.Currency = "USD"
            oDoc.Lines.Add()
            oDoc.Lines.BaseEntry = e
            oDoc.Lines.BaseLine = 1
            oDoc.Lines.BaseType = 17
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 1233.58
            oDoc.Lines.Currency = "USD"
            oDoc.Lines.Add()
            oDoc.Lines.BaseEntry = e
            oDoc.Lines.BaseLine = 2
            oDoc.Lines.BaseType = 17
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 447.01
            oDoc.Lines.Currency = "USD"
            oDoc.Lines.Add()
            oDoc.Lines.BaseEntry = e
            oDoc.Lines.BaseLine = 3
            oDoc.Lines.BaseType = 17
            oDoc.Lines.Quantity = 9
            oDoc.Lines.UnitPrice = 997.5
            oDoc.Lines.Currency = "USD"
            If oDoc.Add <> 0 Then
                MsgBox("Erreur " + oCompany.GetLastErrorDescription())
            Else
                MsgBox("Good")
            End If
        End Sub
    Regards,
    J.
    Edited by: Janos  Nagy on Jul 30, 2008 5:02 PM

  • BTHF currency problem

    In Bank Statement Processing I do not find a way to match lines with documents, or to make an external reconciliation if the bank statement line and the BP currencies are differents.
    When I am choosing such a customer, its documents do not appear.
    No problem to make a payment in local currency against a document in Foreign currency, but such outgoing payments remain "invisible" when trying to match them with the bank Statement.
    Is that really a bug, or am I missing something? It seems to be making BTHF unusable for users sending (or receiving) foreign currency payments from (to) their local curency bank account.

    Problem solved.
    Format definition is to be done to fill not only the CreditAmountLC / DebitAmountLC fields but also the CreditAmountFC / DebitAmountFC and CreditCurrency fields.

  • Default document currency as per document type for sales order

    Dear All,
    We are facing problem in Default document currency as per document type for sales order,
    Our requirement is not to give currency in customer master & set it as default document currency as per document type,
    for example: Document type 'OR' default currency 'INR',
                         Document type 'ZEU' default currency 'EUR',
                         Document type 'ZUS' default currency 'USD',
                         Document type 'ZNP' default currency 'NRP,'
                         Document type 'ZAF' default currency 'RAND,'
    Is it any how possible in standard setting ?,
    Regards,
    Sai

    Hi,
    The system proposes the sales document currency from the customer master record of the sold-to party. You can change the currency manually in the document or change in currency in customer master. If you change the currency, the system recalculates prices for the entire document.
    to determine different currrency in sales docuement you need to write an user exit and then overwrite the docuement currency copied from customer master. Try user exit 'USEREXIT_MOVE_FIELD_TO_VBAK' under include MV45AFZZ for this change.
    with regards
    vivek.

  • Problem with documents on iCloud.

    I have a problem with documents on iCloud, I can`t use it with Pages on Mac and iOS too, Pages not view any documents and can not approach to save documents and not save new documents to iCloud. Any idea?
    Thank you for help.

    Hello,
    Winston and Shayari,
    I have also faced this problem with document on iCloud, I couldn't saved the documents to iCloud,
    But I found this article problem posted by Hindi love Shayari San and I found the solution this way:
    I signed out, then singed in again renabled the iCloud and it works.
    I could do this with the instructions of Winston told to Shayari.
    Well, a big thanks from my side.
    Veena

  • Foreign currency Problem

    Hi
      MY client runs foreign currency through some background job every day  but some of document are posted wrongly  on 18.12.2011monly currecny AUD.  but I have reversed the document and repost it.
    If it is run the foreign currency for the date 18.12.2011, it will consider old amount or not.
    pls advise me.

    Hi
    we run the foreign valuation every day, we have run  foreign currecny revaluation on 1812.2011. now we reversed wrong posting which are japneese currency only,
    my question is can I reverse the foreing currency documents for JPY Currency, if i reverse the foreing currency documnets(JPY documents) and run once again, whether will it impact on other currency also or not.
    Pleae help me, this is high priority.
    Thanks,
    Guna

  • Problem with document splitting

    Hi,
    I am encountering a problem with document splitting, where in while doing clearing of down payment against miro invoice profit center of first line item is over ridding profit center of second line item (line items are two different materials in purchase order).

    Hi Milind,
    Thanks for the reply.
    I've done the below configuration and assigned cost/profit center update. It now works for profit center split. It still does not split accordingly per cost center though.
    SAP Customizing Implementation Guide > Financial Accounting (New) > Financial Accounting Global Settings (New) > Ledgers >Ledger > Assign Scenarios and Customer Fields to Ledgers
    In the below configuration, cost center is not an available option. Unlike the profit center which is available here.
    SAP Customizing Implementation Guide > Financial Accounting (New) > General Ledger Accounting (New) > Business Transactions > Document Splitting > Define Document Splitting Characteristics for General Ledger Accounting
    The profit center split looks fine now, however the cost center split still is only reflected in the expense items and not on the AP item.
    Any ideas on how to actually split the AP line items according to the cost center assignments ?
    Edited by: Patrick on May 9, 2011 7:46 AM

  • Billing Number Range problem ( accounting document not generated)

    Hi All,
    I have created some billing types and for them I have assigned some internal number ranges. Now when I create a billing document it is getting saved with the proper number range but no accounting document is getting generated.
    Also when I try to release the invoice I am getting an error which says " *Incorrect doc.no.: 10000009. Select document number between 0090000000 and 0099999999* "
    K I N D L Y     suggest  as U R G E N T.
    Regards,
    Danny.

    Dear,
              Billing Number Range problem ( accounting document not generated) is not an error because when you create billing document then accounting document not generated. Accounting done after posting of that billing document with VFX3 or VF02 T.Code by account department.
               And for second issue you had define number range between 0090000000 and 0099999999 for invoice so thats why it happen.
    Regards,
    Sandip Shaktavat

  • Problems with Document Connect

    I have a problem with Document Connect. I am unable access office live workspace.
    I have been on the help line with microsoft but they were unable to help.
    Then I went to an apple store and was informed by one of the sales assistance that Document Connect never worked with the apple. Well what was the point in having it then?

    I wish I knew what Document Connect is. I'd bet I could fix it. Not really, but what is it?

  • Currency problem in accounts receivables ageing report

    when i generated accounts receivables ageing report i got ageing in UAE DIRHAMS only and  i have receivables in two different currencies in UAE DIRHAMS AND IN EURO , i want to get all receivables in the ageing report in euro only but i couldn't please how to solve this currency problem
    thanks in advance

    Hi
    Please refer this transaction code for account receivable ageing report
    S_ALR_87012168 - Due Date Analysis for Open Items
    Regards
    Praveen

  • Defaulting Document Currency in Sales Documents

    Hi,
    We have a requirement where in we need to default the document currency in a sales document based on certain rules.
    As far as i know, the document gets picked up automatically if a Billing currency is maintained in the Sales Area data of the Sold to party.
    Just wanted to find out is there any other way by which we can pick the currency in a document ? I am looking at non custom ways of achieving this.
    Thanks in advance
    Varun

    Hi,
    CURRENCY will be taken from the CONDITION RECORDS of CONDITION TYPE in VK11
    That is the Priority over others.
    regards,
    santosh

  • Problem in document distribution

    Dear guys,
    I am facing problem in document distribution and having error attached
    if anyone can help me in this regard.
    Thanks in advance

    Hi Kashif,
    Distribution point is a classification in terms of whether data is coming from internal SAP user or organization unit.
    The distribution point is relevant to the following distribution types:
    ¡  ORI (post)
    Distribution point receives a copy of the originals
    ¡  LET (post)
    Distribution point receives mail with references to documents
    ¡  PLO (plotter)
    Distribution point receives a file for plotting
    ¡  COV (list of documents)
    Distribution point receives a printed list of the documents that are to be distributed.
    Refer SAP help for more details Defining the Distribution Type - Document Distribution - SAP Library
    Hope this helps.
    Regards,
    Deepak Kori

  • Change Currency in Park Document

    Hi,
    I have parked one document with currency USD, now I want to change same document from USD to SAR in FBV2. How can I change currency field, please advise!
    Regards
    VS Rao

    Hello VS RAO
    It is not possible to change the currency field in a parked document
    after at least one G/L account line item is entered. This is highlighted
    in SAP Note 851736
    'ENJOY: Currency in parked document can be changed'.
    There are a number of reasons why the currency should not be changed.
    One such reason is mentioned in the SAP Note:
    ..'You park a cross-company code document with an Enjoy transaction. You
    change the document currency in the parked document. The currency is
    adjusted for the source company code only. The original currency remains
    in all other company codes....'
    Only possible solution is to delete these parked documents which
    have incorrect currencies entered.
    Hope this clarifies
    Ray

  • Currency audit of documents in Portal

    I would like to audit the currency of the documents being published on my Oracle Portal intranet. Meaning, I'd like to run a select statement agains the iasdb database which returns information on Word, Excel, Powerpoint, Project and PDF files which have not been updated in the last 30 days. Any advice on how much information can be retrieved on these documents and from where, would be appreciated. My organisation has a policy that only current documents be published on the Intranet and I need to be able to identify documents which are not being updated. Thanks.

    Hi Ram,
    My question is: Is it possible to store the documents in WAS itself by creating a folder and access it?
    Yes, go the below path in server (WAS, if its Windows):
    drive:
    usr\sap\SID\JCXX\j2ee\cluster\server0\temp\webdynpro\web\<create_your_folder>
    Here you have an option to read/write the documents (any type) under your_own_folder. You've TWO advantages placing the files here:
    1. you can access using the shared path when coding in java or use the drive path directly
    2. you can access this location using portal url: http://<hostname>:<port>/webdynpro/resources/<your_own_folder>/*.FILE_EXT
    this is useful when using images specially!!
    And imp'ly is to check with your Basis admin, about this file_system and the projected size of the folder(s) and get approval. B'coz it helps them in size plannings.
    Thanks,
    MS

  • Copying PO STO currency to Accounting Document

    Hi,
    Do you have any idea how I can copy the PO STO Currency to Accounting Document in VF01?
    I managed to copy the PO STO currency to the billing document by using USEREXIT_PRICING_PREPARE_TKOMK.
    Now I need to make sure that the accounting document will be using the same currency as the Billing Document.
    Please Advise.
    regards,
    NC

    Hi
    See Note 301077 - User exits for the interface to accounting.
    I am not sure if the currency is OK in invoice. Check how is copied the field WAERK to delivery (NLCC, am I right?). So, I think that you have to check the copy rules and think if you need create customer VOFM for your requirement. First of all, check the value of currency in table LIKP.
    So, check:
    - VTLA: how is copied currency from PO to delivery.
    - VTFL: how is copied currency from delivery to IV invoice
    Check other fields in VTFL for the relevant items as pricing exchange rate type and pricing source.
    I hope this helps you
    Regards
    Eduardo
    Edited by: E_Hinojosa on Jul 8, 2011 9:35 AM

Maybe you are looking for

  • How to Determine the coordinates of the cursor in JTextArea

    I've made an Editor and i'm trying to write down in a status line the position (Line and Column) of the cursor. How can I determine it.

  • HTML Snippets not working for most browsers

    I have a page with a flash movie in the background, which uses the following code in an HTML snippet: <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#v ersion=

  • About DML Trace

    A Table is Deleted and I want to trace from which computer (not user) this DELETE statement is issued. How can I do this? Please Reply. With Regards Jamil Ahammad

  • Toplink UpdateAllQuery Issue

    We're experiencing some problems with an UpdateAllQuery when trying to update some fields belonging to an aggregate mapping within the component we're trying to update. We want to set these fields to NULL. One of the fields in the Aggregate mapping i

  • Email setup craziness

    I spent about 2 hours on the phone with Verizon tech support yesterday, with a very nice and diligent support person. The 1st hour was spent getting the red light out on my Westell 6100 DSL modem. The next hour was spent trying to figure out why Thun