Suggest Zero Lines in MIGO

For MIGO to suggest quantities of zero upon GR with reference to PO even all ordered quantity was received.  User can run transaction MIGO -> Settings -> Default Values to check-on "Propose All Items".
However, it only effective for the user who adopt this MIGO settings.  Is there configuration which can make this setting apply to all users?    The default value for purchasing (buyer), i.e. parameter EVO, has no this setting.  Thanks.
Regards,
Donald

Hi Donald,
I Think it is driven from T code MIGO.Not from any doc type. I am also looking on this issue. In my case against one document type user have to enter unlimited over delivery.
Thanks
Rajan

Similar Messages

  • Is suggest zero lines Check box available in MIGO

    Hi,
    In Schedule Agreement
    one line item and 3 Schedule lines
    In Schedule line 1 : del date 17/05/09   qty : 50 is open qty
    In Schedule line 2 : del date 19/05/09   qty : 30 is open qty
    In Schedule line 3 : del date 24/05/09   qty : 20 is open qty
    when trying to do GR in MIGO today (i.e 15/05/09 for early receipt) system showing error as document does not contain any seletable items
    when I tried  in MB01, (selected check box : suggest zero lines)  GR done properly.
    I want to know the same kind of check box (suggest zero lines ) available in MIGO also
    kindly advice
    Thanks in advance
    Best Regards,
    Kapil.

    Hi,
    Thanks for quick reply.
    Best Regards,
    Kapil.

  • Suggest Zero line indicator - Table for Field XNUVR

    Hi Gurus,
    I want to find table for fiels XNUVR - Suggest zero line indicator. I have searched all the blogs but not able to find it,
    Can u please guide??
    Regards,
    Amarnath Dube

    Hi Jurgen,
    Table ESDUS does not contain any field XNUVR.
    Also can you please elaborate in detail about action and element.
    Regards,
    Amarnath Dube

  • Blocking of open quantity = zero lines in billing documents

    Dear All,
    Can u suggest the solution for the blocking of open quantity = zero lines in billing documents

    Hi Donald,
    I Think it is driven from T code MIGO.Not from any doc type. I am also looking on this issue. In my case against one document type user have to enter unlimited over delivery.
    Thanks
    Rajan

  • AutoSize not working properly in TextField when using non-zero line spacing

    When using non-zero line spacing, the autoSize property is not functioning as expected, causing text fields to scroll that shouldn't.  Also, when using device fonts, the sizes of the TextFields are wrong in the Flash IDE.
    I have a TextField whose height is supposed to be dynamic, depending the width of the TextField.  wordWrap is true, the text is left aligned, and the autoSize value is flash.text.TextFieldAutoSize.LEFT.
    When the TextField's width is adjusted, the height increases or decreases as expected, but when I scroll the mouse wheel over the TextField, it allows a single line to scroll out of view.  This should not be happening.  The autoSize property should ensure the TextField is large enough to neither require nor allow scrolling.
    Has anyone else encountered this issue or know how to fix it?
    Update: Been a problem since at least 2006! > http://blog.nthsense.net/?p=46
    http://www.kirupa.com/forum/showthread.php?288955-Disabling-textfield-scrolling   Bug is caused by using a line height ("line spacing" in Flash) larger than zero, for example 1.0pt.  It looks like when I reduce the line spacing of the text field to zero, the issue goes away.  There doesn't seem to be anything wrong with how autoSize is calculating the required height of the text (i.e. it is exactly textHeight + 4 pixel gutter, and drawing the rectangle (2,2,textWidth,textHeight) aligns visually with the text), so it must have to do with how the TextField is deciding whether it needs to scroll or not, and that separate calculation is being thrown off by the non-zero line spacing.  The additional non-zero spacing at the end of the last line could be making the TextField think it needs to scroll, even though it's hight is sufficient at "textHeight + 4".  Apparently the problem manifests when using a non-zero leading value as well.
    In fact, it has to be related to the leading value exactly, since the following code stops the textfield from scrolling.
    //body is TextField
    var tlm:TextLineMetrics = body.getLineMetrics(body.numLines - 1);
    trace(tlm.leading); //traces "1" here.  traces zero when line spacing is zero, and traces larger values with larger line spacing values
    body.autoSize = flash.text.TextFieldAutoSize.NONE; //turn off autosize so the height can be set manually
    body.height += tlm.leading; //increase height of textfield by leading value of last line to cause scrolling to be turned off.
    Honestly, this is pretty unacceptable bug.  First of all, scrolling should not be sensitive to trailing line spacing, because autoSize and textHeight do not include it. It need to be consistent, and I think textHeight and autoSize setting height = textHeight + 4 is correct.  Vertical scrolling should use textHeight as it's guage for whether scrolling is necessary, but instead, it's obviously involving the leading values of the last line.  At the very least, vertical scrolling should simply be disabled when autoSize is turned on and wordWrap is true, because the TextField should be big enough to fit all the text.  The workaround of manually adjusting the height is also no good, since turning autoSize back on will immediately change the size back and trigger scrolling again.  I also shouldn't have to set line spacing to zero just to use the autoSize feature, since the scrolling calculations are wrong in this way.

    No, lol.  Luckly, I replace most of my TextFields on the display list with my subclass TextFieldEx.  I just call a clone method that accepts a TextField and returns a TextFieldEx with identical properties.
    I corrected the problem via modifying the subclass to behave differently when autoSize is not NONE and wordWrap is true.  Under those conditions, the maxScrollV and scrollV property values are fixed at 1, and the class listens for its own SCROLL event and sets scrollV to 1 when it occurs.  That allows me to leave everything else alone, including text selection, and use whatever line spacing I want.
    The modification seems to work fine so far.
    For anyone interested in doing something similar, here is a clone method that will copy a TextField.
    public static function clone( t:TextField ):TextFieldEx
                                  var te:TextFieldEx = create( "", t.width, t.type, t.multiline, t.wordWrap, t.selectable, t.embedFonts, t.defaultTextFormat );
                                  te.alpha = t.alpha;
                                  te.alwaysShowSelection = t.alwaysShowSelection;
                                  te.antiAliasType = t.antiAliasType;
                                  te.autoSize = t.autoSize;
                                  te.background = t.background;
                                  te.backgroundColor = t.backgroundColor;
                                  te.blendMode = t.blendMode;
                                  //te.blendShader = t.blendShader;
                                  te.border = t.border;
                                  te.borderColor = t.borderColor;
                                  te.cacheAsBitmap = t.cacheAsBitmap;
                                  te.condenseWhite = t.condenseWhite;
                                  te.displayAsPassword = t.displayAsPassword;
                                  //te.embedFonts = t.embedFonts;
                                  te.filters = t.filters;
                                  te.gridFitType = t.gridFitType;
                                  te.height = t.height;
                                  te.opaqueBackground = t.opaqueBackground;
                                  te.restrict = t.restrict;
                                  //te.selectable = t.selectable;
                                  te.sharpness = t.sharpness;
                                  te.thickness = t.thickness;
                                  te.transform = t.transform;
                                  //te.type = t.type;
                                  te.useRichTextClipboard = t.useRichTextClipboard;
                                  //te.wordWrap = t.wordWrap;
                                  //Assign text last
                                  te.htmlText = t.htmlText;
                                  return te;
    //And the create method it uses
    public static function create( text:String = "", width:Number = NaN, type:String = null, multiline:Boolean = false, wordWrap:Boolean = false, selectable:Boolean = true, embedFonts:Boolean = false, font_or_textformat:*=null, size:Object=null, color:Object=null, bold:Object=null, italic:Object=null, underline:Object=null, url:String=null, target:String=null, align:String=null, leftMargin:Object=null, rightMargin:Object=null, indent:Object=null, leading:Object=null ):TextFieldEx
                                  var tf:TextFieldEx = new TextFieldEx();
                                  tf.width = isNaN(width) ? 100 : width;
                                  tf.defaultTextFormat = (font_or_textformat is TextFormat) ? (font_or_textformat as TextFormat) : new TextFormat( font_or_textformat as String, size, color, bold, italic, underline, url, target, align, leftMargin, rightMargin, indent, leading );
                                  tf.embedFonts = embedFonts;
                                  tf.multiline = multiline;
                                  tf.wordWrap = wordWrap;
                                  tf.selectable = selectable;
                                  tf.type = type;
                                  tf.text = text; //setting text last ensures the text line metrics returns correct values
                                  //Initialize the TextField's size to fit the text.
                                  if (!multiline)
                                            //When in single-line mode and no specific width is given,
                                            //expand width to entire line.
                                            if (isNaN(width))
                                                      tf.width = tf.textWidth + 4; //match width of text
                                  //Height is always automatically adjusted to fit the text by default.
                                  //It's better than the arbitrary 100px default height.
                                  var minimum_height = tf.getLineMetrics( 0 ).height;
                                  var h:Number = tf.textHeight;
                                  tf.height = (h < minimum_height) ? (minimum_height + 4) : (h + 4); //match height of text, ensuring height is at least enough to display one line, even if there is no text
                                  return tf;

  • You are not allowed to have zero line only  massages no. m8278

    Hi all,
    At the time of MIRO Reversal we are facing error massage.
    You are not allowed to have zero line only  massages no. m8278
    Because of wrongly 0.00 amount posted in MIRO posting.
    What we do please help me it is production system error.
    Thanks & Regards,
    Juhi
    Edited by: juhis022 on Nov 8, 2011 1:43 PM

    this is because for the document which you posting MRIS is not covered with invoicing plan settlement.
    Please create a invoicing plan and settle through MRIS.

  • How to bind the Zero line between a primary and secondary Y axis?

    All -
    We are using combination charts with:
    - primary and secondary Y axis (Sales versus Volume).
    - Scale: Auto (Y) Axis
    - Linear
    - Fixed Label Size
    In instances where one axis has a negative value and the value ranges are diverse the Zero line will be different for both. This causes some confusion when trying to read. Other that putting in manual (Y) axis with min and max, is there a way to force the chart to keep the same Zero line?
    Thanks!

    KOENIG Yvan wrote:
    It's quite a basic requirement for a spreadsheet program
    It's your point of view. It seems that it's not the designers's one
    Obviously, true
    The number of different features described once as "a basic requirement" is really amazing but a feature asked once is perhaps not one which must be added to a program like Numbers.
    Other tools are available for professional numbers crunchers .
    I know there are other threads asking about secondary axes, but your point is taken. I'm definitely not a number cruncher, but I am/was a pretty advanced Excel user.
    _Go to "Provide Numbers Feedback" in the "Numbers" menu_, describe what you wish.
    Then, cross your fingers, and wait _at least_ for iWork'09
    Thanks for that, I didn't quite know where to go for the feedback - provided and fingers crossed.
    Cheers!

  • Unable to post the accounting doc for Zero line item billing doc

    I have an issue that customer has incidently created the cross company repl delivery with zero line batch qty along with some xx qty batch. PGI and billing also done.  But because of zero qty unable to create accounting document. Asked customer to do the invoice cancel and do reversal of PGI and delete the zero line item in delivery.  But customer has problem in doing of PGI reversal and asked us without doing of PGI reversal process the zero qty billing to be posted to accounting. Customer has reversed the billing doc and created again for XX qty batch and releasd for accounting. But the zero batch line item is pending in billing due list and unable to release for accounting . 
    Thanks in advance.
    Regards,
    R.Sridhar

    Hi
    Try to do the summarization of FI document, so, this item will be merged with others. See SAP Note 36353 - AC interface: Summarizing FI document for further details.
    Regards
    Eduardo
    Edited by: E_Hinojosa on Jul 12, 2011 5:36 PM

  • How to Make ERFMG field zero initially in MIGO Transaction?

    Dear Friends,
        In MIGO, ERFMG(Qty in Unit of Entry) field to be zero initially once we enter Purchase Order number for the movement type=103 .
         The Reason for this, one of our user has posted a GRN for the whole Open PO Quantity. If the ERFMG field is zero initially, then the user will enter correct Quantity.
         We tried a BADI - "MB_MIGO_BADI" by making ERFMG = 0. But the system is giving Zero even after we enter a value/Number in this field.
         Please Provide a Solution for this issue.
    Thanks & Regards,
    Sathisha

    Hi Mythili,
    Try at these User Exits.
    MBCF0007  Customer function exit: Updating a reservation
    MBCF0010  Customer exit: Create reservation BAPI_RESERVATION_CREATE1
    Thanks & regards,
    Dileep .C

  • Single batch for multiple lines in MIGO

    Hello Experts,
    My requirement is while doing MIGO for different line items for same material and same grid only one batch no. should generate.
    As of now, for each line item in MIGO different batch no. is getting generated.
    Is it possible if in different line items for the same material and same grid only one batch number will be generated??
    Please help.

    Hello,
    I cannot use grid value as batch value because there is a number range object created for internal batch generation i.e every time new batch no. have to generate and assigned to each different line item.
    I require batch no. should generate automatically as its happening in current scenario but at the time of single GR (MIGO) line items for same material and same grid should be assigned same batch no.
    If this thing is not possible at configuration part then can it be done with the help of ABAPER????
      Please help.

  • Order number repeated in line item (MIGO)

    Hi,
        I have problem while doing the MIGO goods receipt for the production order i get the error message as order number repeated in the line item this occurs when i distribute the qty to various stores for example my order qty is 5 nos and i want the qty to be distributed to 2 storage locations.
    The qty for 3 nos should go to OE stores and 2 nos should go to replacement stores when i do this for the same order i get this error message M7895. kindly let me know how to resolve this issue.
    Regards,
    Deepak GS

    Dear.
    You can do separate line item instead of doing splitting. Kindly check this method, first in MIGO transaction give production order and change quantity from 5 to 3 each for first store and again give production order and change quantity into 2 for 2nd store.
    check and revert back.
    Thanks
    Muhammad Ashfaq

  • Stop invoice idoc with Zero lines

    Hi all,
    I need assistance on how I can stop the ouptut to create an invoic idoc with zero value.
    Else
    as we create workflows for invoice creation. that means we use workflow as soon as the PGI(post goods issue) is done we creare invoice - Can we build a functionality to stop it from creating invoice if the PGI done and the items/ lines with zero value not passed.
    Thanks in advance
    Jasmeet

    Making the bold assumption that you use an outbound IDoc process code that invokes function module IDOC_OUTPUT_INVOIC, you have the user exit LVEDF001 available.  This is a standard exit that can be activated and maintained via CMOD. 
    The first function exit in LVEDF001 is EXIT_SAPLVEDF_001.  It contains a call to the include program ZXEDFU01.  Therein you can add code that will delete invoice line items having zero quantity or net value from the communication structure DTVBDPR before the IDoc is created. 
    Regards,
    Ken

  • Want to remove zero line item from invoice

    Hi All,
    While creating invoice from delivery, items with zero quntities are also appearing in invoices. I need to remove this items with zero quantity. I am not getting any user exit ,customer exit and badi where i can modify VBRP.
    Thanks
    SVS

    Hi SVS,
    Try using the BAdi SD_CIN_LV60AU02.
    Reward if useful.
    Thanks and Regards,
    Maddineni Bharath.

  • Trying to install Photoshop Elements 12 from a DVD. I keep getting an error message that says "Error opening installation log file.  Verify that the specified log file location exists and is writable."  Have tried the solutions suggested on line but get t

    Have tried turning explorer of and on again and other recommended solutions but nothing seems to work.  Any suggestions?

    David,
    Can you please try Right-Click Setup.exe  > Run As Administrator
    and see if it helps.
    Thanks,
    Anwesha

  • Zero line item is appearing in invoice creation ( VF01)

    Dear All,
         I have a delivery  with only one item , but when i am trying to punch an invoice (VF01) , two line items are coming.
    For example :
       Delivery : Line item 1 , Material - A1234 , Quantity- 100
       Invoice   line item 1 , Material - A1234 quantity - 0
                     line item 2 , Material - A1234 quantity - 100.
    Please help , it is a high priority  issue.
    Regards,
    Nirav Desai

    Thanks for reply.
    I done the changes : Billing quantity 'B' to 'G'. but still problem is same.
    Details is VTFL is given below:
    Item Category      TAN
    Billing quantity     B
    Pos./neg. quantity   +
    Pricing type         C
    Copying requirements   003  Header/dlv.-related.
    Regards,
    Nirav Desai

