Constrained Planning Question

Hi All,
We are running Unconstrained Planning right now. We need to run the ASCP EDD plan with following MUST Constraints -
Lead Time for ONLY Purchased Items
Aggregated Supplier Capacity.
To provide more details on this, assume following -
END_ITEM -
                    Mfg LT = 4 Days
PURCHASED_ITEM
                       Processing LT = 15 days
Now if the Sales Order comes on 16th Day then ASCP should compress the Mfg LT of END_ITEM and fulfill the order. But a Sales Order comes on 12th day the the order should be fulfilled on 16th day respecting the Purchased Item Lead Time. ( Assuming : - Purchased Item is not available and it needs to be purchased for this sales order) but violating the Mfg LT of END_ITEM.
As per my understanding this is not possible to achieve in EDD plan. Currently we have PTF = Total LT for Purchased Item and that helps us in Unconstrained Plan.
But In EDD plan, I need to setup MSO:Lead Time Control = Do Not Violate .... so that it respects the PTF.  But with this setup the Mfg LT will also be respected and the SO will be pushed out.
If I set MSO:Lead Time Control = Violate Min Processing LT, then both Purchasing LT and Mfg LT are subject to compression.
Note: - it is not viable to remove Mfg LT of the END_ITEM as it is important to align the requirement of PURCHASED_ITEM in future. Without Mfg LT of 4 days we are putting all the purchased item receiving at risk which is totally unacceptable.
Please confirm on this. Also please let me know any workaround to this.
Second issue is about the Supplier Capacity. We have an agreement with supplier at aggregate level. For example, 800 units a day and supplier is supplying us almost 30 different active parts. Current there is no way we can specify aggregate level Supplier Capacity in ASCP so that it restrict the total supply of these 30 parts to 800 per day.
I had to calculate the consumption % for each part and setup at Supplier - Item level. With the supplier capacity accumulation, eventually this will be achieved. But we have to setup capacity at Supplier - Item level.
Can someone please confirm my understanding? Also please let me know any workaround.
Thanks for input.

I'm no Swing expert, but here is what I think.
Most of the methods of PropertyChangeSupport, like the one you invoke:
fireIndexedPropertyChange(String propertyName, int index,
    Object oldValue,  Object newValue)Are, according to the documentation:
+...merely a convenience wrapper around the more general firePropertyChange method that takes PropertyChangeEvent value.+
So instead of invoking the previous method you could have invoked:
firePropertyChange(new IndexedPropertyChangeEvent(...))In the same way, it would be nice if VetoableChangeSupport had a method:
fireIndexedVetoableChange(String propertyName, int index,
    Object oldValue, Object newValue) throws PropertyVetoExceptionbut it doesn't. So why not just fill in the pattern and invoke:
fireVetoableChange(new IndexedPropertyChangeEvent(...))

