MIRO cancelled for full quantity instead of partial quantity

I have a scenario,
We had raised GRN and MIRO for 5000 item quantity. In the quality check 3300 quantity was rejected and 1700 was consumed.
By mistake, we did a credit memo for 5000 items instead for 3300.
I know, I can cancel this credit memo document, however, I want to know whether I have to create MIRO again for 5000 quantity and do a credit memo for 3300 quantity.
Please advice.

Hi,
I have posted the correct credit memo in MIRO for the quantity of 3300, however, the vendor is reversed for the full amount.
The initial entry was
MIRO- Posting for 5000 quantities
1
31
300680
M/S H SUPPLY AGENCIES,
623,050.00-
2
86
50101300
GR/IR Clg Ext Proc
610,800.00
3
86
50101300
GR/IR Clg Ext Proc
12,250.00
After Credit Memo- Returning 3300 quantities, two FI documents are created by system.
1.
1
21
300680
M/S H SUPPLY AGENCIES,
623,050.00
2
96
50101300
GR/IR Clg Ext Proc
305,400.00-
3
96
81604910
PRD Loss -INGOT
305,400.00-
4
96
50101300
GR/IR Clg Ext Proc
245.00-
5
96
81604910
PRD Loss -INGOT
12,005.00-
2.
1
99
40101000
Strs,Fuel Oil&Gases
12,005.00-
2
83
81602100
Prce Dif Ls- Str Mat
12,005.00
3
99
40101000
Strs,Fuel Oil&Gases
305,400.00-
4
83
81602100
Prce Dif Ls- Str Mat
305,400.00
Vendor Balance- Nil
Please advice.

