1 machine but do production of sevral products at a same time

Dear Experts
Good Evening
My client have 1 machine but that machine can produce sevral products at a same time each product have different material code. Know i want to know how to
1) Define a routing of material as 1 machine can produce 500 material codes at a same time and each product have same
  a) Set up but different
  b) Process time
does i require 500 routing for same product or use configurable material
2) I have sevral equipments in a work center each with different capacity . i can define scheduling at routing level but how can i calculate the capacity of work center
Does i require to treat each machine as work center
Kindly answer the same and good answer is rewarded
Regards
Rajeev Garg

Hi Rajeev,
                  You may need to create 500 routing for 500 product . There would be single work center having capacity screen saying total time available per day . Every routing will differ in terms of set up , process , teardown time , component allocation and may be operations . You can assign the same work center for every routing .
You said you have two situations one machine can process several machines and 2nd several machines also .
For 2nd situation you need to define separate work center for different equipment so avoid confusion due to grouping .
Neal

Similar Messages

  • Can i go back with time machine but without the applications(to keep it the same)?

    can i go back with time machine but without the applications(to keep it the same)?
    i want to make my mac "younger" but i've got applications that i want to keep and i have them not so long ago...

    Clone your system them.
    Keep your OS and apps on separate hard drives.
    Install the OS if you must for now on another hard drive.
    Use Setup Assistant when done.
    = = =
    Using Cloning as a Backup Strategy
    http://www.macupdate.com/app/mac/7032/carbon-copy-cloner 
    http://www.bombich.com/software/updates/ccc-3.5.html
    OS X Lion Install to Different Drive
    How to create an OS X Lion installation disc MacFixIt
    Migration Assistant Update for Mac OS X Snow Leopard
    http://www.apple.com/support/lion/installrecovery/
    Create an OS X Lion Install disc
    http://reviews.cnet.com/8301-13727_7-20080989-263/how-to-create-an-os-x-lion-ins tallation-disc
    How to clone your system:
    http://macperformanceguide.com/Mac-HowToClone-backup.html
    http://macperformanceguide.com/Mac-HowToClone.html
    http://www.macupdate.com/app/mac/7032/carbon-copy-cloner
    http://www.macperformanceguide.com/blog/2012/20120711_2-MacPro-internal-clone-ba ckup.html

  • I am living USA and Mexico for my work and I do have account in USA but is that possible to make Mexican account same time? I like to keep USA account when I'm in USA

    I am living USA and Mexico for my work and I do have account in USA but is that possible to make Mexican account same time? I like to keep USA account when I'm in USA

    If you have a valid payment method in Mexico (e.g. Mexican credit card) billed to a Mexican address then I guess you could.  There are certain disadvantages to having more than one account, but in your case I don't see they apply.  Just make sure you have copies of everything you buy from each country on backup because you will no longer be able to redownload items when you can no longer use that country's store.

  • Cloned datasource, but unable to use the both at the same time

    I used the AVTransmit java application as sampe to build my applet for transmitting realtime image from the webcam. I desired that it has a container to contain the player and it has a button for RTP transmission.
    I have used the Manager.createCloneableDataSource(ds) to clone the datasource from webcam.
    The applet can display realtime image on the container. While I clicked the button, the container hanged up and then changed to black. But the data can transmit by RTP part. I can receive the transmitted image in another PC.
    Do you have any idea ?
         public void init() {
              Component vc = null;
              Component cp = null;
              JPanel visualContainer = new JPanel();
              visualContainer.setLayout(new BorderLayout());
              JPanel mainPanel = new JPanel();
              mainPanel.setLayout(new GridLayout(2,1));
              JPanel inputPanel = new JPanel();
              inputPanel.setLayout(new GridLayout(2,1));
              Vector vlist = CaptureDeviceManager.getDeviceList(new VideoFormat(VideoFormat.YUV));
              for (int i = 0; i < vlist.size(); i++) {
                   CaptureDeviceInfo vinfo = (CaptureDeviceInfo)vlist.elementAt(i);
                   locator = vinfo.getLocator();
              try {
                   ds = Manager.createDataSource(locator);
              } catch (Exception e) {
                   System.err.println("Unable to create DataSource from : " + locator);
                   System.exit(0);
              ds = Manager.createCloneableDataSource(ds);
              if (ds == null) {
                   System.err.println("Unable to clone the DataSource");
                   System.exit(0);
              try {
                   player = Manager.createRealizedPlayer(ds);               
              } catch (Exception e) {
                   System.err.println("Unable to create a player from the DataSource :" + e);
              player.addControllerListener(new PlayerStateListener());
              //Realize the player
              player.prefetch();
              if (!waitForPlayerState(player.Prefetched)) {
                   System.err.println("Failed to realize the player");
                   //return false;
              if ((vc = player.getVisualComponent()) != null)
                   visualContainer.add(vc, BorderLayout.CENTER);
              if ((cp = player.getVisualComponent()) != null)
                   visualContainer.add(cp, BorderLayout.SOUTH);
              player.start();
              mainPanel.add(visualContainer);
              System.out.println(player);          
              setVisible(true);
              getContentPane().setLayout(new BorderLayout());
              ipAddressField = new JTextField();
              pbField = new JTextField();
              sendButton = new JButton("Submit");
              sendButton.addActionListener(this);
              inputPanel.add(ipAddressField);
              inputPanel.add(pbField);
              inputPanel.add(sendButton);
              mainPanel.add(inputPanel);
              getContentPane().add(mainPanel);
              System.out.println("locator = " + locator);
    // this is the code segment for RTP transmit
              try {
                   processor = javax.media.Manager.createProcessor(ds);          
              } catch (NoProcessorException npe) {
                   return "Couldn't create processor";
              } catch (IOException ioe) {
                   return "IOException creating processor";
              // Wait for it to configure
              boolean result = waitForProcessorState(processor, Processor.Configured);
              if (result == false)
                   return "Couldn't configure processor";
              // Get the tracks from the processor
              TrackControl [] tracks = processor.getTrackControls();
              // Do we have atleast one track?
              if (tracks == null || tracks.length < 1)
                   return "Couldn't find tracks in processor";
              // Set the output content descriptor to RAW_RTP
              // This will limit the supported formats reported from
              // Track.getSupportedFormats to only valid RTP formats.
              ContentDescriptor cd = new ContentDescriptor(ContentDescriptor.RAW_RTP);
              processor.setContentDescriptor(cd);
              Format supported[];
              Format chosen;
              boolean atLeastOneTrack = false;
              // Program the tracks.
              for (int i = 0; i < tracks.length; i++) {
                   Format format = tracks.getFormat();
                   if (tracks[i].isEnabled()) {
                        supported = tracks[i].getSupportedFormats();
                   // We've set the output content to the RAW_RTP.
                   // So all the supported formats should work with RTP.
                   // We'll just pick the first one.
                   if (supported.length > 0) {
                        if (supported[0] instanceof VideoFormat) {
                             // For video formats, we should double check the
                             // sizes since not all formats work in all sizes.
                             chosen = checkForVideoSizes(tracks[i].getFormat(), supported[0]);
                        } else
                             chosen = supported[0];
                             tracks[i].setFormat(chosen);
                             System.err.println("Track " + i + " is set to transmit as:");
                             System.err.println(" " + chosen);
                             atLeastOneTrack = true;
                        } else
                             tracks[i].setEnabled(false);
                        } else
                             tracks[i].setEnabled(false);
              if (!atLeastOneTrack)
                   return "Couldn't set any of the tracks to a valid RTP format";
              // Realize the processor. This will internally create a flow
              // graph and attempt to create an output datasource for JPEG/RTP
              // audio frames.
              result = waitForProcessorState(processor, Controller.Realized);
              if (result == false)
                   return "Couldn't realize processor";
              // Set the JPEG quality to .5.
              setJPEGQuality(processor, 0.5f);
              // Get the output data source of the processor
    Many thank you in advance

    Dear jcparques
    Thank you for your reply.
    I have tried to use the clone datasoure for player and original datasource for RTP transmission, the player displayed black and the RTP successfully, as I can get the live image by another PC. I have tried to use the clone datasoure for RTP and original datasource for player, the player worked normal and the another PC awared the participant joined. It has just waiting the data from RTP.
    I sured the datasource has been cloned as I can System.out.println it, it is not a null.
    Any idea. Thank you very much.

  • Bluetooth connectivity problem: sees the mouse but reports it's not detected at the same time

    All of sudden my mouse lost connection to my Mac. When clicking bluetooth icon in menu bar it's highlighted in bold and marked as "connected", but when I open Mouse Preferences all I see is that it tries to scan its presence and in fact is stuck at this stage. The charge is enough. More so, I wasn't able even to both disconnect the mouse and turn off Bluetooth. Console logs were the following:
    20.03.15 10:50:48,000 kernel: AppleUSBBluetoothHCIController::SendHCIRequest on suspended device! Data begins with: 0x01040533
    20.03.15 10:50:48,000 kernel: SendHCIRequest failed, error (0xE00002D8) -- kIOReturnNotReady[SendHCIRequestFormatted] ### ERROR: EnqueueRequestForController failed (err=0xe00002d8 (kIOReturnNotReady)) for opCode 0x0401 (HCI Inquiry)
    20.03.15 10:50:48,000 kernel: [SendHCIRequestFormatted] ### ERROR: [0x0401] (HCI Inquiry) -- Send request failed (err = 0xE00002D8 (kIOReturnNotReady))
    I took bluetooth plist from my User Library and moved it to Desktop then restarted. After that the system created the new plist and the problem disappeared.
    You may ask why I'm starting the thread? Well, partially because I got frustrated not expecting such Windows-like behavior but mainly because I'd like to bring an order to my knowledge for understanding certain OS X shortcomings. Could you please look into these plists - the older and the new one - and tell me where is the crucial difference between them that led to connection failure?
    Old bluetooth plist:
    The new plist:
    I.S.

    Since the version of OS X I use is soon to be left without Apple's support and Apple does NOT supplies Lion users with system updates my feedback is going nowhere. I know this is user-to-user forum,  I just was hoping for some clarification, but if you don't know the answer, so be it. Ok then, thanks for your help. Much appreciated.

  • ITunes won't update my iOS because it needs 610mb free on my iPhone - but it also shows 825mb free at the same time

    I have never had much success using iTunes to manage my iPhone 5 ....it seems to hate it.
    It's crazy - iTunes says it needs 610 mb free and there is 825mb free showing in the summary
    On my phone it says it is a 957mb download - and needs 4.7gb of free space
    Am I the only one who has these problems ?

    The 610 MB number is the space it needs AFTER installation. But in order to do the installation, it needs a lot more free space. In fact, you should try to run your phone with at least 1 GB of free space at all times. The phone will be happier to install new music/apps if you do so.
    But I'm sure that's not going to be easy—16 GB is very small. Since music is taking up so much space, consider buying iTunes Match. That will allow you to reduce the amount of actual stuff on your phone without losing access to any of your music.
    As for deleting apps, check your phone to see which are the big offenders. Go to Settings --> Usage --> Manage Storage and you'll see how much space each app is taking. Perhaps there are one or two big ones that can be easily removed and reinstalled. Or maybe you have a lot of messages you no longer need.

  • HT204380 Lost my iPhone... It's on the new iOS 7 with activation lock. However, I've blocked and locked the phone but FaceTime still rings on d lost phone... No-one picks up obviously but I can't track it at the same time... Confused

    Confused if the phone has Internet and find my iPhone app isn't working or the activation lock is not working because they shouldn't have had access to my phone.

    Dear brothers
    Thanking you so much to be interested about my answer but what I figured out is as long as you bought your iPhone from gulf or Arabian area it will not has face time application cause I think apple has made special software for Arabian areana to privent facetime according to special request by phone cells companies and one of my friends has told me if you want to make sure that your iPhone not for Arabian areana you should check the model number on your iPhone backside if it ends with 29 it means it's for Arabian countries if other numbers it's gonna be for US. Or Hongkong so it's ok
    That's all I could know if you have another solution just please let me know
    Thanks for all answers

  • I have just installed PS trial on new windows 8 computer but it wont open and I get error message windows will close the program.  I have rebooted the computer but no joy. Lightroom downloaded at the same time works.

    As above. Additional point my previous trial was still active on my defunct computer. Would this prevent it opening on my new computer.

    no.
    uninstall, clean and reinstall per Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • Can there be two apples products hooked up to the apple tv at the same time?

    .....

    In a network .. all items in the network are connected at the same time. So in effect you can have multiple computers/ipads/etc with access to the apple TV.. but you cannot play your music at the same time for instance.
    Perhaps explain what it is your trying to do.

  • I've bought an USB-to-ethernet-adapter and a minidisplay-port-to-VGA-adapter. But I can't use them at same time. At first, I plugged those two adapters and only the USB-to-ethernet worked. Tried restarting the mac then only VGA adapter worked.

    I've bought an USB-to-ethernet-adapter and a minidisplay-port-to-VGA-adapter. But I can't use them at the same time. At first, I plugged those two adapters and only the USB-to-ethernet worked. I tried restarting the mac then only the VGA-adapter worked. I also tried to reinstall the OS.
    I'm using new 13-inch MacBook Air early 2015. OS X 10.10.3.

    Thanks Malcolm - Do you think it might be worth trying to flash the firmware on these cases - there seem to be updaters available on Prolific's website. Obviously I'd have to do it on a PC. I've emailed Prolific asking them about my problem. No reply as yet, and I'm not holding my breath! Do you know if there are any other posts on these boards relating to Prolific? Stupid question really - I'll just do a search...
    Thanks again for your post. Cheers from Bonnie Scotland.

  • Serial number you provided is valid but qualifying product could not be found on this machine

    I have a qualifying product but am getting " serial number you provided is valid but qualifying product could not be found on this machine" when installing on my new macbook air--help?

    ashlie,
    If needed:
    Here are Adobe pages for downloading CS6, CS5, and CS4:
    http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html
    http://helpx.adobe.com/creative-suite/kb/cs5-product-downloads.html
    http://helpx.adobe.com/creative-suite/kb/cs4-product-downloads.html
    Adobe has started setting up a general set of pages for downloading (even) older versions (requiring  a licence) here:
    https://helpx.adobe.com/download-install.html
    http://www.adobe.com/downloads/other-downloads.html
    Until (even) older versions are added, this thread made by staff about downloading the old stuff, with its reference to the Prodesign Tools page is recommended (the last link goes back to CS3):
    http://forums.adobe.com/message/5418120#5418120
    http://prodesigntools.com/tag/ddl
    It is crucial to follow all the initial steps precisely.

  • Product activation on more than 2 machines, but use on only 1 at a time

    Hi,
    I've purchased Creative Suite 5.5. I understand the product needs to be activated on every machine where it's used, and there can only be 2 activations per license.
    I am going to be using the product on three machines, but these are all my own machines and nobody other than me will be using these machines (I am a freelancer working on my own). One is a desktop computer sitting in an agency where I work regularly but not permanently. One is a desktop computer in my own home office. The third one is a notebook. I cannot be in the agency and my home office at the same time, so even if I did use it on a desktop and a notebook at the same time (which is unlikely), the product will never run on more than 2 machines concurrently.
    Does Adobe's policy mean that I would still have to purchase another full license so I can activate the product on the third machine (whichever of the three that is), even though I could never use it on all three machines at the same time, and it would never be used by more than one and the same person (me)?

    I doubt it that you can activate it on three computers. But have a look at the following document for some FAQs on the EULA: http://kb2.adobe.com/cps/195/tn_19592.html
    You could chat with the support folks to figure it out if you want.Chat support at http://adobe.ly/tpFJLf

  • Machine Model and Product Number

    Hi All,
    Currently I am using  (Win32_ComputerSystem ) to get the Computer Model ... but I come across a situation where I have similar models but different product number.
    I have following HP models and currently output seems to be same onboth models
    since BIOS shows the same machine models.
    HP Laptop 1 > Model = HP Pavillion 15 Notebook
                         Product Number = ABCDXYZ#123
    HP Laptop 2 > Model = HP Pavillion 15 Notebook
                         Product Number = YYZ123#ABC\
    Is there a way instead of MODEL I can get manufacturer part number from BIOS?
    N.A.Malik

    What about the class WIN32_Bios or WIN32_ComputerSystemProduct?
    Powershell GUI Application - WIN 32 Class Explorer
    https://gallery.technet.microsoft.com/Powershell-GUI-Application-a884a710

  • Paid subscription, but all products still in trial mode and does not work!

    Hello!
    I paid subscription, but all products still in trial mode and does not work! In Adobe ID manage page i don't see my subscription Screenshot “Adobe ID”
    I received an email confirmation of my payment subscription. Order number 12984126025, my adobe id
    [personal information removed... Mod - https://forums.adobe.com/docs/DOC-3731]
    [This is an open forum, not Adobe support, please do not post personal information]
    Why so?! This is very important! My current project at risk, I can lose money

    Please try the below mentioned steps
    1) Sign out of the Creative Cloud app
    2) delete the opm.db file*
    3) update to the latest version of the Creative Cloud app.
    *On Windows 7, the opm.db file is located here:
    C:\Users\YourUserName\AppData\Local\Adobe\OOBE
    *On a Mac, go here:
    [Userdir]:Library:Application Support:Adobe
    ~Deepak

  • Is there any product that is same as oracle coherence but is open source?

    I donot know if it is suitable to post this question here, but I really want to know it, so please help me~
    Is there any product that has same function as oracle coherence but is open source?

    You may have a look at for instance JBoss Cache. It does however (as far as I know) lack Coherence most useful (and powerful) caching architectures (i.e. "partitioned" and "near" caches). Nor do I belive you should expect the same level of stability or proven track record for use in demanding applications as coherence has.
    This said I think it can be a perfectly useful product for some applications were you don't need the most advanced features and don't have the budget for Coherence or some other commercial product - it is after all a lot better than writing your own project specific caching solution...
    /Magnus

Maybe you are looking for

  • Error during install Webtier

    When installing an error. OI-10136: An Oracle Home with name OH8736583232 already exists at location / rtl / oracle / product / oracle_common. Please specify another location for Oracle Home. In oraInventory inventory.xml file contains the following

  • Saving ' in database

    I have a description field. Need to allow to save ' in the description. I have the following statements: String str = "insert into table (Description) values (" + "'" + desc + "')" ; where desc is the value inputted by the user. In case the user ente

  • Windows 2003 SP2 = 2008 R2 SP1 Upgrade 62% Rollback

    Hello, we have to upgrade our Windows Server 2003 SP2 x64 (DC), to Windows 2008 R2 SP1. Unfortunately, a clean install is not an option. The server is a virtual machine. Therefore, first we make a clone, for a test upgrade, of the server. Adprep and

  • How to load DLL library on Labview?

    Hi I have an application that is working well in Visual C++ 2012. I would like to load the dll library on labview and to execute the code on labview. I have only the DLL file, the working application and the help file. Is it possible to realise this

  • Help ON MQ Adapter

    Hi, I just started learning ESB and JDeveloper. I want to create a connection for MQ Adapter. I need to get the message from the IBM MQ series using MQ Adapter and route them to Oracle tables. How do I connect to IBM MQ series? What should I do initi