Similar Messages

  • Explain Plan Questions

    Hi All,
    Q1. Performance wise are the following queries both same.
    Which one will yield a better throughput and why?
    Approach 1
    SELECT
    e.desig "Emp Desig",
    (select count(1) from emp where empid = e.empid and dt_created between sysdate and sysdate -1) "Emp added since yday",
    (select count(1) from emp where empid = e.empid and case_solved_count > 10 ) "Emp with case solved counts > 10",
    FROM EMP e
    Approach 2
    SELECT
    e.desig "Emp Desig",
    Func1(e.empid ),
    Func2(e.empid )
    FROM emp e
    Q2. If we have three tables T1, T2 and T3 with following record counts - Will their sequence of placement in WHERE clause of the query affect performance? (My understanding is it should not)
    Table Record Count
    T1 5000
    T2 500000
    T3 50
    Need expert advise....
    Regards,
    Chinmay
    Happy Working

    Where did you get these questions from?
    Q1. Performance.. is the same. Which one will yield a better throughput and why?
    What is the difference between performance and throughput in this context? How in the world throughput could be better when "performance is the same"?
    Performance cannot be the same even when Func1 and Func2 contain no more than exactly the same sub-queries as in the 1st SELECT. Functions are called for each row in EMP and each call leads to so called context switch between SQL executor and PL/SQL. This is expensive and may result in substantial increase of elapsed time given the number of rows in EMP is relatively large
    On the other hand if the functions contain no more than dummy NULL statement then 2nd query most certainly would perform better
    Q2. It depends. With correct statistics and CBO - no, not a chance. With RBO it depends on
    1. What is your understanding of "their [tables] sequence of placement in WHERE clause". There are no tables in WHERE clause, there are predicates that mostly deal with table [pseudo]columns
    2. Are there any indexes on the tables
    3. Which expressions do you use in WHERE clause
    4. etc..
    Consider following:
    DROP TABLE T1;
    DROP TABLE T2;
    DROP TABLE T3;
    CREATE TABLE T1(C1 NUMBER CONSTRAINT T1_PK PRIMARY KEY);
    CREATE TABLE T2(C2 NUMBER CONSTRAINT T2_PK PRIMARY KEY);
    CREATE TABLE T3(C3 NUMBER CONSTRAINT T3_PK PRIMARY KEY);
    INSERT INTO T1 (SELECT OBJECT_ID FROM ALL_OBJECTS);
    INSERT INTO T2 (SELECT OBJECT_ID FROM ALL_OBJECTS WHERE ROWNUM <= 1);
    INSERT INTO T3 (SELECT OBJECT_ID FROM ALL_OBJECTS WHERE ROWNUM <= 1000);
    SET AUTOTRACE TRACEONLY
    SELECT --+ RULE
              C1
         FROM T1, T2, T3
         WHERE C3 = C1
              AND C1 = C2
    Execution Plan
       0      SELECT STATEMENT Optimizer=HINT: RULE
       1    0   NESTED LOOPS
       2    1     NESTED LOOPS
       3    2       TABLE ACCESS (FULL) OF 'T3'
    4 2 INDEX (UNIQUE SCAN) OF 'T1_PK' (UNIQUE)
    5 1 INDEX (UNIQUE SCAN) OF 'T2_PK' (UNIQUE)
    Statistics
           1008 consistent gets
    But
    SELECT --+ RULE
              C1
         FROM T1, T2, T3
         WHERE C3 = C2
              AND C1 = C2
    Execution Plan
       0      SELECT STATEMENT Optimizer=HINT: RULE
       1    0   NESTED LOOPS
       2    1     NESTED LOOPS
       3    2       TABLE ACCESS (FULL) OF 'T3'
    4 2 INDEX (UNIQUE SCAN) OF 'T2_PK' (UNIQUE)
    5 1 INDEX (UNIQUE SCAN) OF 'T1_PK' (UNIQUE)
    Statistics
           8 consistent getsFortunately RBO is depricated and unsupported in 10g, so the answer should be NO.

  • Data plans question

    I am a little unclear how the data plans work with AT&amp;T. I rarely have a need for a data plan, not even once a month, but I would like to have it available for when I do need it as inexpensive as possible. So here are a couple questions I have.
    If I sign up for the least expensive plan, and I happen to go over, does it just bump me automatically to the highest usage plan for just that month?
    If I use zero dta for a few months, I assume I will still insure the bill anyways. Am I correct in this assumption?

    http://www.att.com/esupport/article.jsp?sid=KB413502&cv=820#fbid=m8vtNf8NeYg
    It will charge you for overages. They renew every month, so if you do not need data for a month or more, cancel it right on your iPad. And yes, if you don't cancel, you'll pay the bill every month.

  • Constraining Planned Orders in SAP-PP

    Hi,
    Can someone indicate me how I can get my planned orders constrained into SAP-PP?
    I have an external Requirement Planning tool that generate an unconstrined requirement plan. The external tool is then interfaced into SAP to send in the planned orders.
    I will then like to know the steps I need to use to setup a constraining process to optimize the allocation of plans to my capacities.
    Thanks,
    Paulin

    Paulin,
    You could configure capacity management, then run capacity leveling.  Strictly speaking, this will provide a plan in which each work center's load is constrained  to work center capacity.  However, the overall plan will not be optimized, nor will it necessarily be feasible.  For this functionality, you need APO.
    ERP Capacity leveling overview
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/8a/a58a794adc11d189740000e8322d00/frameset.htm
    Best Regards,
    DB49

  • Marketing Plan - Questions

    Dear friends,
    I have created a marketing plan using crm_mktpl, and assigned a marketing org to it.
    What happens to the market plan after its created.. how does the marketing manager know that a plan is created and he needs to approve it. where is the link.
    My question is, I want to find out like this how many marketing plans are created for a given marketing org / all marketing org.
    And how do I link a prospect generated because of a particular marketing campaign when a business runs many to understand the effectiveness of  say a TV advt or Newspaper Ad.
    Regards

    Dear Sadhu,
    Not sure whether your question was answered.
    You can use actions to trigger workflow using actions to send an email to inform the approver. if you can use BAdi and trigger a workflow as soon as a status of the pan is changed.
    If you want to see the all the plans for a specific marketing organization or marketing organization, you can use standard search feature. if that doesn't satisfy your requirement, you can write a report by using the tables CGPL_PROJECT, CGPL_TASK,  CRM_MKTPL_ATTR.
    Thanks & Regards
    Raja Pamireddy
    CRM Marketing Forum Moderator

  • Consumption-based Planning Question

    Dears,
    I am working on a presentation for a client in order to help them to decide which SAP Planning Tool should be implemented.
    Since it is not a production company and it can be considered closer to a wholesale or retail one my question are related to CBP and SCM:
    -Is necessary to customize and run the Consumption-based Planning tool in ERP before implementing a SCM tool (either APO or F&R)? Are they independent? Could it be advisable?
    -I read in several website that is not possible in MRP to generate Stock Transfer Orders between Storage Location within the same plant. Has CBP the same constraint?
    Thank you very much for your help.
    L.C.

    L.C.,
    -Is necessary to customize and run the Consumption-based Planning tool in ERP before implementing a SCM tool (either APO or F&R)?
    Not exactly.  You will have to do some customization in ERP regardless of whether you additionally implement SCM planning, because all of the execution is done in the OLTP (ERP).
    Are they independent?
    If you mean are ERP and SCM independent, the answer is yes, they are independent.  You can run SCM without ERP, and you can run ERP without SCM.
    Could it be advisable?
    Good question.  Depends on your point of view. Establishing a new implementation of CBP is a substantial project.  Adding on an implementation of SCM means additional complexity.  The payoff is more features. The client has to choose.
    -I read in several website that is not possible in MRP to generate Stock Transfer Orders between Storage Location within the same plant.
    Neither MRP nor CBP planning can create stock transport orders, they create stock transport requisitions.  CBP does not have any more or less restrictions than MRP as far as the creation of stock transport orders or stock transport requisitions are concerned. STR/STOs between storage locations became possible starting, I believe, in ECC 5.0.  R/3 4.7 did not support this feature.
    Sounds like you are going to need a bit of help with your presentations.  The following site contains quite a few high level presentations about SCM planning you might want to incorporate into your presentation:
    http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000187811&
    Best Regards & Good Luck!
    DB49

  • Teacher CreativeCloud Plan Questions

    G'day,
    I have two inquiries about the student and teacher creative cloud subscription plan. (I am an educator so I am thinking about signing up for the monthly subscription. I also have owned a student version of CS4 production suite in the past.)
    I am a little confused by the following after reading the terms and conditions: 'After the first year we will renew your contract automatically for another year at the then-current standard monthly price (currently at A$24.99/month)' and 'Save 60% on your first year'. Does this mean that after a year, the discounted  price for the teacher plan will no longer be applicable, or the current discounted price (which is currently A$14.99 monthly) will change to the price predicted for this plan in a year's time, which is valued at $24.99?
    Also, in the FAQ it states that I can use this license for commercial purposes, but in the terms it states ' This pricing is not available to OEM, commercial or volume licensing customers.' Can the teacher subscription plan be used for commercial purposes?
    Thanks for your time,
    Justin

    the current discounted price (which is currently A$14.99 monthly) will change to the price predicted for this plan in a year's time, which is valued at $24.99?
    The discount applies once and once only. Once you've taken advantage of the discount (first 12 months only) then you are no longer eligible for it in subsequent years of membership.
    So future membership from Year 2 onwards will be the normal price prevailing at that time (currently US$29.99/month but what is the AUD equivalent?).
    Not sure how Adobe calculates the 60% saving for the monthly plan (which I guess is at the heart of your question). Looks like a 50% saving in AUD.
    Can the teacher subscription plan be used for commercial purposes?
    Yes.
    Education FAQ
    "Can I use Student and Teacher Edition products commercially?
    Yes, Student and Teacher Edition products can be used commercially on your privately owned computer. They may not be resold."

  • Airport Express/Iphone 3G Installation Planning questions

    I'm planning for my iphone 3g and Airport Express and have some basic questions that many of you can answer easily:
    1. If initially, Airport Express will be used to get to Internet from my imac (connected to lan port) and from my Iphone 3G, (where my Verizon dsl connection seems to use dhcp), can I avoid a manual setup of Airport Express by using just the basic install Airport Utility screens?
    2. If I unplug my hp printer from my imac (usb connection) and plug the cable into the Airport Express usb port (before using the Airport Utility program), then infrequent guest's mac portables could use my printer. Will I be able to use my HP printer from the Safari program in my iphone 3g (or is print via Safari in an iphone not an option)?
    3. I currently have a 768k download speed connection with Verizon dsl (speedtest.net says 738 kbps download and 123 kbps). This speed is sufficient for me today (except for some, not all, Internet tv sites--like tnt (via XP under BootcamP) Would this dsl speed be sufficient for a quality voice call from my Iphone through Airport Extreme (using either a voip package or hopefully, an at&t femtocell solution) ?
    4. With my basic Verizon dsl connection, is there any reason to contact them to get or give them any information or can I get all the info needed to install my Airport Extreme from my Leopard's network preferences screen?
    Thanks for any help you can give.

    1. ...can I avoid a manual setup of Airport Express by using just the basic install Airport Utility screens?
    Probably but you won't know until you get to the point of entering all your settings.
    2. ...Will I be able to use my HP printer from the Safari program in my iphone 3g (or is print via Safari in an iphone not an option)?
    This is not an AirPort Express (AX) question but an iPhone question. Can the iPhone print to a printer offered via bonjour over Wifi? Something to ask in the appropriate iPhone discussion area.
    3 ...Would this dsl speed be sufficient for a quality voice call from my Iphone through Airport Extreme (using either a voip package or hopefully, an at&t femtocell solution) ?
    Possibly but it is impossible to speculate on unknown and theoretical items.
    4. With my basic Verizon dsl connection, is there any reason to contact them to get or give them any information or can I get all the info needed to install my Airport Extreme from my Leopard's network preferences screen?
    Normally you wouldn't need to contact them. Earlier you were talking about an AX and now you are mentioning an AirPort Extreme base station (AEBS). Neither of these have anything to do with Leopard's network preference screen.

  • Route plan question

    We have two offices that will be consolidated in to one office within the same city. The existing offices are in the same area code. The new office will be in a different area code.  According to ATT, the DIDs cannot be ported to the new office.
    Each office has its own Route Plan (in Call Manager) and voice gateway.
    For the new office, we will be installing a single Cisco 2851 for the VG/PRI and a Cisco 2951 for the data network (via MPLS).  We want the network and telecommunications ready before staff move in to the new office.
    My question is, can we or should we re-configure the existing route plans to reflect the new circuit/DIDs?  Should we create a new route plan?  What would be the best course of action for this move?
    I don't have a lot of experience with route plans and VG setups so we plan on engaging a contractor for this project.
    Any comment or suggestions you may have will be greatly appreciated.
    Thanks!

    Hey Richard,
    Personally, I would create another dialplan and then use the bat tool to move the phones from one dialplan to another as the changes are made.  If you're not experienced with doing this, I would concur with your decision to hire outside help to do this.
    On another note, you could easily use a single 2951 for both the voice gateway and the mpls router.  These isrs are made to serve double duty.
    hth,
    Rick

  • Horizontal Plan question

    Hello,
    I have a question regarding the behavior of the horizontal plan. I'm new to the ASCP module.
    I have current scheduled receipts let say a Purchase order of qty 20. If i drill down on it, there is
    an action of Reschedule Out but the "For Release" and "Firm" are still unchecked. So this scheduled
    receipts becomes part of the Projected On Hand for today. The same PO quantity appears under day bucket
    on which the suggested due date falls. Isn't this an overstatement?
    thanks.
    gregg

    09-aug-10 | ....|...............................
    Current
    Scheduled
    Receipts 20 (action is Rescheduled out
    w/ future date like 02-FEB-11)
    Proj
    OnHand 20
    02-FEB-11|...
    PO 20 (drilling down the same po that are shown under sched receipts)
    It looks like this, there is a duplication the current schedule receipts are counted in the projected on hand, etc
    and then the rescheduled PO is counted once again.
    Edited by: Apps Devel on Aug 10, 2010 10:03 AM

  • Office365 Plan Question

    Hi,
    We qualify as a non-profit for the E1 and E3 plans. We have seasonal staff of which we would like to have access to the E1 plan only and then full time staff of which we would like to have on the E3 plans. Is it possible to split a user base amongst two
    plans on the same account and email domain?
    Thanks,
    Andy Pe

    Hi Andy,
    Don is right that you might need to post your question in the dedicated forum of
    Office 365 Community.
    This is because that current forum only focuses on questions and feedback for
    Microsoft Office client. There is not so much about Office 365 Plans/Services aspects here:
    http://community.office365.com/en-us/f/default.aspx
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thank you for your understanding.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Hyperion Planning question

    We are in the final stages of selecting a budgeting/planning app and Hyperion Planning is one of the finalists.One question we have is are there performance/speed issues if a dimension starts to have a large number of members? If so, at what level? Or cube size? Or is it mainly affected by good optimization of the cube?Also, is there good acceptance and trainability of end users in learning and using the views and any end user parts?Did it meet your needs?Thanks!

    This will not work. Your security to dimensions is driven by how you secure individual planning dimensions. Data form folder security is just for data forms. It does not influence how your planning application is secured. You may be able to use other dimension members to achieve it partially e.g. if Folder1 is for product Line 1 and folder 2 is for product line2, you could additionally secure product line PL1 to be read access and PL2 to be write access. You will have to play with other dimension member's security to see what you can achieve.
    Thanks,
    Sunil
    Edited by: sunil k on Dec 10, 2012 2:47 PM

  • Muse Site Plan Question

    Hello out there!
    I'm a self taught (well, still frantically learning) "designer", so if this question is super fundamental I apologize
    I have grand plans for this site I'm building but I can't for the life of me figure out how to layout the planning stages! What I would like would be something like this:
    HOME
    (with only two buttons
    Interiors & Exteriors)
                                                                                                   INTERIORS                                                                                                          EXTERIORS
                                                                                    (HOME)                                                                                                                                          (HOME)
                                                 ABOUT                    PORTFOLIO                 CONTACT                     BLOG            EXTERIORS                                   ABOUT                    PORTFOLIO               CONTACT                    BLOG             INTERIORS
                                           The Crew                       Bathrooms                                                                                                                                   The Crew                          Whole House
                                          Why We're Cool              Kitchens                                                                                                                                       Why We're Cool               Windows
                                          Are We Right For You?   Basements                                                                                                                                   Are We Right For You?    Doors    
                                                                                  Other Rooms                                                                                                                                                                         Historic Restoration
    However, when I put it in Muse menus don't work out & pages need new names (I feel like Atreyu in Never Ending Story...) 
    Like I said I apologize if this is super fundamental, but google has yielded zero results
    Thanks!
    Vanessa                                                                  

    Actually, Muse does allow two pages to have the same name, just not the same filename.
    By default the filename is generated from the name the page is given in Plan view, so that's whether the duplicate name restriction comes from. If you go to Page Properties you can turn off this automatic behavior and make the filename whatever you want as long as it's unique for your entire site.
    Every page has the name used in the menu (and Plan view), the title used in the browser tab and search results, and the filename. By default Muse generates the title and filename from the name entered in Plan view, but you can override that in Page Properties.

  • SCCMContentLib Planning Question

    Let's say I will have a CAS,  2 Primary Sites, and many standalone DP's.  Since I have a CAS, I know that I have to prepare to have enough disk space for all the content to be stored in the SCCMContentLib folder on the CAS.  I also know that
    I need to size the DP's properly since they will also have content in the SCCMContentLib folder.  
    My question is concerning the primary sites. If I do not install a DP role on the Primary sites will the primary sites still end up with a SCCMContentLib folder with all total content just like the CAS?  Let's also assume that the CAS owns all the content
    and the Primary sites own a very minimal amount of content.

    Regarding the CAS, we will have 160,000 clients. I believe standalone primary supports up to 100,000 only, unless that has changed.  I would love nothing more than to not have a CAS and just a single primary.
    You are correct, so you are already accustomed to pain with that many managed clients :-) although the liking it part is not by choice.
    So I misread your question a bit. Ultimately, as long as any DP within a primary site has the content assigned, then the primary site server will also have that content in its sccmcontentlib. So yes, you need to plan for this additional disk space on the
    primary site server no matter what. Also note that there is no reason for this to be high-speed/cost storage. You can/should offload this to lower tiers of storage without any impact whatsoever.
    Jason | http://blog.configmgrftw.com

  • Interactive Planning question

    Hello,
    The feature 'Select Time Buckets Profile' which can be selected from the icon 'Period Structure' in Interactive Planning in DP when selected after loading data in the dataview, is being applied to only the future horizon.
    I tried to use the next feature from the menu 'Set Time Buckets profile', this too gives option to select only 'TB Profile ID (Future)' and gets applied to future horizon.
    Is this a bug in the system or it comes like that. If we want the selected TBP to be applied to both future and past, is there any additional setting we need to do to be able to change the past profile on the fly using this feature?
    Thanks,
    Tej

    Thanks Sunitha for your clarification, its a little surprising that we need to change at the dataview level Only for  the past horizon. Because in production system, a business user might want to do this , but will not be able to do due to security.
    It would be good to have this feature usable for past horizon as well.
    Guru Charan,
    Not necessarily that Business users will not be concerned about knowing past patterns, sometimes it becomes important to analyse history as well , as you rightly said - 'we are much concerned with how the future is getting affected based on the past data.', It becomes important to analyse both history and forecast in the same buckets and therefore need to be using the same profile both for past and future for comparing on same levels. I understand this is not a bug, but you could say its necessary feature which is missing in interactive planning.
    Thanks,
    Tej