Similar Messages

  • Wrongly dispose of full asset instead of partial

    Hi Friends,
    Can you please give me suggestion, it is very urgent ..
    When I'm trying to Dispose the asset 60 by using ABAVN T.code,  I have to do only partial amount of 35000 instead of 40000. But I have posted 40000 Full amount.
    How to reverse this amount as 35000 for particular Asset 60. The remaining amount 5000 should be avilable for Asset 60. Can you please suggest me it is very urgetn
    Thanks,
    Shafi

    Hi Shaik,
    You may reverse the doucment using AB08 and repost the partial retirement transaction
    Thanks

  • GATP after partial confirmations it leaves the full quantity for backorder

    Hi,
    We are using GATP to confirm the sales orders and to process the backorder. But, when a partial confirmation is done (for example: I order 10 PC of A and GATP confirms 4 PC of, it is not leaving 6 PC for the Backorder instead it leaves the 10 PC of A for the Backorder. So overconfirmation is done when the backorder confirms the 10 PC).
    Where should I check?
    Thanks a lot.

    Hi,
    Please set Avail. Check "E"  in transaction OVZJ. See note 33084.
    Claire

  • At the time of MIRO against STO full qty for invoice is showing.

    We have created STO for lumsum qty and then created OBD with PGI and GRN for breackup  qty,but at the time of MIRO against STO full qty for invoice is showing ,and we want respective breakup qty in respect to OBD or GRN no. as reference.

    Have you done PGI and GRN both for partial quantity ?
    Can you show the screen shot for PO history and MIRO ?

  • Am i charged for full year or partial year if i upgrade

    am i charged for cloud service when i upgrade for full year or partial year? 

    Welcome to Apple Support Communities
    You only have to pay for more iCloud storage once a year, so you will have to pay again next year the same day when you purchased storage

  • Production Order Reservation for Available Quantity?

    Hi Gurus:
    We have the following situation. 
    Production order is created for material A.  Component Z on this order requires 100 units.  10 Units are available in stock for Batch M.  Reservation is created for 100 units of Batch M.  Availablility Check confirms 10 units. 
    How can we get the reservation to match what is available and stop allocating the required quantity if it is not available? 
    Thanks for your help.
    Nic

    It seems the correct batches are being picked based on batch determination....it is only the reservation which seems to be differing.  As in the example I gave the availability check proposed the correct batch and the correct amount which matched what was currently available in inventory...
    However, the reservation itself was for the full quantity even though it was not available. 
    So the concern is strictly with the reservation not equaling what is actually available and instead matching the full requirement.
    Hope that helps?
    Nic

  • How to get the full path instead of just the file name, in �FileChooser� ?

    In the FileChooserDemo example :
    In the statement : log.append("Saving: " + file.getName() + "." + newline);
    �file.getName()� returns the �file name�.
    My question is : How to get the full path instead of just the file name,
    e.g. C:/xdirectory/ydirectory/abc.gif instead of just abc.gif
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    public class FileChooserDemo extends JFrame {
    static private final String newline = "\n";
    public FileChooserDemo() {
    super("FileChooserDemo");
    //Create the log first, because the action listeners
    //need to refer to it.
    final JTextArea log = new JTextArea(5,20);
    log.setMargin(new Insets(5,5,5,5));
    log.setEditable(false);
    JScrollPane logScrollPane = new JScrollPane(log);
    //Create a file chooser
    final JFileChooser fc = new JFileChooser();
    //Create the open button
    ImageIcon openIcon = new ImageIcon("images/open.gif");
    JButton openButton = new JButton("Open a File...", openIcon);
    openButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    int returnVal = fc.showOpenDialog(FileChooserDemo.this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
    File file = fc.getSelectedFile();
    //this is where a real application would open the file.
    log.append("Opening: " + file.getName() + "." + newline);
    } else {
    log.append("Open command cancelled by user." + newline);
    //Create the save button
    ImageIcon saveIcon = new ImageIcon("images/save.gif");
    JButton saveButton = new JButton("Save a File...", saveIcon);
    saveButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    int returnVal = fc.showSaveDialog(FileChooserDemo.this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
    File file = fc.getSelectedFile();
    //this is where a real application would save the file.
    log.append("Saving: " + file.getName() + "." + newline);
    } else {
    log.append("Save command cancelled by user." + newline);
    //For layout purposes, put the buttons in a separate panel
    JPanel buttonPanel = new JPanel();
    buttonPanel.add(openButton);
    buttonPanel.add(saveButton);
    //Explicitly set the focus sequence.
    openButton.setNextFocusableComponent(saveButton);
    saveButton.setNextFocusableComponent(openButton);
    //Add the buttons and the log to the frame
    Container contentPane = getContentPane();
    contentPane.add(buttonPanel, BorderLayout.NORTH);
    contentPane.add(logScrollPane, BorderLayout.CENTER);
    public static void main(String[] args) {
    JFrame frame = new FileChooserDemo();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    frame.pack();
    frame.setVisible(true);

    simply use file.getPath()
    That should do it!Thank you !
    It takes care of the problem !!

  • Production Order cancellation for wrong confirmation

    Hello Guru,
    We have wrong confirmation on order 100000152. When user confirms one activity with two different units of measure
    (in this case its MIN and KG) SAP doesn't allow to cancel the wrong confirmation we encounter error when trying to
    cancel the wrong confirmation (confirmed activity must not be smaller than 0 - check entry)
    Please tell us what exactly is wrong in the system that the cancellation isn't allowed. How could we don made the
    cancellation for this wrong confirmation.
    thanks

    Hello Vivek,
    Sorry yesterday, i already left out office that why i did not have to reply you about this, i personally do the production order, I do firt confirmed operation 0010 upon finished confirming this operation i confimred next the operation 0020, so that is the sequence we confirmed the order. And all the confirmation that is been done to operation 0010, we do not want to do cancelation all of this, we just made mistake when doing final confirmation on operation 0020, we have confusion on unit of measure for LIMITING WASTE, we really want ti cancel this mistake but doing CO13 for this we encounter the error, please provide us soltuion for this, we only aim to cancel the mistake we did for operation 0020 confirmation. Hope you can help us, even other guys out there.
    I have also question about Patel give, (think the quantity confirmed by user for wrong operation is less than 0. Please check the quantity i.e. activity which is confirmed in MIN instead of KG. System might have converted the MIN to KG & it will be less than 0) he has some point, it maybe SAP has do convertion from MIN to KG since LIMITING WASTE in our process has unit of MIN, since we have put KG instead of the right unit, it does make convertion that cause less than 0 value, please let us know how to cancel this and made the proper resolution.
    Thanks

  • HT1175 Time Machine wants to start with a new, full backup instead of using the existing one

    Hi, my Time Machine wants to start a new, full backup, instead of continuing with the existing one on the time Capsule.
    Looking a the Troubleshooting guide, I've found the following piece of info, which is, as 99% of the times with the troubleshooting guides, totally useless to resolve my problem...
    Message: Time Machine starts a new, full backup instead of a smaller incremental backup
    There are three reasons why this may occur:
    You performed a full restore.
    Your Computer Name (in Sharing preferences) was changed--when this happens, Time Machine will perform a full backup on its next scheduled backup time.
    If you have had a hardware repair recently, contact the Apple Authorized Service Provider or Apple Retail Store that performed your repair. In the meantime, you can still browse and recover previous backups by right-clicking or Control-clicking the Time Machine Dock icon, and choosing "Browse Other Time Machine disks" from the contextual menu.
    It should be noted (hence the uselessness of the guide) that:
    -I haven't performed ANY full restore
    - I havent changed my computer name
    - My computer has not had ANY repair, much less a hardware repair. Neither recently, nor in the 9 months I've owned it.
    Which puts me back to square one, with the marginal improvement that now I have a way of browsing my old backups.
    In the event I decide to start all over again, will there be a way for me to "sew" the two backup files?
    Or will I always have to go the silly way around?
    Anybody has any idea?
    Thank you for your time (machine/capsule, your choice;-)

    Hi John,
    no, that doesn't have anything to do with my problem.
    Just look at the image below.
    Time Machine thinks that the disk I've always used to do my backups has none of them.
    If I open the disk with Finder, obviously they are where they should be.
    It is even possible to navigate them as per the instruction reported above, but even following Pondini's advice #s B5 and B6 (which are more applicable to my problem) didn't solve the problem.
    Actually, not being a coder, I'm always scared of doing more damage than good when I have a Terminal window open.
    My question is: how is it possible that Apple hasn't thought of some kind of user command to tell the idiotic Time Machine software that a hard disk backup is a hard disk backup, no matter what?
    Estremely frustrating and annoying: I'm wasting HOURS in trying to find a solution to a problem that should not have arisen in the first place...
    Have a nice weekend
    Antonio

  • Folder for each cd instead of each artist

    My iTunes library contains over 60GB of 256 kb/s AAC songs. When I started to use iTunes I choose to let iTunes manage the Music Folder. This resulted in a separate folder for each artist, but all I really wanted is a separate folder for each cd!
    Is there a script that can organize my current iTunes Music Folder into folders for each cd instead of folders for each artist? This would save me a tremendous amount of time. Thanks.

    Thank you all for responding!
    The reason for having iTunes organize all music by cd rather then by artist, is that I want to add and remove cd's already converted to aac in a convenient way to the iTunes folder (because the hdd of my PB is as good as full).
    Some of the compilations cd's are placed in the compilation folder but most aren't. So what has happened is that I have an artist folder with several sub folders in it with songs that belong to compilations. In order to remove an entire compilation I will have to find each track belonging to that compilation by hand. Now if every track from a certain compilation would be placed in a folder with the name of the cd, I could easily cut and past that folder to a backup drive and replace it with another folder.
    Hence my request for a way to place all files belonging to a compilation in one folder with the name of that compilation. That's my objective. But something tells me that I do not know iTunes as well as I thought!

  • Can I pay for iCloud for full year right away?

    I want to know if i can pay for iCloud storage right away for the full year instead of paying each month?

    Hi Reahyq,
    You can contact iTunes Support to see if they can help you with your issue adding your card:
    https://getsupport.apple.com/GetproductgroupList.action
    If you are not in the US, click on the flag in the upper left-hand corner and select your country, then follow the prompts to submit a request.
    Or, you can contact them by email:
    https://ssl.apple.com/emea/support/itunes/contact.html
    Cheers,
    GB

  • What is the best practice for full browser video to achieve the highest quality?

    I'd like to get your thoughts on the best way to deliver full-browser (scale to the size of the browser window) video. I'm skilled in the creation of the content but learning to make the most out of Flash CS5 and would love to hear what you would suggest.
    Most of the tutorials I can find on full browser/scalable video are for earlier versions of Flash; what is the best practice today? Best resolution/format for the video?
    If there is an Adobe guide to this I'm happy to eat humble pie if someone can redirect me to it; I'm using CS5 Production Premium.
    I like the full screen video effect they have on the "Sounds of pertussis" web-site; this is exactly what I'm trying to create but I'm not sure what is the best way to approach it - any hints/tips you can offer would be great?
    Thanks in advance!

    Use the little squares over your video to mask the quality. Sounds of Pertussis is not full screen video, but rather full stage. Which is easier to work with since all the controls and other assets stay on screen. You set up your html file to allow full screen. Then bring in your video (netstream or flvPlayback component) and scale that to the full size of your stage  (since in this case it's basically the background) . I made a quickie demo here. (The video is from a cheapo SD consumer camera, so pretty poor quality to start.)
    In AS3 is would look something like
    import flash.display.Loader;
    import flash.net.URLRequest;
    import flash.display.Bitmap;
    import flash.display.BitmapData;
    import flash.ui.Mouse;
    import flash.events.Event;
    import flash.events.MouseEvent;
    import flash.display.StageDisplayState;
    stage.align = StageAlign.TOP_LEFT;
    stage.scaleMode = StageScaleMode.NO_SCALE;
    // determine current stage size
    var sw:int = int(stage.stageWidth);
    var sh:int = int(stage.stageHeight);
    // load video
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    var vid:Video = new Video(656, 480); // size off video
    this.addChildAt(vid, 0);
    vid.attachNetStream(ns);
    //path to your video_file
    ns.play("content/GS.f4v"); 
    var netClient:Object = new Object();
    ns.client = netClient;
    // add listener for resizing of the stage so we can scale our assets
    stage.addEventListener(Event.RESIZE, resizeHandler);
    stage.dispatchEvent(new Event(Event.RESIZE));
    function resizeHandler(e:Event = null):void
    // determine current stage size
        var sw:int = stage.stageWidth;
        var sh:int = stage.stageHeight;
    // scale video size depending on stage size
        vid.width = sw;
        vid.height = sh;
    // Don't scale video smaller than certain size
        if (vid.height < 480)
        vid.height = 480;
        if (vid.width < 656)
        vid.width = 656;
    // choose the smaller scale property (x or y) and match the other to it so the size is proportional;
        (vid.scaleX > vid.scaleY) ? vid.scaleY = vid.scaleX : vid.scaleX = vid.scaleY;
    // add event listener for full screen button
    fullScreenStage_mc.buttonMode = true;
    fullScreenStage_mc.mouseChildren = false;
    fullScreenStage_mc.addEventListener(MouseEvent.CLICK, goFullStage, false, 0, true);
    function goFullStage(event:MouseEvent):void
        //vid.fullScreenTakeOver = false; // keeps flvPlayer component from becoming full screen if you use it instead  
        if (stage.displayState == StageDisplayState.NORMAL)
            stage.displayState=StageDisplayState.FULL_SCREEN;
        else
            stage.displayState=StageDisplayState.NORMAL;

  • Billing for zero quantity is being allowed

    Hi,
    We have written a new copy control routine for data transfer VBRK/VBRP from Sales Documents to Billing Documents. This routine is for partial billing. When the partially billed quantity becomes zero, the transaction vf01 still allows the billing. But we should not allow billing for zero quantity.
    In the copy requirements routine, it does gives out error message if the quantity is zero. But this copy requirements routine is being called prior to our data transfer routine. So if the quantity becomes zero in our partial billing routine, the transaction vf01 is not giving any error message and it is allowing the billing for zero quantity.
    Could anyone please let me know how can I solve this problem or what are the ways to solve this problem?
    Thanks..
    Priya.

    Hi Naren,
    The checking part is already there in the standard copying requirements routine, which we are using. There can be many scenarios when the quantity will  be more than zero when the copying requirements routine is called and it can become zero only in our data transfer routine logic. The copying requirement routine is being called prior to the data transfer routine, so in the above case, the copying req routine will not add the error message since the qty is more than zero, but it will become zero in our data transfer routine. So the invoice will be created for zero quantity also. Please let me know if there is any other ways to achieve this..
    Thanks again..
    Priya.

  • GR Number cancellation for UD goods

    Dear Experts,
    One of our stores person has done a wrong GR . For this quantity an inspection lot created and UD also done. Now the fault has been identified and we want to reverse the GR . How to proceed.
    Regards,
    Vivid

    Dear Friend,
    Please do as per the following procedure and
    Reversing Stock Postings
    1. Choose Logistics --> Materials Management --> Inventory Management --> Goods Movement
    --> Goods receipt --> For purchase order --> PO number known.
    The initial screen for creating a goods receipt for a purchase order appears.
    2. In the field for the movement type, enter 102 (goods receipt for a purchase order into
    warehouse - reversal).
    3. In the field for the purchase order, enter the purchase order number for the original goods
    receipt.
    You can copy the purchase order number from the inspection lot.
    4. Choose Enter to display the selection screen for the purchase order items.
    5. Select the purchase order item for which you want to create the goods receipt and set the
    Stock type indicator to the stock to which the goods were originally posted with the
    usage decision (for example, F for unrestricted-use stock or S for blocked stock).
    6. Save the goods receipt and exit the Materials Management component.
    7. Choose Logistics --> Quality management --> Quality inspection --> Inspection lot --> Usage
    decision --> Change with history.
    The initial screen for changing a usage decision appears.
    8. Enter the number of the inspection lot for which you previously made the usage decision and
    choose Usage decision (UD).
    9. To cancel the inspection lot, choose Usage decision --> Functions --> Cancel lot in the usage Decision Screen.
    Thanks

  • Equivalent to KKPAN+CK24 for without quantity structure costing

    Hi,
    In costing we can use CK40N instead of CK11n+CK24 (with quantity structure) as far as I know. Is there any single tcode like CK40N for us to do both cost estimate creation and marking and release instead of using both KKPAN+CK24 for without quantity structure costing?
    Thanks
    M.K

    Dear MK,
    CK40N  = CK11N only for exploding BOM and saving cost Estimate.   +  CK24 (open perid and mark the pice and update the price)
    All in one place, see below screenshot.

Maybe you are looking for

  • Cache and/or Connection problems under load

    I have a Kodo web app that's been running just fine in production for many months now. However, recently the web traffic has shot up by a huge amount, literally overnight. But unfortunately, it's caused the app to fail very ungracefully under the str

  • Can you have two iPods for one computer?

    I know nothing about iPods so please excuse me for this question that probably has an obvious answer. My sister has an iPod nano that she has been using with our computer for a long time. I just bought an iPod and was trying to set it up. So can I us

  • When I open a new window, the spinner does not stop, or the window open

    I have a MBP 3 yrs. old, running Snow Lep. When I open a new window, the spinner in the address bar spins and window does not open unless I click on the X and stop the spinner. Some times this doesn't work either. It just hangs up trying to open the

  • Reinstalled OS X slow boot'n up

    I recently (saw the light) and bought a MacBook Pro, within the first two weeks my OS corrupted (OS 10.4.6). I did a erase and reinstall of the OS and now it seems to load slower. I was wondering is this to be expected or is their a program to "compr

  • After erase and installing when i try to use classic it says not installrd

    I have tried to open classic in system preferences/system. It said that i do not have a version of mac os 9 installed.I have tried the imac software install and restore disk, followed the instructions. When I get to the install it says to put in the