MBST behaves Differently with MIGO Cancellation

Hi,
I have configured some customised movement types to have their reversed movement types as "qty can be entered...". That is, the quantity can be changed when performing cancellation of material document.
It works well with the old transaction MBST and MB1A (cancel with reference to material document). However, when I try it with MIGO with Cancellation option, it does not work. The quantity field is grey out, not changable. Anyone any idea why is this so? Thanks.
Regards,
Norman

Hi Norman,
As an option, you can go into the MIGO transaction, use same selections as you would to create the goods receipt document (ex. Goods Receipt, Purchase Order) but in the movement type field, select your reversal movement type.  Quantity field is open for change.  From what I'm seeing (and from what you stated) the Cancellation option in MIGO assumes the full quantity of the material document is being reversed.
Regards,
Dawn

Similar Messages

  • Firefox behaves differently with different PDF docs on my web site

    I am running Firefox 3.6.6 on Windows 7 Home Edition. When I update a PDF file on my web site, and I try the updated web page in my browser, Why does my browser prompt me to save the file with the updated file, but it displays inside the browser with other pdfs on my site? I get the same results with IE. The files are very similar, but yet, the browsers treats them differently.

    ''Possibly'' because when you access the file from your hard disk (I assume that's what you mean by "try the updated web page in my browser") and when you access it from a webserever, the file type is different. If you're brought up with windows you might think that the file type is determined by the extension (.pdf) but it's not. Depending on the webserver, your operating system, and your browser, it ought to depend on the 'mime type'
    So try uploading the amended page to your webserver (in a test area) and see if it works off the web.

  • SQL 2012 database behaves differently with a unique index and ignore_dup_key = on when inserting data. It works on SQL 2008 db

    If you have a table with a unique index and ignore_dup_key = on and you INSERT rows into that table with an ORDER BY clause (because you want to control which of the duplicate
    key rows gets inserted),  the wrong row gets inserted in SQL2012.  It works correctly in SQL 2008.
    We have recently migrated  a database from SQL 2008 to SQL 2012.  We do have few other dbs which are in compatability mode 100.  The above operation works fine
    in SQL 2008 dbs but not SQL 2012.
    I've even tried applying the latest patch for SQL 2012 SP2 with CU2. Still the problem exists.  I'm going to call MS support, but want to know if anyone has come across this problem ?

    The MS documentation doesn't guarantee that the first row of the duplicates will always be inserted and the next duplicate row(s) get(s) ignored. Where did you find it in the MS documentation? I think you were just lucky that it was always inserting the
    first row in SQL 2008 (and ignoring the rest of the duplicates) - I don't think this is guaranteed
    Satish Kartan http://www.sqlfood.com/

  • Why does terminal behave differently with respect to "Resume" feature?

    Terminal behaves a little funky when it comes to the new "Resume" feature in Lion.  Here's a few interesting notes:
    When restarting, Terminal prompts the user to close itself.  If you don't click close in time, the reboot process is halted.  This ***** because resume gets confused.  When you close Terminal and reboot, Resume only opens applications that were closed AFTER terminal was manually closed.  This is only a small subset of applications that were originally opened from the first reboot attempt.
    If you do manage to close terminal in time, it only comes up on Desktop 1 after resume.  This is fine if that's what you want, but I have terminal configured on "All Desktops".  To workaround the issue, I have to set terminal to "This Desktop", then "All Desktops" EVERY TIME I REBOOT.
    No other apple programs seem to do this.
    Where do I log a bug/feature request for this?
    Cheers!

    Done!  Thanks!
    https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/6/wo/iLhrfiEtEJtPFTt J8S23O0/23.83.28.0.9
    https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/6/wo/iLhrfiEtEJtPFTt J8S23O0/23.83.28.1.9

  • Beans behaves differently with more requests

    Hi,
    I have the following part of jsp calling my bean
    <jsp:useBean id="proj_fileCopy" class="bean.FileCopy">
              <jsp:setProperty name="proj_fileCopy" property="source" value="<%=userFile_Share+"//"+newFileName%>" />
              <jsp:setProperty name="proj_fileCopy" property="destination" value="<%=newFilePath%>" />
              <jsp:setProperty name="proj_fileCopy" property="filecopy" value="" />
           <jsp:setProperty name="proj_fileCopy"   property="toocopy" value="" />
         </jsp:useBean>
    proj_fileCopy.callMethod();when I call the bean with just single user logged into my application the bean completes a task within 2 minutes.
    whereas simultaneously when multiple users get logged in the bean takes twice the time i.e., 4minutes.
    In the bean I have the follwing part of code in which the bean executes a command prompt task and waits till the command prompt task gets completed as shown below
    ProcessBuilder builder = new ProcessBuilder(command);
    builder.directory(new File(commandtask));// gives the script location
    Process p1 = builder.start();
    InputStream is = p1.getInputStream();
    InputStreamReader isr = new InputStreamReader(is);
    BufferedReader br = new BufferedReader(isr) ;
    String lineRead = br.readLine();//
    while(lineRead!=null)
              counter++;
              lineRead = br.readLine();
              //System.out.println("lineRead:"+lineRead);
         }what can I do for this.

    Hi balusc,
    I tried with java. any way I will give a try again.I have posted my code below. please go through them and suggest some tips to make them efficient.
    I know its too lengthy, but I hope I can get some help to make it efficient
    below is the jsp that passes parameters to bean
    <jsp:useBean id="trasfer" class="bean.UploadFile" >
    <jsp:setProperty name="trasfer" property="previousVersion" value="<%=srcPath%>" />
    <jsp:setProperty name="trasfer" property="backupID" value="<%=File_Name%>" />
    <jsp:setProperty name="trasfer" property="userpath" value="<%=File_Share%>" />
    <jsp:setProperty name="trasfer" property="projpath" value="<%=newPath%>" />
    <jsp:setProperty name="trasfer" property="newFileName" value="<%=newName%>" />
    <jsp:setProperty name="trasfer" property="Destination" value="<%=destPath%>" />
    </jsp:useBean>
    <%
    trasfer.goAhead();
    %> Below is the bean that takes the parameters from jsp. I call the goAhead() method from jsp.
    import java.beans.*;
    import java.io.Serializable;
    import java.sql.*;
    import java.io.*;
    public class CopyFile extends Object implements Serializable {
        private String previous_Name = "";
        private String backup_ID = "";
        private String user_Path = "";
        private String project_Path = "";
        private String currentVersion_Name="";
        private String backup_Src = "";
        private String backup_Dest = "";
        private String fileType_ID = "";
        public CopyFile() {
        public void setPreviousVersion(String previous_Name){
            this.previous_Name = previous_Name;
         public void setBackupID(String backup_ID){
            this.backup_ID = backup_ID;
          public void setUserHomepath(String userHome_Path){
            this.user_Path = user_Path;
            public void setProjpath(String project_Path){
            this.file_Path = file_Path;
              public void setNewFileName(String currentVersion_Name){
            this.currentVersion_Name = currentVersion_Name;
              public void setBackupSource(String backup_Src){
            this.backup_Src = backup_Src;
         public void setBackupDestination(String backup_Dest){
            this.backup_Dest = backup_Dest;
            public void setFileType(String fileType_ID){
            this.fileType_ID = fileType_ID;
            public void goAhead(){
               try{
                    File backupFile = null;
                    String user_File = user_Path+"/"+currentVersion_Name;
                    String proj_File = file_Path+currentVersion_Name;
                   if(!previous_Name.equals(""))  {
                       File prv_Version = new File(previous_Name);
                       backupFile =    new File(project_Path+backup_ID);
                       backup_Dest = backup_Dest+backup_ID;                 
                             //the below code copies the file to location B
                       TransferFile copyVersion = new TransferFile();          
                       copyVersion.moveFile(user_File,proj_File);   
                       //the below code copies the file to location C
                   //In this class only I am calling wait.For() method
                   BackupVersions copyBackup = new BackupVersions();          
                   copyBackup.moveFile(backupFile.toString(),backup_Dest,"BACKUP");
               }catch(NullPointerException npe){
                   System.out.println("NPE in CopyFile"+npe);
    }will continue uin next post

  • New iPod behaving differently with iPhone headphones

    I just had an iPod Touch go bad and had it replaced at an Apple store. I aslo have some "iPohone" headphones that have the answer button. On my first iPod the answer button would work as a pause and play button, but on my newer one it's not doing that....I REALLY liked having this feature. Does anyone know what the difference might be?

    I have the same problem with my iPod Touch using Apple headphone. The remote worked well for months, then stop working until now - rendering them pretty useless, mic still work thought...
    I tried everything, even restoring the iPod. Nothing worked, this is a iPod OS software glitch that Apple doesn't seem willing to fix anytime soon. As a result, I'm barely using my Touch since it's a pain in the a*s having to take it out of the pocket, unlock, etc., everytime I want to pause or skip track. Stupid move here Apple, FIX THIS ASAP APPLE...
    Message was edited by: Praeliber

  • Solaris 11 driver behaves differently with 3G and 6G hba

    Hi,
    I am using ioctl with uscicmd driver, in the 3G LSI Sas hba, when there is a check condition, the sense bytes are
    returned normally, however, when a 6G LSI Sas hba is used, when there is a check condition, bad sense bytes are
    returned.
    Is there a solution for solving the bad sense bytes problem?
    Also let me know if I am not posting in the right forum.

    902400 wrote:
    Also let me know if I am not posting in the right forum.Where did you buy the HBA's?
    If you purchased them from Oracle/Sun, then this web site is appropriate.
    If you purchased them from somewhere else, then you need to go ask them (ultimately LSI) for assistance.

  • Onkeypress behaves differently with FF and IE in a table td tag

    Here is a sample web page: If you click on the cell with the "abc" (not necessarily on the abc, but in the cell), then type a key, with IE (am using IE9) I get the alert, reporting which key was hit.
    With firefox (and, for the record, Safari), I get nothing.
    Is there anyway I can achieve something similar - I can't just make the cell an input field...
    <html>
    <body>
    <script type="text/javascript">
    function keyhit(e)
    var keynum,keychar;
    if(window.event) keynum = e.keyCode; // Internet Explorer
    else if(e.which) keynum = e.which; // Netscape/Firefox/Opera
    keychar = String.fromCharCode(keynum);
    alert("You pressed "+keychar);
    </script>
    Click on the "abc" in the table (or anywhere in that cell, and kit a key.
    <table cellspacing=0 border=1 width=120>
    <tr height=50>
    <td width=60 onkeypress="keyhit(event)">abc</td>
    <td width=60>xxx</td>
    </tr>
    <tr height=50>
    <td>xxx</td>
    <td>xxx</td>
    </tr>
    </table>
    </body>
    </html>

    Start by repairing the code validation errors reported here:
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.archbold-station.org%2Fstatio n%2Feditreg.html
    References to external javascripts and stylesheets.css belong between the <head> and </head> tags.  You have them in the wrong place.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics |  Print | Media Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    HTML Validator - http://validator.w3.org
    CSS Validator - http://jigsaw.w3.org/css-validator/
    Tutorials  - http://w3schools.com/

  • Safari behaving differently with site on .mac/external server

    Hello. I've started creating a little webpage of mine and I've noticed that when uploaded to .mac the top bar (for selecting pages within the site) works correctly, but when the site is uploaded to an external server the top bar goes bust. It is so under Safari, not so under Firefox, which seems to "decode" everything correctly. Here are both pages (identical uploads):
    .mac: http://web.mac.com/milosz.sosnowski/Site/Start.html
    external: http://www.staff.amu.edu.pl/~miloszso/Site/Start.html
    Thank you for your help

    milosz.sosnowski wrote:
    Could someone please delete this topic
    There are worser topics sometimes
    I just wanted to say that...
    If a change doesn't display to you in the browser after you published and uploaded it mostly is because the old version of the page is cached (memorized) by your browser. Thus simply emptying the cache of the browser (Open Safari, choose Safari from the menu and go to Empty Cache) and reloading the page should display the changes.
    Regards,
    Cédric

  • Pack() method behaves differently with JRE1.5 and JRE1.6?

    Any diffrence in pack() in JRE 1.5 and JRE 1.6.

    Why don't you look for yourself. Get the file containing the pach() method from both JDK 1.5 and 1.6, and compare.

  • Fonts behave different in Photoshop in comparison with Illustrator

    I have a problem: it seems that some fonts behave different in Photoshop CS than in Illustrator CS on my Windows XP. Where Illustrator opens a vector (Ill) EPS file correct Photoshop shows me wrong characters sometimes: for example: an é becomes a wrong character: Capital O with a stroke through it. Frutiger was used.
    My question is: where does Photoshop behave different reading fonts in comparison with Illustrator?

    Perhaps you forgot to embed the font?
    Here comes an example, using characters  with accents.
    The font is GillSans-Schoolbook. The font or subset is embedded.
    The file extension TXT should be replaced by EPS after downloading.
    The EPS doesn't contain a preview image.
    The file is correctly handled by
    Photoshop CS2 (opened)
    InDesign CS2 (placed)
    Illustrator CS2 (opened)
    PSAlter (PostScript interpreter by Quite)
    All characters with accents are missing in
    Word 2007 (insert graphic)
    http://www.fho-emden.de/~hoffmann/buffel-7-sRGB-Dokument.txt
    Best regards --Gernot Hoffmann

  • DIFF BETWEEN MIGO CANCELL & MBST

    Dear All,
                            Can any one explain me that what is the difference between Cancellation by MIGO & Cancellation by MBST when excise invoice is captured & posted .
    regards
    sap11

    thanx pts given
    sap11

  • Pdf duplication in Preview for Mac behaving differently

    When duplicating a PDF in Preview for Mac, a new image window would open that I could click on to select, then rename and save elsewhere. Just recently, seems like in the last few days, Preview now behaves differently. Now when I select duplicate, a duplicate document is created in the same window but shows as a thumbnail in the sidebar. This is confusing as it appears that Preview is trying to create a duplicate of the document at the end of the original. I don't appear to have received any updates from Apple that would account for this sudden change in behaviour (shows Preview last modified 18th November). I don't appear to be able to change this in Preview's Preferences. Can I revert Preview to the previous behaviour? (I'm using latest version of Preview in Yosemite on a 24" iMac).

    I always find that Preview can garble certain graphic elements or even slightly alter the over-all color of the PDF. However, I also find it is a lot quicker to deal with PDFs, especially when it comes to printing. Sometimes I get a PDF that I send to print on our Canon copier and I end up canceling the print job after 10-15 minutes because it's still processing. I open that same PDF in Preview and it prints in less than a minute. The same can be said of InDesign so on certain jobs I end up exporting as a PDF and printing from Preview. This might say a lot about Adobe's Printing Engine... (sorry, off-topic)

  • How to restrict the quantity & rate of MIRO with MIGO and PO

    Hi friends,
    Can any body tell me how to restrict the quantity & rate of MIRO with MIGO and PO.
    e.g. if we have done MIGO for quantity 10 and the rate maintained in the PO is Rs.100.Then at the time of MIRO system should not allow to change the quantity and rate.
    How we can do this?
    Regards  
    Purnesh Sharma

    Hi,
    You are misunderstanding the use of MIRO.
    If you change the details in MIRO you are NOT changing anything. You are just entering the price and quantity from the Invoice.
    If this price and or qty is different from the GR aqty and PO price then the system will block the invoice for payment (and it can issue messages toinform the buyer if configured correctly).
    The whole design of MIRO is based on the principle that you enter EXACTLY what the vendor has put on the invoice. By preventing the users from changing anything you will get NO mismatched invoices, but you will not be paying the vendor the amount specified on their invoice. This will surely cause problems.
    If you do want to ensure that ONLY the GR qty and the PO price are used and cannot be changed then why not consider using ERS (Eveluated Receipt Settlement. this is basically self billing.
    Effectively you will be paying the vendor based on what you have received in MIGO multiplied by the price from the PO. (which is what you would be doing if you stop any changes in MIRO)
    Steve B

  • My magic mouse behaves erratically with intermittent problems - slows down, right click doesn't work, disconnects for a few seconds then reconnects. Anyone suggest what I could do to fix this?

    My magic mouse behaves erratically with intermittent problems - slows down, right click doesn't work, disconnects for a few seconds then reconnects. Anyone suggest what I could do to fix this?

    I just figured out the print quality issue for my wife with her new iMac and new printer.
    She replaced both at once and she couldn't understand why her Artisan 730 was lower quality then her Epson R280 when they had the same specs.
    Turns out the newer printer had the option to connect via wifi which we used during setup.
    The driver options are completely different depending on how you connect.
    Once I connected via USB the correct options were available and the print quality was better.
    Looking at the R2400 it dies not have wifi, but while researching the problem for my wife someone esle was having an issue updating to the latest printer driver.
    If you go into the print utility from the Printer and Scanner system preference and under the general tab you should have driver 5.5.
    One user had to delete the old printer driver before Software Update loaded the newer printer driver.
    https://discussions.apple.com/message/15947486#15947486
    On my MacBook Pro (w Snow Leopard) I always had to reconnect my wifi at home when it woke up. I upgraded my router from an old Netgear to a newer N D-Link and stopped having to do that.
    I would be surprised you would have that problem with an Airport Extreme, you might check to see if there is a firmware update for it.

Maybe you are looking for

  • Error message FVD_BILL017

    Hi experts, I am not very familiar with SD billing domain, i am getting this error message when try to create a billing document. Number range for bill number is missing; enter a number range Message no. FVD_BILL017 For you info the number rnge of th

  • How to synchronize the »content« of a smartfolder?

    Morning. I want to synchronize automatically the »content« of a smartfolder with the Documents folder on my iDisk. The respective smartfolder contains all PDF files modified within the last 30 days. So it has dynamic content. And it is unavoidable th

  • Restore music from my computer to the icloud

    restore music to ipod 5 from my computer

  • We can't generate a PO from SRM (BBP_CREATE_PO_FROM_QUOT)

    We are in Classic Mode SRM 5,  We are moving to SRM 7.  We have a job that automatically creates POs from SRM quotes if it meets certain criteria.  The system says it is creating the PO however, we get an error and no PO number back from SAP ECC.  In

  • Recovering notes from a time machine backup

    I replaced the hard drive in my MacBook Pro. After installing OS X Mavericks on the new drive I began migrating data from the Time Machine back up of my previous hard drive (running the newest version of Mountain Lion). I have been sucessfull in migr