Coveyance exemption amout exiding the limit 9600

Hi,
We are facing a problem regarding Car and conveyance exemption in under section -10 . in the month exemtion is giving 9600 hundred but when we are running payroll for next month it is exdiing the limit and coming as 98100.We have analysed .
/3c4 conveyance 01 01  = 1000 (conveyance amount exemption paid in that month)
/3c3 convey amt              = 1000\
/4e3  conveyance            = 9800
actually it is coming like this.
but it should come like
/3c4 conveyance 01 01    = 800(conveyance exemption paid in that month)
/3c3 convey amt              = 1000
/4e3  conveyance            = 9600
Kindly help
Laxman

Hi,
You will have to iplemnt SAP Note and upgrade Support pack, see the link
/4E3 (Annual Conveyance exemption is not coming correct)
this will help you.
Salil

Similar Messages

  • In original Budget crossing the limit for a particular order no error procd

    Hi
    In budget where the amount exceeds the original budget without showing any error message for budget exceeding. for example order no:xxxx amt 100000 and posting amt 200000 without error system proceeding. But generally system don't allow if we crossing the limit for a budget. here there is no error. I have to make it to appear error. Any solution is to rectify..
    Thank u

    Ya I am using Transaction group ++ and i am not using any exempt cost element. In quality its working if budget exceeding its showing error properly not alowing to post. Bust in production its not showing any if budget crossed limit allocation.
    Its showing in ko23 : eg Budget 2012:23000, Current budget 2012:23000, Assigned 25000
    I dont know why its like that in production. Please give me any idea whether any problem in order
    But its working good in quality not in production. I checked starting to end all configuration.
    Please give all idea as soon as possible.

  • Resetting the limit on result section in Hyperion IR 9.3.1

    Hi All,
    I am having a limit of computed item on result section which is reset with code to make this limit Ignore = "True" or "False". Report is saved as no data for result section. Now whenever i open up the report i am getting an internal error for not able to reset the limit of computed item as no data is there on result section.
    When i am saving the report section with data it is working fine.
    Can anyone please suggest how to handle the limit of computed item on result section when there is no data available on result section?
    Thanks in advance.
    Ujjawal
    Edited by: [email protected] on Mar 30, 2009 7:08 AM

    Try if this works...
    if (ActiveDocument.Sections["Results"].RowCount != 0)
    ActiveDocument.Sections["Results"].Limits["Computed"].Ignore=TRUE /* or FALSE */
    Edited by: Shashi G on Mar 31, 2009 5:57 AM

  • HT4863 I have an error message coming up when trying to send an email which says 'sending the message failed because you're exceeding the limit' can anyone help me to resolve this please

    I have an error message coming up when trying to send an email which says 'sending the message failed because you're exceeding the limit' can anyone help me to resolve this please

    Try reentering the password in your iCloud mail settings.

  • With the limit of 5 devices per itunes account, I am wondering if I can have 2 itune accounts on the same computer?  We have many idevices and I am not sure how to manage them all.

    With the limit of 5 devices per itunes account, I am wondering if I can have more than 1 itunes account on my computer? 

    The limit of five applies only to computers, not to iOS devices, if that's what you're concerned with. But yes, you can have content from up to five different iTunes Store accounts on any given computer or iOS device.
    Regards.

  • How to create array of indicators, with the indicators numeric text value changes as it falls above or below the limit

    Hi,
    I am a newbie here. Just started using Labview for my project. Currently having some difficulties over here. Hopefully someone could enlighten me. I wanted to create an array of 60 indicators, where the indicators value are measured from the PCI card. But now the problem is how to make my indicator values in the array change its numeric text color if it falls below or above the limit set. I've attached the vi together with this. Thanks.
    Regards,
    CH.Ong
    Attachments:
    testing.vi ‏15 KB
    try.vi ‏120 KB

    Maybe, you can try something like this...
    - Partha
    LabVIEW - Wires that catch bugs!
    Attachments:
    To change Boolean Text Color in Array of Clusters.vi ‏18 KB

  • What is the limit of voice mail?  Ive been told my voicemail box is full but I have less than a months worth stored

    what is the limit in voicemail?  I have a new iphone4 and have been told my voicemail box is full but I also deleted voice mail before 13 June

    With AT&T, the limit is 40 messages at 4 minutes per message.
    See the AT&T VVM User Guide

  • How to set the limit for the warning 'running out of disk space'

    I am wondering if there's a way to set the number of GB before I get the system warning 'running out of disk space'.
    I saw this question asked in 2010 and it did not get an answer. It was archived so I am asking again. I know how to monitor the available space on my startup disk, and how to empty the trash to clear up disk space. I am looking for an OS X setting that I can change.

    My guess is that you want to lower the limit. IMHO I think the limit is alreay too low.
    If you are seeing this warning regularly then your disk is severely overfull and needs to be replaced with a larger one.
    Running the free space low eenough to get the warning greatly increases the chances for disk corruption. Once the disk gets corrupted then then next thing that happens is data lose.
    You have a serious problem with your Mac that should be dealt with immediately.
    Backing your data up would also be a good idea if you are not already doing that.
    Allan

  • How to increase the limit of maximim connections that the iMS will accept

    how to increase the limit of maximim smtp connections that the iMS will accept & route the mails for specific domain on different mta like iMS will accpet mails on 192.168.1.5|25 & route all @mydomain.com's mails towards 192.168.1.55|25. although I am able to route the mails but to know how to increase the limit of maximum connection & maximum chiild processes per connection.
    Thanks

    Best thing for you to do is read the tuning guide, found here:
    http://ims.balius.com/downloads.php#tuning_guide
    Please note, this site does not work with IE. It's not a Sun site, but has the best tuning guide available.
    You may end up increasing maxjobs for your channels, increasing the POOL that the jobs are pulled from, etc. It's all well covered in the guide, as are some OS related tuning tips.
    Strongly recommended.

  • How to increase the limit of "maximum open files" in C?

    The default limit for the max open files on Mac OS X is 256 (ulimit -n) and my application needs about 400 file handlers.
    I tried to change the limit with setrlimit() but even if the function executes correctly, i'm still limited to 256.
    Here is the test program I use (compiled with gcc):
    #include <stdio.h>
    #include <sys/resource.h>
    main()
    struct rlimit rlp;
    FILE *fp[10000];
    int i;
    getrlimit(RLIMIT_NOFILE, &rlp);
    printf("before %d %d
    ", rlp.rlim_cur, rlp.rlim_max);
    rlp.rlim_cur = 10000;
    setrlimit(RLIMIT_NOFILE, &rlp);
    getrlimit(RLIMIT_NOFILE, &rlp);
    printf("after %d %d
    ", rlp.rlim_cur, rlp.rlim_max);
    for(i=0;i<10000;i++) {
    fp = fopen("a.out", "r");
    if(fp==0) { printf("failed after %d
    ", i); break; }
    and the output is:
    before 256 -1
    after 10000 -1
    failed after 253
    I cannot ask the people who use my application to poke inside a /etc file or something. I need the application to do it by itself.

    There is no reason to have more than 256 files open. Whatever you are doing, you are doing it wrong.
    The setrlimit() function only applies to new processes. It does not affect the current process. You can either run "ulimit -n 10000" in the shell and then start your program or split your program into two segments:
    #include <stdio.h>
    #include <stdlib.h>
    #include <sys/resource.h>
    #include <unistd.h>
    int main(void)
    struct rlimit rlp;
    int r;
    r = getrlimit(RLIMIT_NOFILE, &rlp);
    if (r == -1)
    perror("getrlimit()");
    exit(1);
    printf("before %d %d
    ", (int) rlp.rlim_cur, (int) rlp.rlim_max);
    rlp.rlim_cur = 10000;
    /* I'm curious how anyone ever expected it to work or got it to work
    without setting the max, because it sure seems to be required. */
    rlp.rlim_max = 10000;
    r = setrlimit(RLIMIT_NOFILE, &rlp);
    if (r == -1)
    perror("setrlimit()");
    exit(1);
    r = getrlimit(RLIMIT_NOFILE, &rlp);
    if (r == -1)
    perror("setrlimit()");
    exit(1);
    printf("after %d %d
    ", (int) rlp.rlim_cur, (int) rlp.rlim_max);
    return execl("/tmp/f", "/tmp/f", NULL);
    And the source to the "f" program is:
    #include <stdio.h>
    int main(void)
    FILE *fp[10000];
    int i;
    for(i = 0; i < 10000; i++)
    fp = fopen("a.out", "r");
    if (fp == NULL)
    perror("fopen()");
    fprintf(stderr, "i == %d
    ", i);
    return 1;
    return 0;
    [jdaniel@Pele:584] /tmp $ a.out
    before 256 256
    setrlimit(): Operation not permitted
    [jdaniel@Pele:585] /tmp $ sudo a.out
    before 256 256
    after 10000 10000
    fopen(): Too many open files
    i == 9997
    As you can see, it is convoluted and a real hassle. It isn't a bug in MacOS X 10.6 or any other version.
    So, I repeat my question yet again. Why do you want to open more than 256 files? It is, of course, a rhetorical question. Don't do it. If you feel you need more than 256 open files, review your architecture and correct it.

  • Whats the limit of max no of concurrent sessions in oracle9i database

    Hi,
    pls let me know whats the limit of max no of concurrent sessions in oracle9i database .
    Thanks.

    Hi,
    Oracle no longer offers licensing by the number of concurrent sessions.
    There used to be 2 initialization parameters : - LICENSE_MAX_SESSIONS and LICENSE_SESSIONS_WARNING . these have been deprecated.
    Therefore Jaffer's statements stands.....
    Cheers...rCube.

  • P6 Professional R8.3 - (Cannot move selected items because the result will exceed the limit of WBS tree maximum levels)

    Hi,
    Has anyone encountered this error "Cannot move selected items because the result will exceed the limit of WBS tree maximum levels"?
    Please advise if there's any way around / solution to this. http://s8.postimg.org/bj900spcl/1_error.jpg
    Thanks.

    Thank you so much MichaelRidino!

  • I have create many free acounts for apple I have reached the limit of creating free acounts how can I delete that free acounts which I have made?

    I have create many free acounts for apple I have reached the limit of creating free acounts how can I delete that free acounts which I have made?

    iOS devices can only create 3 free iCloud accounts, Get a new iOS device
    why would you need more than 3 iCloud accounts for 1 device o.O

  • The number of display columns in the report reached the limit. Help!!!

    Hello Everyone,
    This might be dumb question. But why do get this error with a IR report? and what is the solution for this. Please help me with this.
    Error
    The number of display columns in the report reached the limit. Please click Select Columns under Actions menu to minimize the report display column list.
    Oh.. And also i have a blob column.. if the format is not given, then the table is fine.. but happen to get this error only when the blob download format is given.
    Thanks and regards
    John
    Edited by: JB on Mar 30, 2012 11:08 AM

    Hi,
    i have set up a small test case on apex.oracle.com and I receive the same error if I use download format.
    I have a table
    test_blob (id number, name varchar2(10), blobcont blob)
    If I create IR like
      select
        id,
        name,
        blobcont
      from test_bloband then I define download format I hit the error.
    If you want this to work you have to change your query to
      select
        id,
        name,
        dbms_lob.getlength(blobcont) blobcont
      from test_blobAnd then again define download format for blob on blobcont column.
    Regards,
    Aljaz

  • The number of display columns in the report reached the limit" Interactive Report

    I get the error message of "The number of display columns in the report reached the limit" when trying to display less than 100 (100 is limit) columns when an aggregate has been created.   This does not happen when an aggregate has not been added to the IR report.  It seems to happen because I have a control break on as well.  When I turn off the control break it works but is not the result that we want.  Interesting enough, if I filter the results down to 500 rows it works just fine.  Does oracle treat aggregates as columns!?  This is a really odd issue that I really need to clear up.
    Oracle 11g
    apex 4.1.0.33
    Thanks in advance,
    Shawn.

    Hi,
    i have set up a small test case on apex.oracle.com and I receive the same error if I use download format.
    I have a table
    test_blob (id number, name varchar2(10), blobcont blob)
    If I create IR like
      select
        id,
        name,
        blobcont
      from test_bloband then I define download format I hit the error.
    If you want this to work you have to change your query to
      select
        id,
        name,
        dbms_lob.getlength(blobcont) blobcont
      from test_blobAnd then again define download format for blob on blobcont column.
    Regards,
    Aljaz

Maybe you are looking for

  • For shipped orders, date of order and email

    For those of you who have tracking information, what time did you order and what is the date / time of your email confirmation. I ordered just before midnight and my email is dated 9/14/12 @ 12:03 a.m.  It says delivered on 9/21/12.  When I track it,

  • Why did firefox change yahoo home page. Now different from IE

    For some reason the Yahoo home page which I always use has been changed on Firefox. On IE it is the good old home page that I not only like but was used to. I prefer Firefox as my browser but would like the regular Yahoo home page back. Any ideas?

  • Help! Can'i install Solaris 9 on Dell Laptitude LS

    Can'i install Solaris 9 on Dell Laptitude LS. Setting of video card and monitor fail. My configuration is: P3 450 128MB MagicMedia 256 AV video and sound card. Monitor unknown with 800*600 resolution. Anyone has idea about that. Thanks!

  • I tried to transfer my iTunes library from my old PC to my new Mac, and...?

    I found a support page from Apple that would allow me to transfer PART of the iTunes library I shared with several other people to my new Macbook Pro. This process involved consolidating all of my music, putting that folder on my sixth generation iPo

  • JFileChooser problems

    Hi I've written a small GUI for a college project. I have 2 JFileChoosers one which gets a single file(this works fine), the second I have set to directories only and I want to retrieve a File []. This doesn't seem to work it just returns an empty Fi