Different ways to run MRP?

Hi Experts,
Could you please tell me what is the difference between wc27 and md01 transactions?
Thanks in advance,
Artashes

Hi
MRP run can be run online in MD01.
If you want to schedule the job back ground , you can use MDBT.
one more such transaction is WC27.
Hope it is clear.
Regards
YMREDDY

Similar Messages

  • The problem about running MRP by MDBT

    Hello everydody,
    I encountered a strange problem in SAP system when I runned MRP by using MDBT.
    Usually running MRP has two ways.First running MRP by using T-code MD02 ; second running MRP by using T-code MDBT in the background.In my SAP system,I used T-code MDBT to run MRP, and the MPR parameter is below:
    Scope of planning
    Plant                             2000
    Processing key             NETCH 
    Create purchase req.      1      
    Schedule lines                 3      
    Create MRP list                1      
    Planning mode                 3      
    Scheduling                      1      
    Planning date             2010.06.30
    Normally if I choosed the Planning mode 3 Delete and recreate planning data,then after running MRP ,the Plan orders' number and purchase requestions number should be changed and produced new numbers.
    But I used T-code MDBT to run MRP, the Plan orders' number wasn't changed,the purchase requestions' number was changed. If I used T-code MD02 to run MRP, the  parameter is the same as above.After running MRP,the plan orders' number and the purchase reequestions' number were changed.
    I don't know how caused this happening.
    Is  there anybody who can help reslove this problem?
    Thanks & Best regards!

    Hi,Nikolai
    I was spending vacation, i can't get that now, and i will send it to you as soon as possible,i think maybe that error occured beacause I updated the metadata from V 9.0.2 and imported it into the new version of Builder?

  • Run MRP by vendor

    Hi,
    Do you know if there is any way to run MRP by vendor ?
    We would like to define for a planning run only material of a particular vendor.
    Thanks,
    PYR
    Edited by: Pierre-Yves Ryckwaert on Apr 7, 2008 2:49 PM

    I suggest you use 'MD01' specifying using a user-exit (created in customizing) and a user-exit parameter. First, you create a user-exit in the customizing, then with the help of an abaper you program the exit 'EXIT_SAPMM61X_001' where you  code something like this:
    clear: no_planning, stop_planning.
       case user_key.
        when 'ZVE'. " Your user-exit
           data wa_lfa1 type lfa1.
           data lv_lifnr type lifnr.
           if user_par is initial. " Stop planning if user parameter is not specified
             stop_planning = 'X'.
           else.
             move user_par to lv_lifnr. " This is the user-exit parameter
             call function 'CONVERSION_EXIT_ALPHA_INPUT' " Convert the vendor code
               exporting
                 input         = lv_lifnr
               importing
                 output        = lv_lifnr.
             select single * from lfa1 into wa_lfa1 where lifnr eq lv_lifnr. " Verify that vendor exists
             if sy-subrc ne 0. " ¿Doesn't exist? then no planning
               stop_planning = 'X'.
             endif.
    When you execute 'MD01' you specify user-exit = 'ZVE' and user-exit parameter = 'the vendor code'.
    Hope it helps.

  • Run MRP for production order/maintenance order has been release

    Hi all,
    please tell me how to configure for running mrp for production order/maintenance order has been release. as you know, i want production order has not release will not appear in MD04. I think that is the way for running mrp will not take care about this production order has not release
    Thanks all

    Hi Hoai,
    It is impossible to exclude production order from net requirement calculation in MRP run. You may take a look at the online documentation under the PP-MRP area.
    Material Requirements Planning (PP-MRP)
       Planning Process
         Net Requirements Calculation
           Net Requirements Calculation for MRP
    But there is a way to temporarily exclude production order from MRP. That is you can set the 'delivery completed' indicator in 'Goods receipt' Tab in in production order. Please note that this order will not appear in MD04. Actually to some degree, this order could be considered as completed because ticking the indicator could set status 'DLV' for the order. But you still can execute confirmation, goods issue and goods receipt activities. This way is just a workaround. You may
    consider it.
    Or maybe you can consider the useage of BADI: MD_CHANGE_MRP_DATA to change the MRP run data to see if this could fulfill your requirement.
    Regards,
    Rachel

  • Can we run MRP for perticular ITEMS or Can we run MRP on MRP Group wise

    Dear Friends,
    Out of all Material masters MRP should be run on some meterial.
    Is there any way to run MRP on perticular 1 MRP Group ?
    Is there any way to run MRP on selected MATERILS ?
    Waiting for ur help.
    Thanks...
    Yogesh.

    Hi Yogesh,
    It is possible with the enhancement -> M61X0001, take the help of your abaper & he / she would implement your logic.
    In customizing, SPRO - Production - MRP - Planning - User Exit: Mtl selection for planning run define a key & assign it in MD01 initial screen.
    If helpful award points
    Regards,
    Vivek

  • Different ways to start a run?

    We have written a C-Sharp application that is a GUI wrapper around TestStand to hand-hold the operator through setup and execution of a test. I have noticed the following behavior differences with each of the different ways to start a sequence file running:
    a) When we useSequenceFileViewMgr.Run() to start the execution, TestStand does not prompt for a UUT serial number and it does not generate a DisplayReport event.
    b) When we use SequenceFileViewMgr.GetCommand(CommandKinds.CommandKind_ExecutionEntryPoints_Set).Execute(true) to start the execution, TestStand does prompt for a UUT serial number and it does generate a DisplayReport event.
    c) When we useSequenceFileViewMgr.GetCommand(CommandKinds.CommandKind_ExecutionEntryPoints_Set, 1).Execute(true) to start the execution, TestStand does not prompt for a UUT serial number and it does generate a DisplayReport event.
    Are there other ways (better ways) to start an execution from a C-sharp application?
    Behavior "C" is the behavior I am looking for, but I would like to understand why the calls have different results?
    Can someone enlighten me?
    Solved!
    Go to Solution.

    tlaford,
    What you're essentially doing is running different execution entry points.  If you look at the execute menu in the sequence editor, you will see three options (with the default process model, if you have a custom process model, you may have a different number).
    Test UUTs
    Single Pass
    Run <Name of current sequence>
    When you call .Run() you're doing the same operation as Run <sequence name> from the menu.  This runs just the currently selected sequence and nothing else.  Great for debugging, but does not use the process model framework.
    When you use one of the ExecutionEntryPoints, you are running one of the execution entry points from the process model.  Those generally call into the MainSequence sequence of your client sequence file.  And they perform other operations (such as gathering UUT data, and reporting) around the execution of your client file.  The default process models have TestUUTs as index 0 and SinglePass as index 1.
    Using the SequenceFileViewMgr is the best way to start a new execution from a user interface programmatically.
    Hope this helps.
    Josh W.
    Certified TestStand Architect
    Formerly blue

  • How to run MRP on different storage location level ?

    Dear Experts,
    Need your valuable guidance to solve the below requirement form the client-
    1) My client want to enter a "safety stock level" for one spare part/ Material on the basis of individual storage locations.
               For sake of example: in SL01 he wants the safety stock for particular material set to 5
                                  In FS18 he wants the safety stock set to 2
                                  In FS15 he wants the safety stock set to 1
    Kindly tell me whether it is possible? & guide me how to do it.
    2) Also tell me how to run MRP on a storage location level?
               This is because after maintaining different safety stocks for one material in different storage locations,  is it possible to appear each storage location with their differing safety stock levels?
    I checked the MRP type maintained & its-1 (plant) & not as- 2 (storage location).
    Kindly guide me for the above issue
    Thanks in advance for your support.
    Regards,
    Mehul

    Hi Umashanker,
    Thanks for your suggession . Accordingly I have resolved the issue.
    Regards,
    Mehul

  • One pr for multiple materials with line items while running mrp

    Hi SAP gurus,
                  I am config the system for MRP as per my client requerement.
                     We use CBP for different RAW materialsfor example they having a 10 materials for planning,were,
             MRP type is VB,
              LOT size is FX,with Different Reorder points and fix order quantity for all materials,
             My client whant run MRP for all these materials in single time that means they whant multiple item at single levels,
            i soles these requirement with the help of Product Group(sop) and its working but when we running md02 for product group all materials have planed and they give different purchase requistion numbers for all these materials but my client Wants single purchase requistion with line items for all these materials.
         Pls give me the solution for that requirement.
    thanks and Regards,
    abhi

    this is not the way SAPs MRP run works.
    Where is the benefit for this?
    the requisitions are not even split into header and item table, it is just one table EBAN, and either way you would get exact the same number of records in EBAN.

  • What are the dependent master data for running MRP

    Hi Experts,
                      My client wants to Run MRP After 8 Months of implementation. Now i want to know
    1) What are the Master Data need to be check. They are Using the Strategy 20.
    2) They have confirmed sales order for few customers. Forecast sales orders for few customers.How to map it in sap.
    3) Where will i get Gross Requirement in SAP. Because  MRP run will generates the net requirements.
    4) Is there any report in SAP displays the Forecast values for the selected material.
    Please help me on the above points.
    Thanks
    Satheesh

    HI Vishwa Upadhyay,
                                     Thank you Once again,
    The first point is cleared. Can you please suggest me on the 2,3& 4 points please. What are the configuration settings needed for the different sales order type( i.e.. confirmed and forecast)
    Thanks
    Satheesh.N

  • Material in two plants, I run MRP with the BOM is not found in prod plant

    Hi all,
    I have plant 1020 material 12345
    Plant 1020 is the production plant for material 12345
    The material 12345 exists in plant 1070.
    The material 12345 in plant 1070 has no MRP.
    Plant 1020 material 12345 config in MM03
    MRP1 --> MRP Type = PD
    MRP1 --> MRP Controller = G03
    MRP3 --> Planning material = PLAN_1020_GR03
    MRP3 --> Planning plant = 1020
    Plant 1070 material 12345 config in MM03
    MRP1 --> MRP Type = P3
    MRP1 --> MRP Controller = 017
    MRP3 --> Planning material = empty
    MRP3 --> Planning plant = empty
    The BOM in cs11 for plant 1020 material 12345
    has 3 components
    Comp#1
    Comp#2
    Comp#3
    The Dependency is code
    TABLE TB_1020_SUPERBOM (PP_nuance_interne = $ROOT.PP_nuance_interne,
    PP_dim_billette_bom = $ROOT.PP_dim_billette_bom,
    PP_CODE_LONG_BILL = $ROOT.PP_CODE_LONG_BILL,
    pp_component_bom =$self.pp_component_bom).
    The dependency is not found because it is looking for it in the plant 1070 and not the plant 1020.
    When the MRP runs for a Delivery type stock transfer order I get
    CONFIG_1020_BILLET <---- This is the BOM item component field in CS11 in the Basic data tab
    Comp#2
    Comp#3
    instead of
    Comp#1
    Comp#2
    Comp#3
    When I run MRP for the same material, if there's no
    "Delivery based on Stock transfert orders" the MRP associates the correct components
    Hope this explains m'I situation.
    Regards!
    Curtis

    Hi,
    If you want a reply in one line, it would be SAP R/3 does not supoort this feature.
    You will have to go for APO module.
    There are few things which can be done in R/3 side, as in maintaining a scope for MRP run in OM0E, maintaining special procurement key etc etc, but all these will not do any check of stock in another plant & can only help in a very limited way if all any for your specific need.
    But SAP R/3 provides a cross plant evaluation via MD48 to know the stock & demands at all plants, this can help only for evaluation purpose.
    Hope it clarifies.
    Regards,
    Vivek

  • Different ways to setup applets... what's best?

    Alright. I need some help deciding how to setup an applet. I'm a high school student and I'm going to be in a competition on Saturday that will be using Java applets. I've been trying to get my hands on as much info about it as I can, but I've seen so many different ways of displaying things on an applet that I'm not sure what to do anymore.
    So here's the deal. In a book I have, they set up applets like this:
    import javax.swing.*;
    public class Example extends JApplet
       public void init()
          getContentPane().add(new ExamplePanel ());
          set size (300, 300)
    }And the other class:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ExamplePanel extends JPanel
       private vars
       public ExamplePanel ()
          set up listeners and set background
       public void paintComponent (Graphics page)
          super.paintComponent (page);
          paint stuff
       event methods
    }I'm pretty sure this works fine, but while on the Java website, looking for examples, I noticed that sun sets up applets like this:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class Example extends JPanel implements listener interfaces
       protected and private vars
       public Example ()
          set up panels, labels, basically any JComponent stuff
          create listeners
          use add(...) to put stuff on applet
       event methods
       private static void createAndShowGUI()
            JFrame frame = new JFrame ("Example");
            frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
            JComponent newContentPane = new Example();
            newContentPane.setOpaque (true);
            frame.setContentPane (newContentPane);
            frame.pack();
            frame.setVisible(true);
        public static void main()
            javax.swing.SwingUtilities.invokeLater(new Runnable()
                public void run()
                    createAndShowGUI();
    }I don't know which way is better, but we don't have much time so I need something that's easy. The problem with the second one is that I don't know how to draw shapes on the second one and I might need to do that. I tried using paintComponent in it and things just got screwy. If anyone knows of a better way, please let me know. And since that one was developed directly from Sun, I'm guessing it's more efficient, so I would like to use that one if I can just learn how to use it as easily as the first.
    Also, if anyone knows a completely different way to do this that's better, please let me know.

    The second Example class shows an important issue: swing is not thread safe, and thus all GUI operations, including creating the GUI itself, must be done in the event dispatch thread. Read more about it at http://java.sun.com/docs/books/tutorial/uiswing/misc/threads.html#EDT.
    The second class Example does also not seem to be an applet, that is why main() is used instead of init(). But even in init() you are not guaranteed that the current thread is the EDT - it is choosen by the browser you are using - and you should thus use invokeLater() there as well.
    Appart from that, a component should not care if it is displayed in an applet or in an application.

  • Is there a way to run Motion and Final Cut Pro on Separate Machines?

    Is there a way to run Motion and Final Cut Pro from the same Final Cut Studio license on separate machines? We hadn't realised when we bought Final Cut Studio that it wouldn't allow this. Our editor doesn't use motion, and while I mainly use After Effects on our motion graphics machine, I was wanting to try using motion for some particle effects. Unfortunately, it won't let me open it while Final Cut is running on our editor's machine. I can understand not letting two copies of same application run under the same serial number at the same time, but it would be nice to be able to use both programs that we own concurrently. At very least it would be good to warn you that this isn't possible in the product description, not in some fine print license agreement once you have already bought the software.
    -Matt

    I do not know of any software, in any platform that can operate from the same license over a network simultaneously.This is the exact reason for the existence of Volume Licensing. If for example a project ran in each one of the included applications from different sources that were not an active network, I doubt you would have a problem.Like, doing a project at work and geting the outcome with the Powerbook at home...Sorta!

  • A different way to deal with "unknown" user after upgrade from Tiger.

    It's a known issue that doing upgrade and install or archive and install from Tiger to Leopard, produces a lot of folders with "unknown" group in their "get info" panel. This has to do with a different group structure in Tiger and Leopard.
    In Tiger, every user has their own private group with the same name as the username. That group is set to be user's primary group.
    In leopard, every new user with an account is a member of the group staff (gid=20) which is not present in Tiger. Leopard doesn't fully understand Tiger's private group structure, hence the "unknown" group. This causes various problems such as Finder crashes when trying to change the permissions and ownership in the get info window.
    Apple's proposed way of dealing with this is described [here|http://docs.info.apple.com/article.html?artnum=307128].
    However, this method doesn't change the existing group structure and doesn't resolve all the problems.
    I'd like to suggest a different way of dealing with it.
    1. create a new admin user (if you don't have one already), log out of your primary account and log into the new one.
    2. enter the following in terminal:
    *sudo dscl . delete /users/"username"*
    where username is the short name of the user on the main account (not the one you are currently logged into).
    This will delete that user.
    3. Log out/in.
    4. go to system preferences->accounts and create a new user with the name and short name exactly as the one you've deleted in step 2.
    You'll be get a popup saying that a home directory by this name already exists and asking if you want to use it. Say "Yes".
    That's it. Your main user will be recreated using the native group structure of Leopard with gid=20(staff). Permissions on your home directory will be reset with correct group and ownership.
    I tested the process on my powerbook after an upgrade and install from Tiger to leopard and it worked without a hitch.
    I like this method better than Apple's because it completely gets rid of Tiger's group structure which was creating all the confusion. The only downside as far as I can see is that you might have to manually change the group ownership on some files belonging to the main user that sit outside your home directory.
    I would appreciate any comments on this.

    hmm, I confess, I did this before installing 10.5.2 so i can't say for sure. However, I've dealt with a few people (see e.g. this [thread|http://discussions.apple.com/thread.jspa?messageID=7012957]) who are running 10.5.2 and still have this issue. I don't know what if anything 10.5.2 did about this but I'm quite sure that it didn't change the group structure inherited from Tiger.
    Message was edited by: V.K.

  • Two separate versions of the same file corrupted in different ways...

    I was working on a Photoshop CS4 file last night that was created in CS4 and has only been opened on this machine in CS4. I saved the file and closed Photoshop. When I open the file today, all my layers are gone, flattened into one Background layer, and the image looks like colored TV static. On top of that, the separate, older version of this file with a different name (created earlier in the week on the same machine in the same CS4) will not open at all - I get the error message, "Could not complete your request because the file is empty" and the file size has mysteriously shrunk to 76 KB from 20+ MB. What happened?! I'm guessing these files are corrupted beyond recovery, but why and how did this happen? Has anyone had this or a similar problem? I want to know how to prevent this from happening in the future. Please help! Thank you. =)

    Thanks for the suggestion, Chris.
    Same issue, new question - don't ask me why I did this, but while both Photoshop and the now corrupted file were open, I changed the name of the folder containing the file, then continued to save the open version of the file without first closing it and reopening it from the newly renamed folder. Could this have caused both files in that folder to become corrupted in different ways? The other file that gives me the "file is empty" error was not open at the time, but it was in that folder. I'm thinking maybe by changing the path to the files while Photoshop was running, that could have triggered this. ?? I have 3 1TB internal drives raided to read as 1 drive, so I'm really hoping that one of these disks is not dying on me as you suggested. I was also backing up an external drive using BackBlaze when this all occurred - any possible connection? How can I find out if one of my three raided drives (and which one) might be going bad?
    Thanks!!

  • Displaying different sheets at run time based on value of the parameter

    Hi,
    I've a query regarding displaying two different sheets at run time in Oracle discoverer based on the value of the parameter that i give.
    I've a parameter Summary_flag.
    If the value of the parameter is 'Y',then it should display a sheet,say for example it should display Sheet1.
    If the value is 'N',then it should display another sheet, say for example it should display Sheet2.
    Is there any way in which i can accomplish this?
    I went through the Format and Tools menus but couldnt find anything regarding this aspect.
    Can you help me out?
    Thanks,

    Having a Disco parameter dictate which worksheet is displayed is not an option that is available. There are a few workarounds, though:
    1. Have a portlet (or some other web interface) accept your parameters, and then call the appropriate worksheet.
    2. Have 2 worksheets, and have it devolve into a training issue (for a summary run this, for all the details run this).
    3. Create calculations that will show or hide column data depending on the parameter selected - the columns will still be there, and you can fill them in with blanks, or a message like "N/A for Summary".
    4. Create a report that will allow the users to drill between the summary and detail data - I'm not sure whether you could use a parameter to then say whether the report should open up summarized or expanded.

Maybe you are looking for

  • Incompatible types - found java.lang.String but expected int

    This is an extremely small simple program but i keep getting an "incompatible types - found java.lang.String but expected int" error and dont understand why. Im still pretty new to Java so it might just be something stupid im over looking... import j

  • Retrieving Acrobat Pro 9 Serial Number before installing Windows 7

    Hi everyone, I need to format the hard drive to install Windows 7 on a computer running Windows XP x64 and the user is not able to find it nor to tell me if it is a boxed version or a downloaded version possibly bought from the University Campus book

  • Flash Builder Upgrade Question

    Probably a stupid question, but if you have Flex 3 Standard, what are the upgrade choices? -FB4 Standard Upgrade (No ColdFusion Builder included) $99 -ColdFusion Builder 1 (+FB4 Standard free) $299 -FB4 Premium Upgrade (includes ColdFusion Builder 1?

  • Actions and Magic Move bug?

    Symptom: When making a transition on one particular slide the "static" slide appears for a moment before making a successful transition. Description: I have a slide on which there are several text boxes that appear and then move to different location

  • Changing fulfillment URL

    As often happens, our test ACS4 setup gradually morphed into our production ACS4 setup, and this has left us with some baggage. The fulfillment URL incorporates a DNS machine name (e.g. zz321123.us.archive.org) that is specific to a cluster architect