Exchage rate should not  come during payment to the vendors

Hi Sap Experts,
My client have some different requirement, 
At the time of MIRO system is picking the Exchange rate from OB08 table and converting to company code currency. When will make the payment to vendor, through company code currency system is picking exchange rate  from OB08 table and it is showing exchange rate Gain/loss Account, which our client does not required.
At the time of payment to above vendor, system should picking only liability created value and should not show any exchange rate difference.
Thanks in advance
kareem

Hi,
If exchange rate is same at the time of invoice and payment then there will be no issue.
But when there is difference you have to show the Gain and loss in your account.
Otherwise how will you entry match.
Eg invoice 100 USD with exchange rate is 50 INR
When you are paying 100 USD exchange rate is 51 INR
Then entry will come as
Vendor A/c 5000  Dr
Loss Exhange rate 100 Dr
To Bank A/c        5100 Cr
If you don't show the loss how will you match the entry.
As you have to show what you have paid through bank which is not changeable

Similar Messages

  • Should not come to AE when the IDOC segment missed

    Hi,
    I 've done the multimapping from IDOC to mul.files.
    Here my sender IDOC line Item contains 2 segments.
    Let us assume the first segment named Z1CONSGROUP and having some fields which has mapped to my receiver end files.
    In production system we should not have the case where there is no Z1CONSGROUP segment.
    Here if the IDOC doesn't contain this segment then it's a payload error and it reached to RWB status : system error.
    But, i want to prevent this in production when this Z1CONSGROUP segment doesn't contain the idoc it should n't reach to AE.
    How can i do that...is there any option to maintain such a scenario in XI.
    Please help me out on this.
    Kind regards,
    Y.Raj

    >
    YeswanthRaj Kumar wrote:
    > Hi,
    > I 've done the multimapping from IDOC to mul.files.
    > Here my sender IDOC line Item contains 2 segments.
    > Let us assume the first segment named Z1CONSGROUP and having some fields which has mapped to my receiver end files.
    > In production system we should not have the case where there is no Z1CONSGROUP segment.
    > Here if the IDOC doesn't contain this segment then it's a payload error and it reached to RWB status : system error.
    > But, i want to prevent this in production when this Z1CONSGROUP segment doesn't contain the idoc it should n't reach to AE.
    > How can i do that...is there any option to maintain such a scenario in XI.
    > Please help me out on this.
    >
    > Kind regards,
    > Y.Raj
    the easiest thing to do is,
    1. Use a condition on Z1CONSGROUP and use the EX operator (ref: /people/shabarish.vijayakumar/blog/2006/06/07/customise-your-xpath-expressions-in-receiver-determination)
    2. if the EX gives you a fail, then provide no receiver and use the option 'Options for Behavior at Runtime If a Receiver Is Not Found' -> End Message Processing Without Error (Restart not Possible)
    3. Else provide the right receiver and let the flow continue.

  • User should not be able to change the payment terms

    Dear All,
    My issue is that user should not be able to change the payment terms in any of the document.I have tried to do it through authorization but it is not working out.
    Mona.

    Dear Mona,
    This may only be done through SP_Transaction_Notification.
    Thanks,
    Gordon

  • Sales BOM Header Material should not come in J1IJ or delivery

    Hi,
    We have one depot plant,  Now i am using the sales BOM, I have created one Material header with item category LUFM  pricing at item level only, BOM is created, When I am entering the Header material in SO  then alll child items are coming, then while creating the delivery all the child items and also the header items is coming in the delivery but same is coming in the J1IJ  also  I want that the header materal should not come in the J1IJ  and it will be better if it is not in delivery  if i set the indicator delivery block for header materia in SO  then that item si not coming in Delivery   but SO  is shoing  in Open SO  as the header material is not delivered.
    So is there any setting for this.
    Also  in quotaion I have maintain the item category assignment I have assign QT - LUFM - AGN
    but whhen I am entering the header material in VA21  Ffor which the item category is LUFM system is giving the error message
    No item category available (Table T184 QT LUMF  )
    regards,
    zafar
    Edited by: zafar karnalkar on Nov 24, 2011 7:56 AM

    Hi,
    Yes I want that the Header material should not come in J1IJ  only.  but i check the program of J1IJ  it is selecting all the materials  ref. to delivery number  without any further check. also is it possible  insted of SO if first we create the quotation  in quotation therr willl be header material as well as child item  but in SO only child item should get copy when creating ref. to that quotaion,  I try with item category copy control,  but then system is selecting non of the materils from Quotaion to SO,  and when I allowed coopy control of header material from Quotaion to SO  then it is copying Header as well as child items in the SO.
    regards,
    zafar
    Edited by: zafar karnalkar on Nov 24, 2011 10:53 AM

  • Text visibility only in Print Preview Mode & Should not come in Hard copy !

    Hi All,
    Is it possible to have a text which is visible only in Preview but should not come in Printed hard copy ?
    Regards
    Ajay

    Hello,
    In the FM OPEN_FORM of your print program you will be passing whether it's print preview or not in the Options parameter
    i.e.
    CALL FUNCTION 'OPEN_FORM'
      EXPORTING
        FORM       = 'Z_SAMPLE'
        OPTIONS    = itcpo
    Just have an if statement in the SAPScript to only print this when that value = 'X' (i.e. IF &itcpo-tdpreview& eq 'X').
    Regards,
    Michael

  • This method should not be called anymore. The client was already released i

    Hi,
    while configuring Business Packager for Projects 50.3 fo, we made few changes in R/3 side as per the documentation. after that we are getting following error in portal
    "This method should not be called anymore. The client was already released into the pool or the pool entry was deleted"
    all the chages were reverted in R/3 system still we are getting the same error.
    Can any one help on this issue....
    Thanks in advance and for early responce higher marks would be awarded!!!..     
    Regards
    Ravi Sankar Karri

    Hi,
    Well there were errors in how stop works:
    "Stopping a thread with Thread.stop causes it to
    unlock all of the monitors that it has locked (as a
    natural consequence of the unchecked ThreadDeath
    exception propagating up the stack). If any of the
    objects previously protected by these monitors were in
    an inconsistent state, the damaged objects become
    visible to other threads, potentially resulting in
    arbitrary behavior. "
    I do understand that you want to have something like
    killTheTreadIDontCareAboutConcequences-method, but
    it's better to let all your methods that you want to
    be able to terminate take a timeout argument, and deal
    with the termination in the method. (Close the
    sockets/streams etc that you are blocking on).
    /KajThe point is, it is not always possible to make those blocking methods stop, via some magic "timeout" thingamabob. The bottom line is still that the blocking methods were written incorrectly to begin with (to possibly block indefinitely), so one cannot come up with an across-the-board solution, other than getting the root cause fixed in the first place. However, one is not always in control of fixing the root cause.

  • My macbook air did not come with any of the ilife apps? why is this

    I bought a Macbook air, but it did not come with any of the ilife apps? why is this

    Launch App store from the Dock.
    Sign in with your Apple ID and password.
    Click the "Purchase" tab at the top.
    You should see a line saying "You have 3 Apps to Accept".
    Click the "Accept" button on the right.
    A new Mac comes with 90 days of free tech support from AppleCare.
    AppleCare: 1-800-275-2273
    You can call AppleCare.
    Best.

  • My ipad screen is black and will not reset and does not come back after restoring, the info is still on internal because i can see it on itunes in the apps catagory it's the display is not working, can see backlight but black...does anyone know how to fix

    my ipad screen is black and will not reset and does not come back after restoring, the info is still on internal because i can see it on itunes in the apps catagory it's the display is not working, can see backlight but black...does anyone know how to fix, other than take it to apple.
    thanks!

    The wish list only works on apps you have to pay for. To get it tap the icon of the app you want to save. After it opens at the upper right corner is a box with a arrow. Tap that then tap add to wish list list in the box that opens.

  • My iPhone 5 screen is black and will not come back on. The phone still works when paired with my vehicles Bluetooth what's wrong with it, and can I fix it?

    My iPhone 5 screen is black and will not come back on. The phone still works when paired with my vehicles Bluetooth what's wrong with it, and can I fix it?

    I have a similar problem.  I restored my iPhone 5 to the latest available OS.  After completing the process the phone never restarted.  The phone was fully charged when I restored it but now refuses to charge past the red battery icon.  I have been able to get the phone in UFD mode several times and have been able to load the new OS on the phone.  The Apple logo does come on and the software fully loads.  iTunes tells me the phone will restart but never does.  I left it to charge all night but it never appeared to load the battery.  This morning I went to the Grand Central Terminal apple store for help.  A woman at the store plugged the phone in but it never charged.  She absolutely refused to believe that I got my phone in UFD mode and loaded any software on.  I don't think it is a battery issue.  The only solution I was given was to buy a new phone.  Repairing it was out of the question.  At this point the phone is completely useless.  Thanks in advance for the help.

  • [svn] 1931: the ja_JP swc' s should not have been removed from the locales package, I' m adding them back in

    Revision: 1931
    Author: [email protected]
    Date: 2008-06-03 13:30:46 -0700 (Tue, 03 Jun 2008)
    Log Message:
    the ja_JP swc's should not have been removed from the locales package, I'm adding them back in
    Modified Paths:
    flex/sdk/trunk/build.xml

    Hi Manny1/mreider,
    First, I’m sorry to hear that you two may be having issues utilizing a recently purchased Gamers Club Unlocked (GCU) Gifting Card.
    In all reality, our stores don’t even need to exchange the Gifting Card for the standard GCU card, although that option should be available to you if absolutely needed. The GCU Gifting Card can be applied to your My Best Buy membership by simply following the directions on the back of the card.
    Thanks for sharing your feedback and I hope for a much better experience when you return to your local Best Buy to get this taken care of! If needed, please don't hesitate to ask for a manager or supervisor.
    Brian|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

  • My Ipod touch 4 will not come on i have the 4th gn .. Can SOMEBODY ANYBODY HELP ME !!!!!!!!!!!!!!!!!!!!!!!!!!!!! please !

    My iPod touch will not come on , i have the 4th gn and 8gb . And i also dont know how to reset it ,,, Can anybody HELP me !!!!!!!!!!!! please please please please !!!!!!!!!!!!!!!!!???

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar 

  • How to unblock the payment to the vendor , even though the lot will be get

    Hi,
    we receive the material from vendor . when store people unloaded, it was get broken.
    so quality will reject the lot for the reason. but if we reject vendor will not get the payment
    since this is not the vendor mistake. he expect for the payment.
    how to unblock the payment to the vendor , even though the lot will be get reject .

    Hi
    Can you not make UD code as Partially accepted.
    Put OK material in Unrestricted
    For NOT oK material put into block stock.
    From Block stock you can move to QRNT (Quarantine storage Location - 311 mvt type) or directly move to Unrestricted(mvt type 343)
    Form here you can move material to Scrap by 551
    This will give payment to vendor & Qty can be scrapped.

  • How to clear the down payment against the vendor invoice in the payment program?

    A down payment is made $25 Later an invoice is posted for $100 Now i want to Pay $75 to Vendor But the Automatic payment program  is not clearing the down payment against the vendor invoice. Could you please help how to clear the down payment against the vendor invoice in the payment program?

    Swathi,
    Need your help i have a strange situation
    1) F-48 and document posted with document no = 15..... in company code = L002 with payment block getting populated automatically
    2) F-48 and document posted with document no= 15..... in company code = Us11 without payment block and the screen does not even show payment block, I had to check this from BSEG table
    My question is
    a) How and where does this payment block is triggered through configured and how to process next steps.
    b) when I use F-48, how do we do the actual payment, is there a check printing and linking it to the KZ document or is check printing done outside the system and the KZ document type does not have any linkage.
    c) If I do FB60 for a higher amount how do we pay partial amount.
    Your response is appreciated.

  • Electronic Payments for the vendors

    Hello,
    We are going to implement the electronic payments to the vendors accounts using (BizTalk)...
    Is iPayment useful for that ? can we implement iPayment only for online payments not for all features ?
    More details:
    1- We have to realese the payment from ERP to a text file using a special format (mt103) which will be sent
    Through (Microsoft BizTalk server) to the bank server to deposit the amount in the vendor account !!
    2- After that we will get the confirmation from the bank in the same way .....
    Example of the text file ::
    +:20:001050000147+ <----------- Sequense number.
    +:32A:051031SAR1391518,42+ <----------- Date/Currency/Amount.
    +:50K:/##############+ <---------- Our Company Account number.
    ABCXYZ Company <--------- Our Company Name
    P.O.Box 000000 <--------- Our Company address 1
    WSD <--------- Our Company address 1
    +110022+ <--------- Our Company address 1
    +:52A:ABCXYZ001+ <----------- Company Code.
    +:57A:SAMBSARI+ <----------- Bank SWIFT.
    +:59A:/##############+ <---------- Vendor Account Number.
    Vendor XYZ <--------- Vendor Name.
    Vendor XYZ Address. <--------- Vendor Address.
    +:70:Online Account Transfer+ <--------- Description.
    Did somebody implement this before?
    We need the details and the best way to implement.
    We are using now a customized form to show the payments and confirmation button, after clicking the button the text file will be generated and placed somewhere in the server,,,,,, but we need to follow the standards ....
    Regards

    Hi I have implemented this before a in few project. There wasn't a standard way of approach but can be as follows.
    (if you want to pay single, use MT103 otherwise MT102)
    General structure:
    Create a unix directory and add this in utl_file_dir (or use database CREATE DIRECTORY command)
    Create a unix script that sends this information to bank via an agreed method, ftp or e-mail etc
    Single Payment :
    On the payment, enable tools option for earlier versions for a button as you did.
    Create file using utl_file in appropriate format.
    Payment Batches;
    Setup a bank which uses electronic format, format name and assign you program on it.
    Create payment batch, it will automaticly calls your format and program that is assigned to format.
    Create file for multiple payment
    It depends to bank, but you send identifier to bank and you get them back on MT940 where you can reconcile automaticly on cash management.
    Many other solutions available.
    I hope this helps
    Bilal

  • Rfq document once used as reference for po should not come in doc overview

    Sir,
    i want to create po with reference to rfq. the issue is that my client  daily creates30 po'swith reference to rfq. so once the rfq is adopted in po that rfq should not be seen in document overview. ONLY RFQ WHICH ARE NOT ADOPTED AS PO SHOULD BE SEEN IN PO DOCUMENT OVERVIEW.
    PLEASE HELP ME OUT SETTING THE PARAMATERS SO THAT USERS CAN ONLY SEE THOSE RFQ'S WHICH ARE TO BE CONVERTED INTO PO'S
    IT IS VERY URGENT
    THANKS
    Regards

    Hi,
    This can be done via user exit.
    EXIT_SAPLMEQUERY_001
    EXIT_SAPLMEQUERY_002

Maybe you are looking for