Cannot perform rounding for invoices with a currency other than the documen

Hi all,
I need some one to help me
I want to process the incoming payment.
The AR Invoice is using USD
In Incoming Payment i want to pay using SGD,
I already set the BP in all currency
I also set the Bank account in Bank transfer payment mean in all currency.
But when i add the document i saw the message like this
"Cannot perform rounding for invoices with a currency other than the document currency.  [Message 3524-31]"
What should i do ?
Thanks in advance
Regards
KK

Hi gordon,
Thanks for your respon.
I still do not understand, what you mean.
I test it in SBO DEMO Au which is the local currency is AUD and the system currency is also AUD.
Is the any special setting for this issue?
Or Do i miss the settings in SBO
My version is 8.81 pl 9
Thanks in advance

Similar Messages

  • How to park an invoice with a vendor other than the PO vendor ?

    Dear all,
    Can anybody pl give an idea about how i can park an invoice for a vendor which is different from the PO vendor ?
    regds
    amitava

    hi
    go to MIR7
    here give all detials then in details tab change the po vendor to any other and save

  • Can i Match invoices with a currency different from the purchase order curr

    Dear Valued Consultant,
    Can i Match invoices with a currency different from the purchase order curr
    Thanks

    Hi,
    As a functionality, Payables will not allow matching an invoice to a purchase order that is in a different currency.
    Refer Oracle Public sector payables user guide for 11i (page 4-94).
    I understand that there is an enhancement request (3286623) logged for this functionality.
    Please refer Note:172291.1
    - Thiagu

  • 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

  • FM for convert to local currency other than CONVERT_TO_LOCAL_CURRENCY

    Does anyone know any other FM which converts into local currency???
    But it should be other than CONVERT_TO_LOCAL_CURRENCY..

    Hi Ajay,
    Just you can check it out in SE37.
    CONVERT_TO_LOCAL_CURRENCY_N
    CONVERT_TO_LOCAL_CURRENCY_O.
    CONVERT_TO_FOREIGN_CURRENCY
    Chk this Link
    convert to local  currency
    Reward Points if Useful
    Regards
    Gokul

  • Can I use my Ipod with a computer other than the one its installed to???

    I want to use my Ipod Mini with another computer because mine currenty has a virus, but when I try to it won't let me do anything to my Ipod because someone else ready has their Ipod connected to it. I can do stuff to their playlist and library but nothing to mine. PLEASE HELP!!!
    Ipod Mini   Windows XP  

    Please help

  • Will not charge with another lead other than the one it came with??

    I needed a longer charge lead so have brought a 3 x 3metre usb charging leads so far and none of them work with the plug or plugging into a computer, Can anyone help??

    Most USB ports on a computer do not provide enough power to charge an iPad efficiently. The best way to charge your iPad is to use the charger that came with it and plug that into a good wall outlet.
    When purchasing additional cables make sure to purchase cables from reliable and certified third party suppliers or from Apple. Cheap knock off cables are usually of poor quality and may not work properly.

  • Drawing with an effect other than Alpha Transparency and XOR

    Hello,
    I'm looking for a way to draw images (Or anything else for that matter) with simple effects other than the Alpha and XOR effects, such as Multiply, Subtract and Bitwise AND. I've realized it has something to do with the setComposite function, but I haven't figured out how to get further from there, and the documentation didn't seem very clear. This is my first time using Java fro anything graphical; most of my projects are done in PHP and C++.
    Could anyone help me with this, perhaps with an example?
    Thank you very much!

    I'm using Graphics2D. I have one big BufferedImage and other smaller once which I use as sprites. I'm rendering the sprites to the big buffer using drawImage. I need an efficient way to render some of the sprites with an ink effect such as subtract. I know it's possible to do it with a XOR effect by placing setXORMode(c1) before the drawImage function.

  • Keychain services API and dealing with Keychains other than the default

    Hello,
    So I've been doing some C work with the Keychain services API. But I can't figure out how to set the Keychain for a function to something other than the default, which is set by passing NULL.
    For example,
    status = SecKeychainAddGenericPassword (
    *NULL, // default keychain*
    10, // length of service name
    "SurfWriter", // service name
    10, // length of account name
    "MyUserAcct", // account name
    passwordLength, // length of password
    password, // pointer to password data
    NULL // the item reference
    This function is defined here:
    http://developer.apple.com/documentation/Security/Reference/keychainservices/Ref erence/reference.html#//apple_ref/c/func/SecKeychainAddGenericPassword
    and the data type for the Keychain is here:
    http://developer.apple.com/documentation/Security/Reference/keychainservices/Ref erence/reference.html#//appleref/doc/cref/SecKeychainRef
    But neither helps me at all for being able to edit a keychain that isn't the default Keychain.
    I appreciate any help, thanks.
    Message was edited by: Smerky

    http://developer.apple.com/documentation/Security/Reference/keychainservices/Ref erence/reference.html#//apple_ref/c/func/SecKeychainOpen

  • Aprroval for Invoice have due date greater than 100 days

    Hi all!
    I would like to create query to approve for Invoice have due date greater than 100 days.
    SELECT 'true' from OINV  where max(datediff(day, OINV.docduedate, getdate()))>100 and OINV.docstatus ='O' and  cardcode = $[$4.0.0] group by cardcode
    It's not working. Can you help me!
    Thanks!

    Hi Tien,
    Hopefully not trying to teach you how to suck eggs here, but it looks like the query is doing too much. There shouldn't be a need to perform a "GROUP BY" in a query to dictate if an approval is to be triggered or not, only the criterai to make it happen.
    For examle, the following code will send a transaction for approval if the customers code equals a specific reference.....
    SELECT 'TRUE' FROM ORDR T0 WHERE ${ORDR.CardCode} = 'ABC001'
    If you're wanting a query to just return a boolean answer based on the date criteria, you might want to try adapting your query to something like.......
    SELECT 'true' from OINV where max(datediff(day, ${OINV.docduedate}, getdate()))>100 and ${OINV.docstatus} ='O' and  cardcode = ${$4.0.0}
    (As an additional tip, in order to test a query that you're wanting to use as either a formatted search or approval type selection, when in the transaction, if you locate the relevant saved query under "Tools > Queries > User Queries" etc, where you have references to specific fields e.g. ${ORDR.CardCode}, this will pick up the values from the current record and give you a what if scenario. I tend to have just a "Temp" query I use for WIP type queries of this nature.)
    Note - You need to replace the bracket's "{}" with square ones, I've used the others as the forum posts as a http reference.
    Hope this helps!
    Julian

  • Report showing GL Accounts with  document posted in currency other than local currency

    We need a report that shows all the GL Accounts that had a document posted in currency other than local currency during the month. The purpose of such a report is that we should not miss any Foreign Currency Gain or Loss at the end of the month.
    Is there such a report already in Standard SAP ? Please let me know. Points guaranteed.

    Hi Ajay sir,
    It's never be a bad idea. But I think Rajeev might be looking for a stright report than work around, which is not available.
    Regards...
    Jose

  • One question I am looking for help with is, when you hit the history button I want my last fifty pages to show up instead of just fifteen. Is it possible to

    one question I am looking for help with is, when you hit the history button I want my last fifty pages to show up instead of just fifteen. Is it possible to change that setting?
    TY

    The History menu can only show that fixed maximum of 15 as that is hard coded.
    Maybe this extension helps:
    *History Submenus Ⅱ: https://addons.mozilla.org/firefox/addon/history-submenus-2/

  • I have MacBook Pro Retina, but dint get pages, numbers and keynote for free with it, but others did. What to do?

    I have MacBook Pro Retina, but dint get pages, numbers and keynote for free with it, but others did. What to do?

    Solved the problem- I contacted apple on their support line found on this page... http://www.apple.com/uk/support/mac/ and they were really helpful and talked me through what to do on the phone, I now have all three productivity apps. Hope this helps

  • 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

  • Error creating dynamic page in an application with a schema other than portal30

    Running 9iAS 1.0.2.2 on Solaris.
    Database 8.1.7.1
    I cannot seem to create a default dynamic page (select 'x' from dual) in an application that has a schema (e.g. test) other
    than portal30. The error seems to be when portal tries to compile the dynamic-page package, it references itself from
    within the package but prefixing the call with the other (test) schema. It never seems to compile? What seems to be the
    problem? Any ideas?

    If you are using any database object other than the applcation owned,then it has to be prefixed with the schema owner.
    For example,
    if the application schema is based on the schema "schema1" (say)
    and your query is based on one of the object on "schema2"
    and if you have necessary privilegves to access that object from schema2, then the compiler wont throw any error.
    Can u explain, what u problem you are experiencing in detail?
    (Also, if u give me the portal version, I can cross-verify that).

Maybe you are looking for

  • MacBook will not power up

    Hello all,       Well last week I was watching a video on my MacBook (white, 2010) and it suddenly went dead. I plugged it in and the lights on the charger was green. I could not get it to power up. When I pushed the power button I got nothing. There

  • How I can check in formula field does Source table has rows count more than zero?

    I have 2 tables in data set source: tbl_Quote and tbl_Invoice. Report should show an Invoice Number. If an invoice isn't issued yet I want display an Order Number instead of Invoice Number. I'm using a formula field for this purpose. I tried formulas

  • ASM disks in RAC need to be shared disks?

    Hi all, sorry for the very basic question but I'm getting a lot of confusion... I have clusterware installed on node1 and node2 and I'm going to create ASM instances on both nodes. Does the ASM disks need to be physically shared among the two nodes?

  • Applying a sequence of workflows

    OK how about this anyone. You have several workflows - it's too laborious to write one big long joined up workflow - and you want to apply them in a sequence. Is there any way of doing this? Do you apply a workflow and get applescript to get the next

  • Uninstalling a program

    I downloaded Limewire and now I'm trying to get it off my computer. I've put some files in the trash, but I can't completely uninstall the program. There was no "uninstall" program that came with the file I downloaded, so I'm stuck with it. It just s