Want to reduce the number of material documents created during Confirmation

When confirming each phase on the process order, backflush of components happens and a material document is created .So if we have multiple phases, multiple material documents are created. This way we are having large number of material documents created for each process order .
We do not want a material document to created for each phase but rather create one document while confirming the last phase of the process order. How can we achieve this? Is there a configuration or a user exit that can be used?
Our goal is to reduce the number of material documents created.

IF you assigned all the component  to final phase then You can get only one  material document for all the component
or
Remove  all the backflush setting   and do the Picking in COIK, The system will Post all the  261 movement component in one document

Similar Messages

  • User-Exit - MIGO How to get the Number of Material Document

    Hi everyone!!
    I'm looking for an user-exit after saving in MIGO transaction. I need the Number of Material Document (MKPF-MBLNR) to generate an IDOC.
    Does anybody knows an user-exit to get this number?
    Regards,
    Rubens Kumori
    Edited by: Rubens  Kumori on Oct 20, 2008 3:26 PM

    In BADI definition [MB_DOCUMENT_BADI|https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=mb_document_badi&adv=false&sortby=cm_rnd_rankvalue], you may use interfaces [MB_DOCUMENT_BEFORE_UPDATE|https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=mb_document_badiMB_DOCUMENT_BEFORE_UPDATE&adv=false&sortby=cm_rnd_rankvalue] (before update task) and [MB_DOCUMENT_UPDATE|https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=mb_document_badiMB_DOCUMENT_UPDATE&adv=false&sortby=cm_rnd_rankvalue] (in update task)
    Regards

  • How do i reduce the size of a document when printing on my HP8600 all in one printer

    I want to reduce the size of a document when I copy it on my HP 8600 all in one printer.  Can it be done?

    Hi,
    Yes, from the printer control panel:
    Various settings available from the printer's control panel, including the following:
    • Number of copies
    • Copy paper size
    • Copy paper type
    • Copy speed or quality
    • Lighter/Darker settings
    • Resizing originals to fit on different paper sizes
    Touch Copy, Settings, Resize, Custom   ... then Done.
    Back to Copy menu then touch Black or Color to copy.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to reduce the number of bytes for a picture

    I want to reduce the number of bytes used for a picture to be sent to a site like Ebay or craigslist. I son't see any options in Iphoto for this purpose.

    You can do it in Preview.
    Open the image in Preview. Under Tools, click Adjust Size.
    Scale it down to the smallest acceptable size (the website should give a suggested resolution).
    Then go to File -> Export, save it as a Jpeg.
    Smaller size image means smaller file size.

  • How do I reduce the number of days of e-mails showing up in my inbox?

    I have my gmail account linked to my iphone 6 plus and currently it downloads all my e-mails...1000s... pretty sure it's draining my battery. I want to reduce the number of e-mails showing in my inbox... so that only e-mails received in the last couple of days or last 1 week show in my inbox. I'm hoping someone can help me set this up? Thanks in advance!

    I have my gmail account linked to my iphone 6 plus and currently it downloads all my e-mails...1000s... pretty sure it's draining my battery. I want to reduce the number of e-mails showing in my inbox... so that only e-mails received in the last couple of days or last 1 week show in my inbox. I'm hoping someone can help me set this up? Thanks in advance!

  • How do i reduce the number of frames in a UIView animation

    When animating a Uiview... for example the center of a UIImageView.... is there a way to reduce the number of frames that occur during the animation?
    The framerate is too high and making my app slow down significantly... thanks.

    If you do not have an image editor that allows to do that then use one of the online sites to resize images.
    * http://www.shrinkpictures.com/
    * http://www.picresize.com/

  • HT1338 My mac is becoming too slow. It takes long to open word documents, pdf files or excel documents or even safari. Can anybody suggest something? I have tried to reduce the number of open applications, but does not seem to work.

    My mac is becoming too slow. It takes long to open word documents, pdf files or excel documents or even safari. Can anybody suggest something? I have tried to reduce the number of open applications, but does not seem to work.

    Hi ...
    Checked to see how much free space there is on the startup disk lately?
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. Make sure there's a minimum of 15% free disk space.
    Freeing Up Hard Disk Space - Mac GuidesFreeing Up Hard Disk Space - Mac Guides
    If disk space is not the issue, booting in Safe Mode deletes system caches that may help.
    A Safe Mode boot takes longer then a normal boot so be patient.
    Once you see the Desktop, click the Apple menu icon top left corner of the screen.
    From the drop down menu click Restart.
    See if that makes a difference ...

  • Link between invoice number and material document number

    I need a way to get the list of material document numbers which correspond to a particular invoice.  Is there a way to find this information?  I am looking [looping] at table EKBE during a user exit in SAPMV60S but I need to restrict the entries by a range of (multiple) material document numbers.
    Regards,
    Davis

    It looks like you're missing a piece of code.
            SELECT SINGLE * FROM BKPF WHERE BUKRS = Z_EKKO-BUKRS AND
    *                                       BELNR = EKBE-BELNR AND
                                            AWKEY LIKE X_KEYFLD AND
            CHECK SY-SUBRC = 0.
    The SELECT just ends at the "AND".
    Should there be another line after the "AND"?
    You said you had an invoice number; why can't you use that in your WHERE clause to limit what is returned from BSEG?
    What field are you using for the invoice?
    I had mentioned BKPF-XBLNR before, which we use to store the vendor invoice on a PO, but what you are doing sounds different.  Are you referring to an invoice that you created?
    I think that this might be in BSEG-REBZG, and you should be able to filter on this field.
    Shouldn't such an additional filter give you what you want?
    e.g.
    if the invoice specification is a single value:
    * Getting the Vendor Invoice header data
      SELECT SINGLE * FROM bseg WHERE bukrs = z_ekko-bukrs AND
                                      belnr = bkpf-belnr AND
                                      hkont = '0000416000' AND
                                      rebzg = invoice
    or, if the invoice specification is a range or list:
    * Getting the Vendor Invoice header data
      SELECT SINGLE * FROM bseg WHERE bukrs = z_ekko-bukrs AND
                                      belnr = bkpf-belnr AND
                                      hkont = '0000416000' AND
                                      rebzg IN s_invoice
    If you are not using rebzg, then do the same against whatever field you are using.
    Good luck
    Brian

  • Relation between Material Number and Material document Number.

    hi xperts,
         I want to Know Is there any Relation ship between the <b>Material Number</b> and <b>Material Document Number</b>.
      If So can i get any Tcodes to check them?
    Thanks in advance.
    Message was edited by:
            STALIN JOSEPH

    Hi,
      Thanks for your reply.
    I want to Load the Inventory Management Data into Business warehouse ,there the Only way i correlate the Data between is by taking some material Number.
    and Material Document.
    In step 1 i load Material Number data and step 2 i load material document data,so i want to make cure those two loads i load the same material numbers.
    Please help me to collerate between them.

  • Reduce the number of Buffer Allocations

    Is there an easy way to find and reduce the number of Buffer Allocations in a LabVIEW application?
    Let me give you some background onto my approach before getting into my issues:  I create a waveform and send it to a PXI-6552 for generation.  At the same time that it outputs this waveform, it is also acquiring another waveform.  I process this acquired waveform's information and then save it to disk.  This loops over and over.
    I want to run this VI for periods of time AT LEAST equal to 24 hours.  (Maybe longer!)
    I know that you can't really control memory management much in LabVIEW, but is there a way to reduce the number of allocations between iterations?  Or, at least, free up some memory between for-loop iterations? 
    When I use the Profile >> Show Buffer Allocations, it seems like everything and their sister VIs all blink with dots.  :/ 
    I would prefer not to run the Memory Profiler and my application for 24 straight hours to examine its memory management and potential to crash.  There has to be a better way to go about this.
    The common places I find these Buffer Allocations are:
    Constants initialized in the loop
    Number to Fractional String VI
    Pretty much every subVI input/output pin
    NI HSDIO functions
    Build array function
    Every numeric multiplication/division function
    Every comparison AND, OR, equal to, etc.
    Am I really, really bad at LabVIEW memory management, or is there something obvious I am missing?  Please help me out   I cannot find much literature on the subject aside from "use the profile tools".
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    If someone helped you out, please select their post as the solution and/or give them Kudos!

    That was very informative.
     I also stumbled upon this by jumping from link to link in the help documents http://zone.ni.com/reference/en-XX/help/371361H-01/lvconcepts/vi_memory_usage/.  So I am reading through this now!
    I also considered running it on a more microscopic scale just to see how rapidly the memory will grow.  It still might be worthwhile to test.
    My question about the "buffers":
    In a textual programming language, I believe I could re-use almost all of the allocated memory without duplication.  Is there a way to analyze the code to check where or if new memory is being allocated?  And is it possible to enforce a waveform data type (I believe its just a cluster) of size X to be over written next iteration by the new waveform data type also of size X?  Or do you believe this might already be happening?
    EDIT:
    I cannot release actual code due to Company policies, but I am using the following general set-up:
    Create a relatively simple I2C waveform using the I2C Waveform Reference Library.  This is passed through a tunnel to the while loop.  I also pass a reference to the NI HSDIO generation and acquisition channels and an error cluster via tunnels as well.
    Within the actual loop, I use the NI HSDIO to send the same waveform every iteration to the PXI.  I use NI HSDIO Fetch Waveform to return a DWDT (digital waveform data type) which is the same size as the original waveform but naturally with different elements.
    I post process this DWDT by converting it to boolean with Digital to Boolean Array VI, a few build arrays, array transpose'es, and comparsion functions.
    Lastly I convert this boolean array into a string of 0's and 1's and then substrings from this string.  (Around 10 per iteration).  These 10 substrings are converted to decimal numbers which are built into an array that is saved to disk with Write Spreadsheet to File .
    I do not use any shift registers or anything.  It contains no inner loops but does use an inner case structure.
    I do not suspect any large allocations before or after this main loop either.
    I also do not have any front panel objects (except for the file path Contol, but this could be set to be a constant if need be.)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    If someone helped you out, please select their post as the solution and/or give them Kudos!

  • How can I reduce the number of lines in live paint?

    I'm trying to use adobe illustrator to color the background of a photograph green while keeping the person in the picture the same color.
    I used live trace to get a vector image and then attemped to use live pain to finish the job, but I end up with thousands of blue lines and gaps that are too small to color in. Is there anyway i can reduce the number of gaps so that i can actually paint the background?
    I've already tried the gap options and adjusting the settings to small medium or large did nothing.
    If this isn't possible, is there any other feature in adobe illustrator that would allow me to achieve my goal?
    I have a photograph with a person in the middle; i want the person to remain the same and the background to be changed to green.
    Thanks for your time.

    Would be easiest to fix this when tracing.
    You could try the magic wand tool to select them (but you'll have to expand the live paint object)

  • How can I reduce the number of event cases in the main VI?

    I would like to reduce the number of event case of the event structure in my main VI. E.g. I would like to have pop up window with a table when the user double click a table row. Nothing more simple than this: add a case to the event structure trigger by double clicking the table, read the table row ... But in my main VI I would have lots of them and the event structure gets crowded with minor tasks. One solution is using XControls. But is there any other recomended way to handle selected events separatly from the event structure in the main VI?
    to clarify: I don't want to distribute the whole event structure. (In this case the code would not be maintainable) But I would like to handle certain context specific events in a differnt place. If I have them all in the main VI the drop down list of the events in the event structure exceeds the windows size and the program becomes difficult to maintain because one looses the overview.

    "Strictly forbidden" is not true. But highly not recommended. The reason is simple:
    1. Code can react unpredictable. Dennis already stated some things about that in your linked thread. 
    2. Code is not readable and therefore not maintainable. Each event source should have only one event structure for its events. Since the UI is a single source, events from there should be captured in a single event structure. It is recommended to use this event structure as producer in a producer/consumer design pattern in order not to block the events.
    3. You will most propably need timeouts in your event structure which completly negates the advantage of event driven programming. Either use event driven programming or stay at polling. Do not mix (most of all because of maintenance).
    Regarding your "advantages" you listed:
    - Clustering  reduces readability in therefore should never be done. Additionally, it requires timeout cases in most places which is not recommended.
    - If you have such many events and interactions in your "sequence", it is a clear indication that you chose the wrong architecture for your application.
    Please see attached example. Since i am not used to program with more than one event structure (except if i have different dedicated event sources), the example is "constructed" and therefore may lack of "realism". Nevertheless, it shows some issues which might occur:
    - Blocking calls within the events lead to the fact that the UI is not responsive for the event time (FuncA). Nevertheless, interaction is still enqueued and if the blocking call is over, all those interaction are executed. In the example, please press FuncA and then press FuncC immediatly. You will see that nothing happens and after the 5s blocking call, the FuncC dialog appears. You also can switch tabs, but the visual display will update only after the 5s blocking call.
    - In order to keep the UI responsive, FuncB is configured not to block the UI. But this is no solution: Press FuncB (on page 2) and the change to page 1 and press FuncA. Additionally, press FuncC. What happens? Just to mess things up, press Stop as well......do this combination several times. It is possible that only the lower loop is finished and the VI is still running even if Stop has been pressed.
    Please note everyone that the attached example shoudl strictly be seen as "NEVER DO IT LIKE THIS". This is a negative example and shows the approach which is not recommended by any means!
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.
    Attachments:
    Never EVER86.vi ‏10 KB

  • Urgent HELP - How to reduce the number of entries in table MESYBODY?

    Does anyone know how to reduce the number of records in synchronization table MESYBODY and MESYHEAD?  The reason I wanted to reduce these tables is because I believe they have so many duplicated entries that causes extremely slow performance everytime we sync.  Currently, there are almost 50,000 records for approximately 100 users, and I believe it shouldn't be that much. 
    We are running into a problem that it takes approximately 25-30 minutes to sync. 
    Any advices would be highly appreciated.
    Regards,
    Dai

    Hi Dai,
    please try to run the middleware job WAF_MW_MAPPING. For some applications (Mobile Time and Travel for example) this helps to clean the tables.
    Br, alex
    alexander ilg
    http://www.msc-mobile.com

  • Field Customs reference number in material document

    Hi Friends,
    While doing GR am geting document number and can see that in MB03. Now in MKPF table there is field called Customs reference number( field name # GTS_CUSREF_NO) , and after putting material document number in MKPF am getting all the detail including Customs reference number.
    Now my question is where can I see the detail of Customs Reference number in material document in t code (MB03).
    Any pointers
    Regards

    No reply at all.
    Rgds

  • Best practice for reducing the number of XML files in an IDML file for translation?

    Our engineering team is looking for ways for us to reduce the number of XML files produced when a (relatively) simple 2-page INDD file is saved out as IDML for translation?

    IDML contains quite a few XML files, but I suspect you're only interested in the Stories folder if you're working on a translation. The way to do that is... to reduce the number of stories. If it's a two-pager, chances are that you have a whole bunch of unthreaded text frames. Thread them in logical reading order. This will help the translator(s) as well - by threading frames in logical reading order, they don't have to work to read the document in the same order as the target audience.

Maybe you are looking for

  • How to add related fields from one transaction to other transacction?

    Hi all, I have a problem. I need to add an OPPORTUNITY field (SALESCYCLE) to the ACTIVITY transaction because of an upgrade and I'm now in a new world... The CRM 2007 is an unexplored place to me. I added some custom fields (Z fields from the CUSTOME

  • My Samsung Network Extender worked for years, but no longer works.  How do I fix it?!

    My Samsung Network Extender worked for years.  I switched away from Verizon only to find out it won't work when my phone is on another network.  I have since switched back to Verizon and now my Network Extender does not work AT ALL.  I will switch aw

  • Dreamweaver Fails To Load On Acer Laptop

    I recently purchased an Acer 6920 laptop, everything runs fine, including other CS3 applications, however Dreamweaver loads to the point where the splash screen shows initialising files and then...nothing. I contacted Acer software support and was to

  • Acrobat Pro X: File Open closes down program

    Just installed my licensed copy of Acrobat Pro X on Windows 7-  64 BIT with lots of RAM & a great processor; I am a retired computer science teacher so am no novice. When I try to open any local  a PDF on my hard drive by navigating within Acrobat Pr

  • Citation Manager for Pages 4.2 or later?

    I have used RefWorks and EndNote and Mendeley to manage citations. As far as I know these only interface with MWord. Is there a plug-in or app that allows these citation managers to work with Pages? Are there other citation managers that work with Pa