How can open accruals be shown correctly in a rebate report?

Dear All,
I would like to know if someone can help me with the following issue.
My customer has an issue with a customer-made report for rebate settlement.
When we issue partial settlements at the end of the month, the column with the open accruals in the report is not correct.
The open accrual is equal to the total accruals, although credit notes have already been booked.
But in case that a final settlement is done, the open accruals are correct.
Thank you in advance for your help.
Kind regards,
Linda Verding
Staff Consultant - CSC

Hi,
Can anyone help me on this subject?
Let me give you an example:
Rebate agreement 2995
Validity period: 01.01.2006 - 31.12.2006
Partial settlement: Rebate credit memo of 750€ (issued on 16.10.2006) at service rendered date: 31.12.2006
Final settlement: Rebate credit memo request of 134,13€ (issued on 8.01.2007) at service rendered date: 31.12.2006. The final credit memo has not yet been created.
Total accruals: 884,13€
Open accruals: 884,13€
I believe that the open accruals figure is not correct.
A credit note of 750€ has already been issued on 16.10.2006.
Does it not reduce the open accruals figure once that a credit note has been issued?
Thank you for looking into it.
Kind regards,
Linda Verding

Similar Messages

  • I've lost the body of all my emails sent and received prior to Sept 21. Could this be related to an update and if so, how can I tell and/or correct it?

    on my laptop.  Dates/Subject/To/From fields are still present.  Could this be due to a system update and if so, how can I track it and correct it?

    Quit Mail. Force quit if necessary.
    Back up all data. That means you know you can restore the Mail database, no matter what happens.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Mail/V2/MailData/Envelope Index
    Copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
    Go ▹ Go to Folder
    from the menu bar. Paste into the box that opens (command-V), then press return.
    A Finder window will open with a file selected. Move the selected file to the Desktop, leaving the window open. Other files in the folder may have names that begin with "Envelope Index". Move those files, if any, to the Trash.
    Log out and log back in. Relaunch Mail. It should prompt you to re-import your messages. You may get a warning that the index is damaged and that Mail has to quit. Click OK.
    Test. If Mail now works as expected, you can delete the file you moved to the Desktop. Otherwise, post your results.

  • How can I change my auto-correction language from english to french?

    My system language is english, so all the default language is also in english
    but how can I change the auto-correction language from english to french and without changing the menu language?
    Message was edited by: Marixomia

    It's just, I want to change my spelling checker from english to french, that when I type some words in wrong order or miss some, I can know that.
    For now, when I type in french, almost every words are underlined by the red lines...

  • My ipad is locked how can ı open it again, my ipad is locked how can ı open it again

    my ipad is locked how can ı open it again, my ipad is locked how can ı open it again

    If you cannot remember the passcode, you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and resync the data from the device (or restore from a backup).
    If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present.
    You may have to force iPad into Recovery Mode
    http://support.apple.com/kb/ht1808

  • How can one turn off auto-correct on safari?

    How can one turn off auto-correct on safari?

    Right click on a word  in an editable area.
    Then choose  Spelling and Grammar.
    Click "Correct Spelling Automatically" to remove the tick mark if it is on to disable the feature.

  • How  can i run this code correctly?

    hello, everybody:
        when  i run the code, i found that it dons't work,so ,i  hope somebody can help me!
        the Ball class is this :
        package {
        import flash.display.Sprite;
        [SWF(width = "550", height = "400")]
        public class Ball extends Sprite {
            private var radius:Number;
            private var color:uint;
            private var vx:Number;
            private var vy:Number;
            public function Ball(radius:Number=40, color:uint=0xff9900,
            vx:Number =0, vy:Number =0) {
                this.radius= radius;
                this.color = color;
                this.vx = vx;
                this.vy = vy;
                init();
            private function init():void {
                graphics.beginFill(color);
                graphics.drawCircle(0,0,radius);
                graphics.endFill();
    and the Chain class code is :
    package {
        import flash.display.Sprite;
        import flash.events.Event;
        [SWF(width = "550", height = "400")]
        public class Chain extends Sprite {
            private var ball0:Ball;
            private var ball1:Ball;
            private var ball2:Ball;
            private var spring:Number = 0.1;
            private var friction:Number = 0.8;
            private var gravity:Number = 5;
            //private var vx:Number =0;
            //private var vy:Number = 0;
            public function Chain() {
                init();
            public function init():void {
                ball0  = new Ball(20);
                addChild(ball0);
                ball1 = new Ball(20);
                addChild(ball1);
                ball2 = new Ball(20);
                addChild(ball2);
                addEventListener(Event.ENTER_FRAME, onEnterFrame);
            private function onEnterFrame(event:Event):void {
                moveBall(ball0, mouseX, mouseY);
                moveBall(ball1, ball0.x, ball0.y);
                moveBall(ball2, ball1.x, ball1.y);
                graphics.clear();
                graphics.lineStyle(1);
                graphics.moveTo(mouseX, mouseY);
                graphics.lineTo(ball0.x, ball0.y);
                graphics.lineTo(ball1.x, ball1.y);
                graphics.lineTo(ball2.x, ball2.y);
            private function moveBall(ball:Ball,
                                      targetX:Number,
                                      targetY:Number):void {
                ball.vx += (targetX - ball.x) * spring;
                ball.vy += (targetY - ball.y) * spring;
                ball.vy += gravity;
                ball.vx *= friction;
                ball.vy *= friction;
                ball.x += vx;
                ball.y += vy;
    thanks every body's help!

    ok, thanks for your reply ! I run this code in the Flex builder 3!and the Ball class and the Chain class are all in the same AS project!
      and i changed the ball.pv property as public in the Ball class, and  the Chain class has no wrong syntactic analysis,but the AS code don't run.so this is the problem.
    2010-04-21
    Fang
    发件人: Ned Murphy <[email protected]>
    发送时间: 2010-04-20 23:01
    主 题: how  can i run this code correctly?
    收件人: fang alvin <[email protected]>
    I don't see that the Ball class has a pv property, or that you even try to access a pv property in the Chain class.  All of the properties in your Ball class are declared as private, so you probably cannot access them directly.  They would need to be public.  Also, I still don't see where you import Ball in the chain class such that it can use it.

  • I want to type "0800" or "20.00"; Pages automatically "corrects" the entries to: "800" and "20." !  How can I turn this automatic correcting OFF?

    In my business it is critical that I be able to enter numbers in the format I choose.  I want to type "0800" or "20.00"; Pages automatically "corrects" the entries to: "800" and "20." !  How can I turn this automatic correcting OFF?  I am a relatively new user of Pages and cannot find a means of turning the autocorrect OFF.or of setting the number formatting rules.

    Pages v5.5.2 does not change 0800, or 20.00 when entered as body text for me. There is nothing in substitution, or Pages preferences settings that can effect these values.
    However, when typed in a Pages table cell with the wrong data format, mischief does occur. In order to preserve 0800, select the Cell tab on the format panel, and set the cell data format to Text, or a custom data format. To preserve 20.00, you must set that cell data format to either Automatic with 2 decimals, or Number with 2 decimals.

  • My iPad has been disabled due to wrong passcode which I have forgotten,How can open it again?I'm so desperate right now

    My iPad has been disabled due to wrong passcode which I have forgotten,How can open it again?I'm so desperate right now

    If you cannot remember the passcode, you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and resync the data from the device (or restore from a backup).
    If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present.
    You may have to force iPad into Recovery Mode
    http://support.apple.com/kb/ht1808

  • How can I change reinstall to correct product key?

    Had to wipe drive and reinstall operating system. When I reinstalled Office for Mac, I used the wrong product key (from another computer). How can I change reinstall to correct product key?

    Try completely removing MS Office and then reinstalling it.
    How to completely remove Office for Mac 2011
    http://support.microsoft.com/kb/2398768
    Or you can try doing just step 4 (removing the license file).

  • How can I have Tibetan text correctly displayed on firefox?

    I would like to view websites with tibetan unicode text displayed. how can I view this text correctly, rather than just squares and muddled bits of letters? I've tried downloading tibetan fonts from Play, but they don't work. Thanks.

    I could only find a Tibetan Spellchecker add on firefox. But have you tried the keyboard: [https://play.google.com/store/apps/details?id=org.ironrabbit.bhoboard]
    [http://en.ironrabbit.org/howto]

  • How can open mobile passcode of i5 phone if we forget the passcode of mobile?, how can open mobile passcode of i5 phone if we forget the passcode of mobile?

    dear sir
    how can open mobile passcode of i5 phone if we forget the passcode of mobile?, how can open mobile passcode of i5 phone if we forget the passcode of mobile?
    thanks
    raj
    mail id [email protected]

    Do as the manual says and restore the iphone

  • How can open Microsoft file on my iMac

    how can open Microsoft file on my iMac

    It depends on the type of file. What extension does it have?

  • I have the wrong email address in ICloud. How can I change to the correct email address?

    I have the wrong email address in ICloud. How can I change to the correct email address?

    I have the same problem. I changed my email address with itunes, & the icloud website knows it too. but the icloud on my iphone still has the old one & wont allow me to change it. I can change the password but the email address is grayed out so I can't change it. I have tried signing out via the store on my phone & back in but it made no difference. Help!! I keep getting error messages about the photo stream ..but I don't know what I can do to correct it. HELP!!!

  • How can I make signature darker when I print the report?

    I need to put my manager's signature on the report. The signature is too light, How can I make it darker when I print the report?
    I used file link and OLE, both did't make it.
    Thanks.

    No way to do it directly in the report. You need to work with signature image file using any graphic software to increase its contrast. The easiest probably would be to use Paintbrush and change the image to black-and-white, then save back as jpeg file.

  • How can we read the screen field values from the report selection screen wi

    Hi expart,
    How can we read the screen field values from the report selection screen with out having an ENTER button pressed  .
    Regards
    Razz

    use this code...
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_posnr.
    **Read the Values of the SCREEN FIELDs
    CALL FUNCTION 'DYNP_VALUES_READ'

Maybe you are looking for

  • What to look for in external HD

    I'm about to buy a new external hard drive. I've always looked for an apple logo when buying this sort of stuff, but seriously, it's a stupid hard drive. I need a USB 2 port and power. If it is formatted different than I want then I can change it. Ti

  • Max no of item in a PO

    What is the max nos of items we can put in a Purchase Order ? Is there any config settting ?

  • I am trying to sync my iPhone 5 with my mac, but my Iphoto is not recognising my iphone.

    When i connect my iPhone, iphoto pops up and says its loading photos and it appears in the devices list and then before i can do anything it just disappears from the devices list so i cant import my photos and i cant find it anywhere. It connects to

  • CPU not showing up in System Profiler

    Hi, I have a 4 year old Dual 2.5 GHz G5 which I think has had a CPU failure (B CPU). The system profiler states that I only have one, not two CPU's. Is it a case of using a repair CD to reset the lost CPU or is it dead? Any ideas anyone? Thanks in ad

  • OpenGL 2.0–capable system (for CS6)

    Is the iMac 2011 with AMD Radeon 6970m 2GB an OpenGL 2.0–capable system?  Does anyone know how I can find this out?  (I'm desperate to find out if the iMAC I just bought 18 days ago will support CS6 Production Premium) Thank you!