How to use parallel sequence in capacity planning.

How we can use parallel seq in capacity planning?we have two machines which can be run parallel for production ,now how  to distribute capacity load? suppose for the production of 100 km,we required 1000 min when it is produced through only one machine.Now if 2 machines are used simultaneously we required 500 min.How to see this in capacity planning?

Dear,
For calculating Available capacity you have options like minimum capacity, normal capacity and maximum capacity. You can select this option in work center-capacity tab for individual capacity category.
With parallel sequence and with both machines you can select maximum capacity option and plan your capacity.
Hope this is helpful.
Regards,
Prasad

Similar Messages

  • How to use parallel sequence for split the operation qty. urgent or other o

    PP guru
    My scenario is as follows.
    I ve one material suppose…xyz.
    For that material I' ve created bom, routing.
    In routing I' ve mention only one operation. 0010.
    Now I' ve the production order of 1000 kg.
    I want to use two work centers to run this production order. ( e.g.work center a and b)
    In routing I used work center a.
    In short I want split that operation.
    So what I ve to do or use parallel sequence and how???
    or else is there any other option to split the order to two or more machines/work center?
    Pls explain me in brief.
    Regards,
    Ram

    Hi,
      If you want to carry the production with two different work centers , first you need to split the operation qty.
    For this in the order type dependent parameters OPL8
    in the controlling tab page enable the indicator Cost collector
    and set the default rule as PP2.
      Create a Product cost collector with KKF6N.
       Now in the production order , select the operation and choose functions--->>> split.
       Now enter the operation split quantity and execute.
       Now in MD04 you can see two production order.
       In the second production order change the work center in the operation overview as desired and save.
      Regards,
    nandha

  • How to use parallel flowed subforms begining at the same position.

    How to use parallel flowed subforms begining at the same position in my form.
    Ex
    Subform1
    Subform2
    Subform3
    DropDownList1
    DropDownList1
    DropDownList1
    I would like to repeat  with a button the 3 subforms in parallel
    Subform1
    Subform2
    Subform3
    DropDownList1
    DropDownList1
    DropDownList1
    Subform1
    Subform2
    Subform3
    DropDownList1
    DropDownList1
    DropDownList1

    Post your question in the LiveCycle Designer forum.

  • How to use parallel

    Hi
    Any body help me to how to use parallel and add window8

    Follow the instructions from the Parallels User Guide here.

  • How to use new sequence when one is reached its maxvalue in PL SQL code

    Hi,
    Currently, I am populating a unique product serial number in a table column using a sequence call to generate new number. For different products, I have different sequences and in my PL SQL code usiing IF..Else block I populate serial number for different products. For one most selling product sequence, we are reaching a Max value in production in a month and to make sure that application will continue to work fine for various end users without getting any error on their screens, I want my code to switch to new sequence automatically. I just need to add another if condition but my problem is how to find accurately when max value is reached for old sequence.
    As call to old sequence can happen in different sessions there could be inconsistency and can end up at error. My new sequence value has to start with AV1000. Please suggest.
    My old sequence look like this :
    SEQUENCE Prd
    INCREMENT BY 1
    START WITH AS1000
    MAXVALUE AS9999
    MINVALUE AS1000
    CYCLE NOCYCLE
    CACHE 2
    Order Yes;
    Edited by: user11695088 on Jul 15, 2009 12:14 AM

    Catch the exception and use your new sequence. But somehow, I'm not liking your alternative approach.
    SQL> set line 300
    SQL> set pages 50000
    SQL> set serveroutput on
    SQL> create sequence testing_seq increment by 1 start with 1 maxvalue 3
      2  /
    Sequence created.
    SQL>
    SQL> create or replace procedure test_seq_proc(p_seq out number)
      2  is
      3  begin
      4     select testing_seq.nextval
      5     into p_seq
      6     from dual;
      7  --
      8     dbms_output.put_line(p_seq);
      9  --
    10  end;
    11  /
    Procedure created.
    SQL> declare v_out number;
      2  begin
      3     test_seq_proc(v_out);
      4  end;
      5  /
    1
    PL/SQL procedure successfully completed.
    SQL> /
    2
    PL/SQL procedure successfully completed.
    SQL> /
    3
    PL/SQL procedure successfully completed.
    SQL> /
    declare v_out number;
    ERROR at line 1:
    ORA-08004: sequence TESTING_SEQ.NEXTVAL exceeds MAXVALUE and cannot be instantiated
    ORA-06512: at "ETL_ADMIN.TEST_SEQ_PROC", line 4
    ORA-06512: at line 3
    SQL>Cheers
    Sarma.

  • How to use ODI sequences ??

    I have an interface which need an ODI sequence.
    When I execute it the value of the sequence is always the same.
    I have seen on another thread that it may pass by an agent but...
    I have 2 tables (source and target) from the same connexion which don't and won't have agent.
    How can I do ??
    My connexion is on an Oracle 10g RDBMS and I'm using an IKM SQL Control Append.
    This is not the first time I have problem with the ODI Sequence but this time I can't create an RDBMS one ...
    Thanks in advance,
    BM

    Hi guys,
    I have some questions, I am trying to create a dimension and it should use a sequence, but I am getting the same issue as you guys. I can't not generate a unique key because my sequence is the same value for all rows.
    So if I really understood there are two ways to use a sequence in ODI. One is using ODI sequence (creating it inside ODI) and other is using a RDBMS sequence.
    First: What I have to do to use a RDBMS sequence? (Step by step please)
    Second: I can't use an IKM SQL to SQL append in my interface. This interface is pretty simple - source is a flat file target is an Oracle table, I just need to move all flat files columns to Oracle table adding a sequence. I understood that my Staging area should be different than my Target area based on posts above. I already created a new datastore to be my new staging area, but I don't know how to make an association between interface and new stage area.
    Can you please provide me the easiest solution?
    Thanks
    Leo

  • How to use Parallel Compilation -j using sun make?

    Hello,
    My c++ project have lots of cpp files and it takes around 5 - 5.5 hours to build the application which is definitely a lot of time. Little bit of googling landed me to the following sun link to reduce the build time.
    http://developers.sun.com/solaris/articles/parallel_make.html
    By using parallel make option of -j as it should reduce the build time considerably as i was using Solaris 9 on Sparc Sun-Fire-V440 which is having 4 CPU.
    But on invoking make with a -j option i.e "make all -j 4" I get the following error :
    make: Warning: Ignoring DistributedMake -j option
    I even tried to use gcc make instead of sun(/usr/ccs/bin/make) make but none of them is actually helping me to reduce my build time.
    Can some please guide me how should i go ahead withe usage of -j option on solaris.

    You should be aware that amount of parallelism that dmake can exploit depends fully on your Makefiles.
    Unnecessary dependencies can significantly reduce amount of parallelism.
    Recursive makefiles (make rules in turn calling makes) will hamper parallelism as well.
    Hidden dependencies (those not directly specified in rules) will lead to spontaneous build failures.
    It will take some discipline to write makefiles properly, but in a long term it will pay off.
    regards,
    __Fedor.

  • How to use parallelism in RMAN script having multiple lines

    Gurus,
    Need your advice on using parallelism in 'BACKUP AS COPY DATAFILE' script having multiple lines.
    I have a script like below:
    CONFIGURE DEVICE TYPE DISK PARALLELISM 10;
    backup as copy datafile '/data1/oradata/PROD/data01.dbf' format '+DATA';
    backup as copy datafile '/data2/oradata/PROD/data02.dbf' format '+DATA';
    backup as copy datafile '/data3/oradata/PROD/data03.dbf' format '+DATA';
    backup as copy datafile '/data4/oradata/PROD/data04.dbf' format '+DATA'; and so on ......
    If I run this script, it runs sequentially. How can I parallely copy the required data files ?
    I have to selectively copy few files in ASM.
    I want to use a single script.
    Please advise.
    Best regards,
    Santosh
    Edited by: 966454 on Oct 18, 2012 11:59 PM
    Edited by: 966454 on Oct 18, 2012 11:59 PM

    Unfortunately, this will not help my case. It may not always be '+DATA'
    I want to know if there is any way to parallelise the multiple statements.
    Script may have :
    CONFIGURE DEVICE TYPE DISK PARALLELISM 10;
    backup as copy datafile '/data1/oradata/PROD/data01.dbf' format '+DATA1';
    backup as copy datafile '/data2/oradata/PROD/data02.dbf' format '+DATA2';
    backup as copy datafile '/data3/oradata/PROD/data03.dbf' format '+DATA3';
    backup as copy datafile '/data4/oradata/PROD/data04.dbf' format '+DATA4'; ........
    or
    backup as copy datafile 1 as '/data1/oradata/PROD/data01.dbf' ;
    backup as copy datafile 2 as '/data2/oradata/PROD/data02.dbf' ;
    backup as copy datafile 3 as '/data3/oradata/PROD/data03.dbf' ; ........
    Regards,
    Santosh
    Edited by: 966454 on Oct 19, 2012 12:33 AM

  • HOW TO USE a sequence in merge load

    Hi,
    Someone can help me with a solution for loading a table with merge option and one of the column has values from a sequence.
    regards
    Babu

    Can we use a sequence to load a table with IKM Oracle Incremental Update (MERGE)?

  • How is Reqmts calculated in CM01( capacity Planning: Detailed Capacity List.

    I believe Reqmts is the difference between the 'To be confirmed' and 'confirmed hours'.
    If let suppose standard hours for a part to be manufacture is 100hrs and we have already work 52 hrs off 100hrs then if i go and look up this order in CM01 then the Reqmts should say 48hr (100-52).
    But when I am going to CM01 it still saying 100 hours which is not correct. Can some one help me solve this issue

    Hi Pankaj,
    Once confirmation is done, hours must be deducted and it should show the remaining hours in CM01 based on the below settings in work center/resource in Capacity tab.
    Control: Calc. of Remaining Req./Duration After Confirmation
    Controls how, after partial confirmations the
    Remaining capacity requirement and
    Remaining duration in a rescheduling is calculated.
    The following are possible:
         Formula-Related: The remaining requirement / remaining duration of a
         partially confirmed operation is determined when the formula defined in the work
         center is evaluated. It is the remaining quantity and not the operation quantity
         that is taken into account after the confirmation.
         Completely for Partial Confirmation: The remaining requirement /
         remaining duration is reduced completely when there is a partial
         confirmation.
         Completely for Final Confirmation: The remaining requirement /
         remaining duration is reduced completely when there is a final confirmation.
         There is no adjustment through partial confirmations.
         Proportional to Service: The remaining requirement / remaining
         duration of a partially-confirmed operation is reduced proportional to the
         service that is assigned to the relevant capacity segment in the work center in
         your record type group.
    Dependencies
    When there is a final confirmation the remaining capacity requirement of the
    operation is always completely reduced.
    Please check your settings accordingly.
    Thanks.

  • How to use parallels??????

    My MBP originally has a windows system, I can press option to chose whether start Mac or Windows, But now, I'm using parallels, when i'm using it, i'v messed up, I'm wondering if i need to install windows again, can't I implement the windows I've installed

    Yes, I realized that I formulated a wrong question...and probably in the wrong place.  Pardon me for that. I humbly recognize that computers are not my strong, specially Macs.  I was just looking for a little help because I bought a new Macbook Pro with Parallels and I'm able to print ok from the Mac's Lion but not from Windows; even though I did all the control panel normal procedures to install my printer.
    Two short thoughts that have helped me alot in life and I would like to share today:  "Not everyone that knows lives but everyones that lives knows" and "The tongue that heals is a tree of life but a devious tongue breaks the spirit".  We should always be conscious that all acts of bigotry only leads us to death and try to prevent it to be part of our ways.
    I appreciate for both for taking time to write.  Wish you peace, well being and holly hapiness today and always.
    Best regards;
    Greatfultime

  • How to use global variable defined in planning area in FOX

    Hi guys
    I meet a situation that needs to use variables defined in planning area in FOX.How to code?
    My situation as follows:
    Two variables are defined in planning area,one is zcomp_code,the other is zfiscyear.
    There are two key figures in the planning area,one is sales volume,the other is delta(%).
    I want to use sales volume multiplied by delta(%) in selected zcomp_code and zfiscyear by users.
    Anyone can help?
    Thanks in advance.

    Hi Eric
    check this example
    in fox you shoud declare your data and after call your variable
    after this you could easily operate on data using the f4 for definig the right fox operators
    DATA FYEAR TYPE 0FISCYEAR.
    FYEAR = VARV(PLANYEAR).
    {0COPANETRV, FYEAR,CRA,020} =
    {0COPANETRV,FYEAR,CRA,020} *
    ({ 0CP_DELTAB,FYEAR,CRA,020} + 100 ) /100.
    {0CP_DELTAB,FYEAR,CRA,020} = 0.

  • How to use sub sequences as sources

    Hi
    I want to take a section from a sequence, and use it for source material later on for a recap. I mark an in/out on the sequence, hit 'make subclip' then load it in the viewer monitor. When I splice it into the sequence, it is not made up of it's original cut clips, it is a whole clip called 'sequence name' subclip. How can I get the overwrite/splice from the subclip sequence to contain the original cuts. As is so often the case with FCP in my experience, this can be done without a fuss in seconds on Avid.
    Cheers for your time
    Mark.

    Hold the Command key as you make the edit either with the canvas edit overlay or with the F keys.
    Or even drag and drop editing ... the command key is the trick.
    A lot of folks like this to be the default behavior too ... so if you remap the existing Insert with Contents (Cmd-F9) and Overwrite with Contents (Cmd-F10) commands to the regular F9 and F10 keys then you get the best of both worlds.
    Cheers
    Andy

  • How to use phone with existing rogers plan

    If I bought a second hand iphone how do I use it with my existing Rogers cell phone plan?  I have one year left in the contract.

    You need to activate the iPhone with your Roger's line/number.
    If your existing phone includes a micro-SIM card and the second hand iPhone is an iPhone 4, you can insert that SIM card in the iPhone 4 followed by connecting the iPhone to iTunes to activate the iPhone with your line/number.
    If your existing phone includes a regular size SIM card and the second hand iPhone is a 3GS or 3G, you can insert that SIM card in the iPhone and do the same with iTunes.

  • How to use Abap Editor(SE38) Test Plan Management Option

    Hi,
    I am trying to use the Test Plan Management option in Abap Editor.
    I could not find any articles/forum postings about it.
    Please guide me on the same.

    hi,,
    go through the below link for help.
    http://help.sap.com/saphelp_erp2005vp/helpdata/EN/06/27185efc5211d1bcfd080009b4534c/frameset.htm
    regards,
    bhavana

Maybe you are looking for