Maybe you are looking for

  • [Solved] Owncloud can't access remotely if not on root of server

    I installed Owncloud on a new archlinux server I have. It will be used as a firewall and router (it has 2 nics) The default owncloud package from AUR makes a config file for apache that creates a virtual host on port 80 of the server pointing to ownc

  • Any sucessful connection  - new mbp 15" to samsung LCD HD-ready(series) TV?

    Been reading a lot on this forum but got confused so appreciate if anyone who has sucessfully made this connection to share with us here! Thanks!

  • Repetitive manufacturing

    I have a  knowledge question regarding collective entry of confirmations using  repetitive manufacturing u2013 transaction MF42N. Is there an option to get data from planning table (MF50) pre-selected  to simplify final backflushing such as: Preselec

  • Using Native Instruments' Guitar Rig 4 as a VST Plug-in

    Hello, Does anyone know how to get Native Instruments' Guitar Rig 4 to work as a VST plug-in? I scanned the containing folder for the plug-in and Audition said it was active, but when I scroll through effects and selct VST, but when I try to select G

  • Where to find newest interMedia jar file?

    I'm trying to implement the sample photo database servlet using Oracle's interMedia. In it, they use the method getFactory(), which has been deprecated. In place, they say to now use the method getORADataFactory(). However, I cannot seem to find the