Maybe you are looking for

  • HT1338 Still have os x 10.5.8  How do I update to a newer version to run new itunes.  And is it safe

    Can I safely update to a newer version and if so which one.  I currently am running os x 10.5.8 and can not load the new itunes for my sons new ipad mini.  Don't want to mess up my computer by trying to download something that I can't

  • Master/detail doesn't work in IE

    I know this has been asked in other ways, but I can't find the answer to my particular situation. Why doesn't the master/detail list work in IE 8, but it does in Firefox? Here is the URL: http://www.boilerbuddy.com/rep_lookup_new.htm. For example, ch

  • Create synonym in System trigger

    How would i create a synonym in a system trigger? I have created a trriger on CREATE,in which i m giving execute immediate command for creating a synonym and using dbms_job.submit . it is not giving any error but its not creating any synonym on the t

  • ACE 4710 Connectivity ?

    Can the ACE be setup with only one interface configured and not having to place the servers on another interface? Some of the "lesser" loadbalancers have a "Direct Server Return" mode. Where requests come in one interface and out the same interface t

  • HT4583 Why do some paid apps had iAds too?

    I recently down loaded and paid for this app for my 2 year old https://itunes.apple.com/nz/app/butterflies-iblower/id336910288?mt=8 It has iAds in it!!! So useless for a 2 year old as the flashing candy crush ad is just as appealing as the butterfly