How to see the BOM or the comsumption From one PRO. order

hi,friends,
i want to see what kind of the material and what quantity of material from one production order, how to do by TO?  if these informations can be known, the warehouse should do the delivery conveiently.if you know how to do,would you please tell me ?
tks and best regards!

Hi MG,
What do you want exactly?
Generally, when a PrdOrd is released a TR will be generated. You can see this in LB10 - and processing this TR from LB10 a TO will be created and warehouse workers can move the goods to production area.
You can check the content of this TR by clicking on it in LB10 or you can use LB03+TR no. as well.
If your production order release doesn't trigger a TR but you use LP10 to create TR for pick part.
You can also disply your PrdOrd in CO03 and choose menu > Goto > WM pick list. Or you can also use
the 'Components' icon.
If you want to get information of consumption concerning a particular PrdOrd please use MB51 (you can use the PrdOrd field as filter criteria within the report) or CO03 (> menu > Goto > Documented goods movements).
Please clarify your question.
BR
Csaba

Similar Messages

  • How to see my code drawing a line from one point to another

    hi, im wondering if you could help me.
    i am working on my project which is to visualise travelling salesman heuristics.
    i have managed to make my first heuristic work, but my problem is that when i clicked the run button on my GUI,
    the output is already a complete tour with all the edges already drawn, but what i want is to see how it solves or draw the lines from one vertex to another just by clickin the run button once.
    would be great if you could advice me of what method or technique i need to use to see my application solving the tour or drawing the edges.
    below is my cofe for drawing the edges from one point to another
      void drawLineNNh(Graphics g){
             Graphics2D g2 = (Graphics2D) g;
             g2.setColor(Color.blue);
             int i = 0;
             if (P == null) return;
             else
                 for(i=0; i<P.getSize(); i++)
                 Line2D.Double drawLine = new Line2D.Double(P.x_coor[nnH.seen]+5, P.y_coor[nnH.seen[i]]+5, P.x_coor[nnH.seen[i+1]]+5,P.y_coor[nnH.seen[i+1]]+5);
    Line2D.Double drawLastEdge = new Line2D.Double(P.x_coor[nnH.seen[P.getSize()-1]]+5, P.y_coor[nnH.seen[P.getSize()-1]]+5, P.x_coor[0]+5,P.y_coor[0]+5);
    g2.drawString( " Total Distance : " + nnH.totalDistance , 10, 300);
    g2.draw(drawLine);
    g2.draw(drawLastEdge);
    public void setNNh(Points p)
    nnH = new NNheuristic(p);
    useNNh = true;
    public void paint(Graphics g)
    frame(g);
    drawpoints(g);
    if(useNNh)
    drawLineNNh(g);
    below is my code for calling the above method to draw edges, actionlistererun.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand().equals("Run")) {
    if (chooseHeur.getSelectedItem()=="Nearest-Neighbour")
    System.out.println(chooseHeur.getSelectedItem());
    //points = new Points(toInt((String)chooseNum.getSelectedItem()));
    //PlotArea.set(points);
    PlotArea.setNNh(points);
    PlotArea.repaint();

    I AM USING SWING.
    HERE IS MY CODE, HOPEFULLY ENOUGH TO UNDERSTAND THE PROBLEM.
    class Plot extends Panel{
         public static int num;
         NNheuristic nnH;
         Closest_insertion CI;
         Points P;
         public static boolean useNNh= false;
         boolean useCI=false;
         boolean triangleDrawn = false;
         boolean CIupdate;
         void drawpoints (Graphics g)
             Graphics2D g2 = (Graphics2D) g;
             Graphics2D g3 = (Graphics2D) g;
             int i=1;
             g2.setColor(Color.red);
                    if (P==null) return;
                    else
                    while (i<P.getSize())
                         Ellipse2D.Double vertices = new Ellipse2D.Double(P.x_coor,P.y_coor[i],10,10);
    g2.fill(vertices);
    i++;
    g3.setColor(Color.MAGENTA);
    Ellipse2D.Double initial = new Ellipse2D.Double(P.x_coor[0],P.y_coor[0],10,10);
    g3.fill(initial);
    System.out.println("No. of Vertices: " + P.getSize());
    for(int k = 0; k < P.getSize(); k++)
    System.out.println("x coordinate: " + P.x_coor[k] + ", " + "y coordinate :" + P.y_coor[k] );
    // System.out.println("next:"+ P.x_coor[k+1]);
    triangleDrawn = false;
    void drawLineNNh(Graphics g){
    Graphics2D g2 = (Graphics2D) g;
    g2.setColor(Color.blue);
    int i = 0;
    if (P == null) return;
    else
    for(i=0; i<P.getSize(); i++)
    Line2D.Double drawLine = new Line2D.Double(P.x_coor[nnH.seen[i]]+5, P.y_coor[nnH.seen[i]]+5, P.x_coor[nnH.seen[i+1]]+5,P.y_coor[nnH.seen[i+1]]+5);
    Line2D.Double drawLastEdge = new Line2D.Double(P.x_coor[nnH.seen[P.getSize()-1]]+5, P.y_coor[nnH.seen[P.getSize()-1]]+5, P.x_coor[0]+5,P.y_coor[0]+5);
    g2.drawString( " Total Distance : " + nnH.totalDistance , 10, 300);
    g2.draw(drawLine);
    g2.draw(drawLastEdge);
    public void set (Points p)
    P=p;
    useNNh = false;
    useCI = false;
    public void setNNh(Points p)
    nnH = new NNheuristic(p);
    useNNh = true;
    void frame (Graphics g)
    g.setColor(Color.white);
              g.fillRect(0,0,size().width,size().height);
              g.setColor(Color.green);
              g.drawRect(0,0,579,280);
    public void paint(Graphics g)
    frame(g);
    drawpoints(g);
    if(useNNh)
    drawLineNNh(g);
    else if(useCI)
    if(!CIupdate)
    drawTriCI(g);
    else
    drawRestCI(g);
    // drawLineNNh(g);
    public void clear ()
         // remove the points and the graph.
    P=null;
    triangleDrawn = false;
    code of my GUIpublic class TSP extends JFrame{
    JButton run;
    ...................codes...........
    TSP() {
    ...............................codes...........
    run = new JButton ("Run");
    run.setPreferredSize(new Dimension(113,30));
    run.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand().equals("Run")) {
    if (chooseHeur.getSelectedItem()=="Nearest-Neighbour")
    System.out.println(chooseHeur.getSelectedItem());
    //points = new Points(toInt((String)chooseNum.getSelectedItem()));
    //PlotArea.set(points);
    PlotArea.setNNh(points);
    PlotArea.repaint();
    else if(chooseHeur.getSelectedItem()=="Closest-Insertion")
    PlotArea.setC_I(points);
    PlotArea.repaint();
    pane2.add(run);

  • How to see Active customers that are having atleast one Sales Order?

    Dear Friends,
    How can we see all active customers in the system, means customers those are having atleast one sales order.
    How to see

    It depends on which role this customer might have on the sales order. If it's a Sold-to, then you can run a query by VBAK-KUNNR, otherwise VBPA table will have all other partner types (use POSNR = 000000 to see only the header-level partners). Most likely there will be a lot of records. You might want to run the query in batches or limit the selection. Then download the results to Excel and there you can delete the duplicates and get a list of the unique customer numbers.
    MCTE will help only if the corresponding info structure (S003) is being updated correctly. Also it has only sold-to customers.

  • How to see multiple tables on the same screen using Mac Numbers?

    I'm working with a spreadsheet on Numbers (iWork '08) on my Mac. I have three worksheets that each have one table in them. I'd like to be able to see two of the tables simultaneously. Similar to the "Tile" function that I used to use in Microsoft Word. Does anyone know if something like this exists? Googled for it until I was blue in the face and went back at least 500 threads here!!!

    Jon,
    This will seem so easy once you get it. In the Sheets Pane, drag tables from one sheet to another until you have all three in one sheet. Then go to that sheet and arrange the tables to your liking.
    I should note that you will need to make sure that the Sheet icons are expanded: click on the triangle next to the Sheet icon until it points downward and reveals the sheet content.
    Regards,
    Jerry
    Message was edited by: Jerrold Green1

  • HT5787 How do I transfer an Itunes gift card from one account to another ? I do not remember the password or the security questions.

    How do I transfer an Itunes gift card from one account to another ? I do not remember my password or know my security questions.

    You can't do it yourself. If you've just redeemed it and not spent any of it then you could try contacting iTunes Support and see if they can move it the other account : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • CU50- Channges to the bom by the user will be ignored

    Hi, while testing in CU50, After entering the config values, the above message "changes to the bom by the user will be ignored'. how to eliminate the message?

    Hi,
    In case u have action or procedure dependecies, which are causing a change in the Bom item qtys which were originally defined in Super BOM and are now changing through config values, u will get a message as u said.
    As it is a message during simulation process, u can ignore this.
    Regards
    Venugopal

  • How do I copy the same app folder layouts from one device to another? We have a several iphones and ipads.

    how do I copy the same app folder layout from one device to another. We have several apple devices.
    It's a challenge when syncing a device for the first time to go through all the apps and apply them back to the same folders as on your other iphone.
    I've seen suggestions of taking pictures of the correct layout, then manually applying it to the new device. Big time waister.
    What's the work around?
    Thank you

    I'm afraid there is no short workaround. One thing that you could do if you were REALLY desperate is reset your device to factory settings and then restore it from your other device's backup, but that is rather risky and you probably don't want to take your chances just for folder layouts. I would just do it manually.

  • HT204380 How can I make a face time call from one country to another( supporsing both parties using iphone 4s). What will be the caller charges. If there is no charges as we use wifi, will there be a charge till connecting the call?

    How can I make a Face Time call from one country to another( supporsing both parties using iphone 4s). What will be the caller charges. If there is no charges as we use wifi, will there be a charge till connecting the call?

    FaceTime is free to use. You will not be charged for using FaceTime.

  • Purchase order form display the BOM of the item material

    Dear :
      When i print or preview the purchase order in ME23n,I want to display all of the  components of  material which every item used.(sap standard output type is NEU,form is MEDRUCK)
      The components can be displayed when we click the button of "Components" in the right "Material Data" ITem Tcode:ME23N.
      Firstly ,i have to get the BOM of the material through the function:CS_BOM_EXPL_MAT_V2.But NOW,i found that ,In ME22N ,the operator would change the components and saved the order,
       so, my way to display the component in the print form is wrong!:(
       anyone give me some advice?
       Thanks.

    Shao,
    I guess you will have to design your SMART Form according to your requirments and configure this SMART Form to be called from the output conditions of the PO.
    In this SMART Form, you will have to include the logic of exploding the BOM and showing the components as well.
    I don't its a standard functionality.
    Regards,
    Ravi
    Note : Please reward the helpful posts.

  • Is it Possible in Purchase Order that putting the BOM, all the components ?

    Is it Possible in Purchase Order that putting the BOM, all the components of that particular ges populated in the Rowt ? This is necessary to select single - single items is PO..
    We are also using MRP and Forecast. We want to use this method in case of placing URGENT Purchase Order without considering WH stock + PO ordered + ....................
    What kind of Query we would write , that  putting the BOM in the UDF, the componenets get populated in Purchase Order...
    Please give complete query.................

    The query I have provided earlier needs to be set in the ItemCode field at the row level and not on your User field at the header.
    The query below (same as earlier with the addition of the user field name - please verify) will show the Child Items of the BOM item who code you have entered at the Header level in your UDF.
    SELECT T0.Code FROM [dbo\].[ITT1\] T0 WHERE T0.Father = $\[OPOR.U_BOMNAME]
    This will not automatically fire but the user has to first enter the Vendor Code and then enter the U_BOMName and then in the Item code field press Shift+F2 which will fire the above query FMS displaying the child Items for this BOM.
    Suda

  • Do I have to be on the internet to import library from one computer to another ?

    Do I have to be on the internet to import library from one PC to another ?

    What library? Do you mean you iTunes Library? If so, then no, you don't have to be on the Internet. You only have to copy the library to an external disk, then restore it on the other computer.
    Back up your iTunes library by copying to an external hard drive
    Also, see:
    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have iOS devices and haven't moved your contacts and calendar items across then you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.

  • How to see 'Salary amount transfered to bank from - 'S_AHR_61015609'

    How to see 'Salary amount transfered to bank from - 'S_AHR_61015609' report.
    S_AHR_61015609 is not showing amount

    Hi,
    I advice you to create a Z report
    1.) Use IT0009 record for the selection period for each employee with /559 , check for pmt mode as 'T'
         Generete Bank wise employee list and a summary list
    2.) Also check payment list for /557 records from RT
    Mean while your Z program gets ready
    1.) Download the WT reporter amount for /559 for bank pmt and /557 for cash payment
         with the employee details in one excel file
    2.) From table PA0009 download the Employees Bank details in another excel file
        ( here you can use Adhoc query)
    3.)  Take a Vlookup and add the abnk details in excel file 1 , check for the totals properly
    Regards
    Hemant V. Mahale

  • Why the screen flickers and moves from one app to another by itself without being touch?

    Why the screen flickers and moves from one app to another by itself without being touch?

    Have you tried a reset to see if that fixes it ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Why won't FireFox 4 play mp3 files that have been created since the FF update? It will play mp3 files created prior to the FF update. All of the mp3 files have been created in the same manner, as bounces from Logic Pro 9. Thank you.

    Why won't FireFox 4 play mp3 files that have been created since the FF update? It will play mp3 files created prior to the FF update. All of the mp3 files have been created in the same manner, as bounces from Logic Pro 9. Thank you.

    Hi David,
    Thank you for your detailed question. It sounds like the real issue is pdf files. Are there any antivirus/firewalls that might be blocking this specific file type? or are there any preferences in your control panel that might be blocking this?
    Do you have any stored preferences for PDF files in Firefox?
    *[[Applications panel - Set how Firefox handles different types of files]]

  • Can the SidHistory attribute be moved from one User account to a different User account in the same Forest/Domain?

    Hello,
    Can the SidHistory attribute be moved from one User account to a different User account in the same Forest/Domain manually with  Active Directory Users and Computers or with something like Powershell?  it would seem to me this is a safe operation.
    Thanks for your help! SdeDot

    Hi,
    In addition, please also take a look at the below thread:
    copy SIDHistory from one account to another in the same domain
    http://social.technet.microsoft.com/Forums/en-US/2ca8727c-b3fd-4ef8-9747-99295f0cd61c/copy-sidhistory-from-one-account-to-another-in-the-same-domain?forum=winserverDS
    Hope this helps
    Best regards
    Michael
    If you have any feedback on our support, please click
    here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Maybe you are looking for

  • Not Able to Run A java Program!!!!!!!!!!

    Hi Gurus I have Change my Previos Version of Jdk Now I am getting This Error. Exception in thread "main" java.lang.UnsupportedClassVersionError: test (Unsuppo rted major.minor version 49.0)         at java.lang.ClassLoader.defineClass0(Native Method)

  • My iMac (2011) wont shut down properly!!

    I have contacted apple's phone support 3 times but it still won't shut down properly. 1. they asked me to do a pram reset 2. they asked me to go into the safe boot mode (and it does shut down properly) 3. they asked me to clear my cache (it shuts dow

  • What to do when root element is a list?

    Hi, I've been looking at the PurchaseOrder examples and found them really useful and excellent for making a start at XML DB. However, Ive run into a stumbling block when trying to use my own data (but i've used the purchase order example below to mak

  • OIM AD Connector Installation

    Hello All, I am installing the AD connector. When I am in Admin console, I was able to see AD option in the drop down when I specified the alternate address as OIM_HOME/xellerate/ After loading the AD connector, I am getting this error message: Inval

  • Unable to use download apps

    When I go to the app store and choose any app to download, I get an error message that reads "EMAIL VERIFICATION NEEDED"  The message then continues to tell me the following.  your Microsoft account needs to be verified.  Please check your (email@yah