MRKO-No tax information found-Pls find the NOTE in Thread

Hi ALL,
While MRKO settlment I am getting an error " No tax information found".
Note :
Consignment inforecord with TAX Code Maintained
Checked in Goods issue table RKWA Tax code Picked up.
Condition records in MEK1and FV11 Maintained for tax
Material or info record is not flagged for deletion
The same data i have in quality and that is getting settled and why not in Production ?How can I make settlment do I have missed some thing?

Hi ,
There may be a possibility that the Tax code is not updated at Table Level .
Just check the table EINE with Info record category --2
Regards
Ramesh Ch

Similar Messages

  • I am finding  the No. of threads in use through the RWB

    Hi,
    WE have 2 server nodes,we want to compare the load distribution.
    I am finding  the No. of threads in use through the RWB -> Component Monitoring -> engine status -> Queues ... to find thread count (in use).
    I could see the thread count as 0.I even want to monitor Queues AFWCall.......
    when i press on AFWCall It shows null pointer exception.
    Pl help.
    Srini

    Hi Srinivas,
    I expect the error could be queue configuration on J2EE stack.
    That is set the Thread count corresponding to AFW queue, by increasing the thread count sufficiently we can observe the status of queue to be true.
    use the following url to find the status of the queue:
    https://<hostname>:<J2EE port>/MessagingSystem/monitor/systemStatus.jsp
    I think your problem gets resolved.
    Regards,
    Suraj Kumar

  • Where do I find the NOTES on my laptop after syncing iPhone?

    I have downloaded the latest software on my MacBook and my iPhone. However, after syncing, I cannot find the NOTES from my iPhone anywhere on my MacBook. Where do I find them? TIA
    Kaydeecee

    When you open Mail on your Macbook, look under "Reminders" in the left sidebar.

  • Cant find the notes tab

    I have looked under support and everywhere but i want to put notes on my ipod, its enabled for disk use. i cant find the notes tab i have an ipod nano

    On Windows look in 'my computer' and click on the iPod.
    If it's a Mac, do the same using 'finder'.

  • HT1296 I used sync to get notes from my i-pad to my computer. It apparently went to my windows 2007 but where do I find the notes on my computer?

    I used sync to get notes from my i-pad to my computer. It apparently went to my windows 2007 but where do I find the notes on my computer?

    Thank you.
    Your answer led me to the notes I was seeking.
    When I looked at the bottom of the left side in outlook I did not see any icon but I saw a little arrow.
    When I clicked on that it I was able to specifiy that I wanted an icon for notes.
    When I added the icon, I was able to click on the icon and find my notes.

  • Can you find the notes of your voice

    I was wondering, if any of you knew if you could see the notes you were singing on garage band. I've searched and searched and I can't find anything. Is there anything?

    I think no, there is no such table.
    you are to create a table himself and update it whenever a user changes its password. Each user will have only one record against his activity that can be further trapped to negate his access before 10 days by applying database triggers.

  • Where do I find the notes that were supposed to be synched on the computer

    I just did a restore and my notes did not sync...the notes from the iPad were moved to the iphone...they must be hidden somewhere on the computer hard drive....anyone know how to find them?

    Notes is included on the back up w/c you cannot view directly to your computer because it is an encrypted file and if you're using Windows you may use Windows Outlook to view those notes or if Mac it will be synced on your Mail app as long as you're using the Mail app on your Mac.

  • IPod Classic, can´t find the Notes folder on Finder in my Macbook

    Hello friends!
    I want to use my iPod as an external hard drive, I have the latest update, 1.3. The problem that I have is that I am not getting the Notes folder in my finder, can not even find my ipod on devices, I have a MacBook.
    Can anybody help me?
    Best regards,
    Opalencia

    Hello opalencia,
    So you are saying your iPod is not recognized by your Mac or iTunes? If that's the case, have you had a chance to check out this Apple support document related to this document?
    [iPod not recognized in iTunes and Mac desktop|http://support.apple.com/kb/TS1410]
    If you are able to get iTunes to recognize the iPod, make sure "disk use" is enabled under the iPod's Summary tab. Once you have done that, you should be able to open up the iPod in Finder and navigate to the notes folder.
    [Storing and reading notes with your iPod|http://support.apple.com/kb/HT2234]
    Hope it helps.
    B-rock

  • When i updated to ios 6.1.2 i cant find the notes app anymore

    was the notes app replaced by something else i cant seem to find it.. it was that small yellow type icon which looked like a letter. but now cant see it. it was handy for taking fast notes.. but now its gone i have reinstalled my ios 3 times and its still not there. can anyone help thanks.

    where is spotlight search ? have searched and the icon is just not there its not in a folder on iphone. its just missing.

  • Where can i find the 'notes' icon on my iMac?

    Bought an iMac a couple of years ago and only just realised the 'Notes' icon is not in the Applications so I can't sync notes with m iPhone or iPad. Can anyone help with this?

    Notes isn't available in Mac OS X versions prior to 10.8. Back up your data and download Mavericks from the Mac App Store.
    (101314)

  • Does the Extract Single Tone Information.vi only find the fundamental harmonic?

    I capture a waveform that only has 1 frequency.  If I use the Extract Single Tone Information.vi to extract a single tone, is this single tone the fundamental harmonic?  And if I feed the residual portion of the waveform into the Extract Single Tone Information.vi, will the next tone be the second harmonic?  And so on?  Is it possible to compute the total harmonic distortion just by feeding the the waveform into the Extract Single Tone Information.vi over and over again (only feed the residual waveform into the vi continously)?
    Message Edited by solitude on 08-18-2005 09:28 AM

    Notice the title of the vi:  Extract SINGLE Tone.  It is expecting only one frequency.  This vi is not intended to handle a carrier frequency or audio with harmonics.  You say that you capture a waveform that has 1 frequency.  If this is so, then there should be no harmonics.  To measure harmonic frequencies, you must perform spectral analysis.  To measure total harmonic distortion, there exists a THD vi in the Waveform Analysis palette.
    - tbob
    Inventor of the WORM Global

  • TRIED THis CODE for TO FIND THE FIBONACCI USING THREAD ,BUT SHOWING ERROR FOR FOLLOWING CODE  fib = fib(k+1);

    showing following error in line 34
    error: cannot find symbol
    fib = fib(k+1);
           ^
      symbol:   method fib(int)
      location: class FibN
    1 error
    import java.util.*;
    class AsynchFunctionTest
    public static void main(String[]args)
    Scanner in = new Scanner(System.in);
    System.out.print("enter value for n");
    int n = in.nextInt();
    FibN t = new FibN(n);
    t.start();
    try
      t.join();
    catch(InterruptedException e){}
    System.out.println("Fib("+n+") = "+ t.getResult());
    class FibN extends Thread
    private int n;
      private long result;
    public FibN(int nn)
      n = nn;
      public void run()
    long fib = 1;
    int k = 0;
    while(k < n){
    fib = fib(k+1);
    k++;
    result = fib;
    public long getResult()
    return result;

    rinojoseph wrote:
    sorry for that this is the error i getting for that code
    error: cannot find symbol   line 34
    fib = fib(k+1);
           ^
      symbol:   method fib(int)
      location: class FibN
    1 error
    Process completed.
    sorry
    Hmm - well you declared 'fib' like this:
    >
    long fib = 1;
    >
    So how do you expect to call a 'long' as if it were a function?

  • Problem with MRM_INVOICE_CREATE,Debit Notes and Withholding Tax Information

    Hi!
    I have a problem with MF MRM_INVOICE_CREATE.
    We use this MF to create a Debit Note. The problem is that the Debit Note is created without the withholding tax information.
    I send the info in this parameter: i_rbkpv-h_rbws.
    Do you have any idea? I couldn't find any information about this. I tried an alternative solution using a batch-input but we had some problems with user permitions (this MF is called from a Z RFC that is called from an ASP application).
    Thanks in advance!
    Bettina

    Hey, thanks.
    I send your solution to the person who was trying to solve this problem.
    For sure will solve the problem because, in a previous version, we were using the bapi you told me. For some unknown reason, they changed for the MRM_INVOICE_CREATE.
    Thanks a lot!

  • Expense without tax was found

    Hello,
    In A/P Invoice i've defined  the Tax code also, But while posting it the error comes that "Expense without tax was found", what is the reason?
    Regards
    Usha

    hi USHA
    Please check if except tax code if u are using freight or any rounding account in the freight setup then u need to add the excempt code for it
    Regards,
    Manish
    Edited by: manish.malik on Jul 23, 2010 2:09 PM

  • IDOCS for Tax Information

    Hello:
    Does anybody know which Idocs are useful in order to get Taxes Information?

    Hi,
    perhaps the following link is helpfull.
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/3f/81e33bfa5d11d38d1f080009d10d9a/content.htm
    Regards
    Bernd

Maybe you are looking for