Problem with ATP check in release of process order

Hi gurus,
I have next problem in automatic release of process order:
No checking group is maintained for product 000000000791104015, plant VFMX in matl master.
Situation:
I've some materials without MRP views in material master data but apparently this doesn't affect to release order. In this case, this material hasn't this views and it's impossible to release the order. I'm supposing the problem is not related with the fill up of this views or the field in material master data, because for other materials with the same situation the release is running.
Anybody has any idea?
Thanks a lot,
Regards

Dear ,
You are facing this error because :
- you have activated avaialbility check, but checkingb group is not maintained in material master of the component
- if maintained in material master, in configuraion checking group and checking rule combination is not maintained
- if above both are maintained then in the checking control for the order type is maintained, but in the control you maintained the setting that - release not possible if no availability, hence change it to user control option.
*So  Goto MM02- material master -MRP3 view -Maintain the Availability check field as 01/02 as applicable  for components in the production *
For more clarification , you can investigate the below : For production order avilablity check  and release u have  should  following settings.
1. Define checking Group - SPRO
2. Define checking Rule- SPRO.
3. Define scope of check - OPJJ - Scope of the avilabilty check is defined for the Combination of Checking group and Checking rule. Check contol is defined for each comination of checking group and checking rule.
4.Define Chek control -OPJK  : Checking rule is linked to Ordertype/Plant combination.
while releasing the production order system will do avilability check as per the settings In OPJK for ordertype/plant combination.
Hope this is clear to you
Regards
JH
Edited by: Jiaul Haque on Jun 20, 2010 9:20 AM

Similar Messages

  • Problem with ATP check.

    Hello SAP Gurus,
    While checking sales order in u201Cscope of checku201D the u201Cinclude purchase orderu201D button is checked. so could some please explain me this scenario, because my client can able to print the pick list for one delivery when the stock quantity is zero.
    thanks
    Sha

    Hello,
    Is there any way to stop the print pick list until the GR has been received for Pos but we want to create the delivery? Only we want to stop printing the pick list.
    Because my client faced problem u2013 they print the pick list and informed to the customer that we are sending the material but my received the material one day later.
    Please I need help asap.
    Thanks
    Sha

  • Problem with availability check due to credit block

    Dear Experts,
    I am facing a problem with availability check for a  sales order which is blocked against credit check
    Like, i have a open sales order with mulitiple line items around 10 line items, out of which all the 10 line items have unrestricted stock and got confirmed when availability check has been performed , but we could able to proceed through delivery and billing only for 9 line items. Hence there is 1 line item in the sales order which didn't get delivered. But when we  tried to do the availability check the system is confirming the quantity with credit block. But after the sales order has been released thru VKM3 from credit block again the schedule lines are showing confirmed quantiy as "0" .
    Credit message observed : " Credit check (maximum percentage for open exceeded)".
    An earlier response would be of greater help extension to me , and i shall be greatly obliged to you all.
    Thanks & Regards
    Krishna.k

    Hi,
    once confirm actual stock is there for that line item if yes then may b stock blocked by Credit block.Release the stock reserved by credit blocked sales order  through back order processing.
    Tcode: V_RA
    Select sale order want to change the confirmed qty. SAVE.
    and again come to VA02 and run availablity chek.
    Regards,
    anand

  • Problem with file descriptors not released by JMF

    Hi,
    I have a problem with file descriptors not released by JMF. My application opens a video file, creates a DataSource and a DataProcessor and the video frames generated are transmitted using the RTP protocol. Once video transmission ends up, if we stop and close the DataProcessor associated to the DataSource, the file descriptor identifying the video file is not released (checkable through /proc/pid/fd). If we repeat this processing once and again, the process reaches the maximum number of file descriptors allowed by the operating system.
    The same problem has been reproduced with JMF-2.1.1e-Linux in several environments:
    - Red Hat 7.3, Fedora Core 4
    - jdk1.5.0_04, j2re1.4.2, j2sdk1.4.2, Blackdown Java
    This is part of the source code:
    // video.avi with tracks audio(PCMU) and video(H263)
    String url="video.avi";
    if ((ml = new MediaLocator(url)) == null) {
    Logger.log(ambito,refTrazas+"Cannot build media locator from: " + url);
    try {
    // Create a DataSource given the media locator.
    Logger.log(ambito,refTrazas+"Creating JMF data source");
    try
    ds = Manager.createDataSource(ml);
    catch (Exception e) {
    Logger.log(ambito,refTrazas+"Cannot create DataSource from: " + ml);
    return 1;
    p = Manager.createProcessor(ds);
    } catch (Exception e) {
    Logger.log(ambito,refTrazas+"Failed to create a processor from the given url: " + e);
    return 1;
    } // end try-catch
    p.addControllerListener(this);
    Logger.log(ambito,refTrazas+"Configure Processor.");
    // Put the Processor into configured state.
    p.configure();
    if (!waitForState(p.Configured))
    Logger.log(ambito,refTrazas+"Failed to configure the processor.");
    p.close();
    p=null;
    return 1;
    Logger.log(ambito,refTrazas+"Configured Processor OK.");
    // So I can use it as a player.
    p.setContentDescriptor(new FileTypeDescriptor(FileTypeDescriptor.RAW_RTP));
    // videoTrack: track control for the video track
    DrawFrame draw= new DrawFrame(this);
    // Instantiate and set the frame access codec to the data flow path.
    try {
    Codec codec[] = {
    draw,
    new com.sun.media.codec.video.colorspace.JavaRGBToYUV(),
    new com.ibm.media.codec.video.h263.NativeEncoder()};
    videoTrack.setCodecChain(codec);
    } catch (UnsupportedPlugInException e) {
    Logger.log(ambito,refTrazas+"The processor does not support effects.");
    } // end try-catch CodecChain creation
    p.realize();
    if (!waitForState(p.Realized))
    Logger.log(ambito,refTrazas+"Failed to realize the processor.");
    return 1;
    Logger.log(ambito,refTrazas+"realized processor OK.");
    /* After realize processor: THESE LINES OF SOURCE CODE DOES NOT RELEASE ITS FILE DESCRIPTOR !!!!!
    p.stop();
    p.deallocate();
    p.close();
    return 0;
    // It continues up to the end of the transmission, properly drawing each video frame and transmit them
    Logger.log(ambito,refTrazas+" Create Transmit.");
    try {
    int result = createTransmitter();
    } catch (Exception e) {
    Logger.log(ambito,refTrazas+"Error Create Transmitter.");
    return 1;
    } // end try-catch transmitter
    Logger.log(ambito,refTrazas+"Start Procesor.");
    // Start the processor.
    p.start();
    return 0;
    } // end of main code
    * stop when event "EndOfMediaEvent"
    public int stop () {
    try {   
    /* THIS PIECE OF CODE AND VARIATIONS HAVE BEEN TESTED
    AND THE FILE DESCRIPTOR IS NEVER RELEASED */
    p.stop();
    p.deallocate();
    p.close();
    p= null;
    for (int i = 0; i < rtpMgrs.length; i++)
    if (rtpMgrs==null) continue;
    Logger.log(ambito, refTrazas + "removeTargets;");
    rtpMgrs[i].removeTargets( "Session ended.");
    rtpMgrs[i].dispose();
    rtpMgrs[i]=null;
    } catch (Exception e) {
    Logger.log(ambito,refTrazas+"Error Stoping:"+e);
    return 1;
    return 0;
    } // end of stop()
    * Controller Listener.
    public void controllerUpdate(ControllerEvent evt) {
    Logger.log(ambito,refTrazas+"\nControllerEvent."+evt.toString());
    if (evt instanceof ConfigureCompleteEvent ||
    evt instanceof RealizeCompleteEvent ||
    evt instanceof PrefetchCompleteEvent) {
    synchronized (waitSync) {
    stateTransitionOK = true;
    waitSync.notifyAll();
    } else if (evt instanceof ResourceUnavailableEvent) {
    synchronized (waitSync) {
    stateTransitionOK = false;
    waitSync.notifyAll();
    } else if (evt instanceof EndOfMediaEvent) {
    Logger.log(ambito,refTrazas+"\nEvento EndOfMediaEvent.");
    this.stop();
    else if (evt instanceof ControllerClosedEvent)
    Logger.log(ambito,refTrazas+"\nEvent ControllerClosedEvent");
    close = true;
    waitSync.notifyAll();
    else if (evt instanceof StopByRequestEvent)
    Logger.log(ambito,refTrazas+"\nEvent StopByRequestEvent");
    stop =true;
    waitSync.notifyAll();
    Many thanks.

    Its a bug on H263, if you test it without h263 track or with other video codec, the release will be ok.
    You can try to use a not-Sun h263 codec like the one from fobs or jffmpeg projects.

  • User exit/BADI  for Purchase requisition through release of Process order

    Hi ,
    i need to add some text to the Pur Req.
    The Pur Req will be created THROUGH the release of PROCESS order. Please let me know any exits are available for the same.
    regards

    Hi
    Check the following Exits and BADI for Pur Requisition
    Enhancement
    MEVME001                                WE default quantity calc. and over/ underdelivery tolerance
    MM06E001                                User exits for EDI inbound and outbound purchasing documents
    MM06E003                                Number range and document number
    MM06E004                                Control import data screens in purchase order
    MM06E005                                Customer fields in purchasing document
    MM06E007                                Change document for requisitions upon conversion into PO
    MM06E008                                Monitoring of contr. target value in case of release orders
    MM06E009                                Relevant texts for "Texts exist" indicator
    MM06E010                                Field selection for vendor address
    MM06E011                                Activate PReq Block
    MMAL0001                                ALE source list distribution: Outbound processing
    MMAL0002                                ALE source list distribution: Inbound processing
    MMAL0003                                ALE purcasing info record distribution: Outbound processing
    MMAL0004                                ALE purchasing info record distribution: Inbound processing
    MMDA0001                                Default delivery addresses
    MMFAB001                                User exit for generation of release order
    MRFLB001                                Control Items for Contract Release Order
    AMPL0001                                User subscreen for additional data on AMPL
    LMEDR001                                Enhancements to print program
    LMELA002                                Adopt batch no. from shipping notification when posting a GR
    LMELA010                                Inbound shipping notification: Transfer item data from IDOC
    LMEQR001                                User exit for source determination
    LMEXF001                                Conditions in Purchasing Documents Without Invoice Receipt
    LWSUS001                                Customer-Specific Source Determination in Retail
    M06B0001                                Role determination for purchase requisition release
    M06B0002                                Changes to comm. structure for purchase requisition release
    M06B0003                                Number range and document number
    MEQUERY1                                Enhancement to Document Overview ME21N/ME51N
    MELAB001                                Gen. forecast delivery schedules: Transfer schedule implem.
    MEFLD004                                Determine earliest delivery date f. check w. GR (only PO)
    MEETA001                                Define schedule line type (backlog, immed. req., preview)
    ME590001                                Grouping of requsitions for PO split in ME59
    M06E0005                                Role determination for release of purchasing documents
    M06E0004                                Changes to communication structure for release purch. doc.
    M06B0005                                Changes to comm. structure for overall release of requisn.
    M06B0004                                Number range and document number
    Business Add-in
    ME_PROCESS_REQ_CUST                     Enhancements for Processing Enjoy PReqs: Customer
    ME_PROCESS_REQ                          Enhancements for Processing Enjoy PReqs: Internal
    ME_PROCESS_PO_CUST                      Enhancements for Processing Enjoy Purchase Order: Customer
    ME_PROCESS_PO                           Enhancements for Processing Enjoy Purchase Order: Intern.
    ME_PROCESS_COMP                         Processing of Component Default Data at Time of GR: Custome
    ME_PO_SC_SRV                            BAdI: Service Tab Page for Subcontracting
    ME_PO_PRICING_CUST                      Enhancements to Price Determination: Customer
    ME_PO_PRICING                           Enhancements to Price Determination: Internal
    ME_INFOREC_SEND                         Capture/Send Purchase Info Record Changes - Internal Use
    ME_HOLD_PO                              Hold Enjoy Purchase Orders: Activation/Deactivation
    ME_GUI_PO_CUST                          Customer's Own Screens in Enjoy Purchase Order
    ME_FIELDSTATUS_STOCK                    FM Account Assignment Behavior for Stock PR/PO
    ME_DP_CLEARING                          Clearing (Offsetting) of Down Payments and Payment Requests
    ME_PURCHDOC_POSTED                      Purchasing Document Posted
    SMOD_MRFLB001                           Control Items for Contract Release Order
    EXTENSION_US_TAXES                      Extended Tax Calculation with Additional Data
    ARC_MM_EKKO_WRITE                       BAdI: Enhancement of Scope of Archiving (MM_EKKO)
    ARC_MM_EKKO_CHECK                       BAdI: Enhancement of Archivability Check (MM_EKKO)
    MM_EDI_DESADV_IN                        Supplementation of Delivery Interface from Purchase Order
    MM_DELIVERY_ADDR_SAP                    Determination of Delivery Address
    ME_WRF_STD_DNG                          PO Controlling Reminder: Extension to Standard Reminder
    ME_TRIGGER_ATP                          Triggers New ATP for Changes in EKKO, EKPO, EKPV
    ME_TRF_RULE_CUST_OFF                    BADI for Deactivation of Field T161V-REVFE
    ME_TAX_FROM_ADDRESS                     Tax jurisdiction code taken from address
    ME_REQ_POSTED                           Purchase Requisition Posted
    ME_REQ_OI_EXT                           Commitment Update in the Case of External Requisitions
    ME_RELEASE_CREATE                       BAdI: Release Creation for Sched.Agrmts with Release Docu.
    ME_DEFINE_CALCTYPE                      Control of Pricing Type: Additional Fields
    ME_CHANGE_OUTTAB                        Enrich ALV Output Table in Purchasing
    ME_CHANGE_CHARACTER                     Customer-Specific Characteristics for Product Allocation
    ME_CCP_DEL_DURATION                     Calc. of Delivery Duration in CCP Process (Not in Standard)
    ME_CCP_BESWK_AUTH_CH                    BAdI for authorization checks for procuring plant
    ME_CCP_ACTIVE_CHECK                     BAdI to check whether CCP process is active
    ME_BSART_DET                            Change document type for automatically generated POs
    ME_BAPI_PR_CREATE_02
    ME_BAPI_PR_CREATE_01
    ME_BAPI_PO_CREATE_02
    ME_BAPI_PO_CREATE_01
    ME_BADI_DISPLAY_DOC                     BAdI for Internal Control of Transaction to be Invoked
    ME_ACTV_CANCEL_PO                       BAdI for Activating the Cancel Function at Header Level
    MEGUI_LAYOUT                            BAdI for Enjoy Purchasing GUI
    ME_CHECK_ALL_ITEMS                      Run Through Items Again in the Event of Changes in EKKO
    ME_COMMTMNT_REQ_RE_C                    Check of Commitment Relevance of Purchase Requisitions
    ME_COMMTMNT_REQ_RELE                    Check of Commitment Relevance of Purchase Requisitions
    ME_COMMTMNT_PO_REL_C                    Check for Commitment-Relevance of Purchase Orders
    ME_COMMTMNT_PO_RELEV                    Check for Commitment-Relevance of Purchase Orders
    ME_COMMITMENT_STO_CH                    BadI for checking if commitments for STOs are active
    ME_COMMITMENT_RETURN                    Commitment for return item
    ME_CIP_REF_CHAR                         Enables Reference Characteristics in Purchasing
    ME_CIP_ALLOW_CHANGE                     Configuration in Purchasing: Changeability Control
    ME_CIN_MM06EFKO                         Copy PO data for use by Country version India
    ME_CIN_LEINRF2V                         BADI for LEINRF03 excise_invoice_details
    ME_CIN_LEINRF2R                         BADI for CIN India - Delivery charges
    ME_CHECK_SOURCES                        Additional Checks in Source Determination/Checking
    ME_CHECK_OA                             Check BAdI for Contracts
    Reward points if useful
    Regards
    Anji

  • Error on ATP check when Creating a Sales Order

    Hello,
    I encounter error  on ATP check while creating a Sales Order.
    The error is when I create Sales Order using material A, with or with out indicating the Plant and Storage Location, the Purchase Order quantity is returned on ATP check, but when I create an SO with out indicating the Plant and Storage Location, no PO quantity was returned. Note that we applied SAP Note # 387482 to automatically determine the Storage Location. I have also checked material maintenance in MM03 of Materials A and Material B and nothing was different, they have the same Availabity check condition.
    Is it possible that the SAP note that I applied causes the error?
    By the way I have noticed that when I create Material B and manually populate the Plant and Storage Location there is a pricing error(but it returns the PO during ATP check).
    Thanks.
    Noreen

    Hello,
    I encounter error  on ATP check while creating a Sales Order.
    The error is when I create Sales Order using material A, with or with out indicating the Plant and Storage Location, the Purchase Order quantity is returned on ATP check, but when I create an SO with out indicating the Plant and Storage Location, no PO quantity was returned. Note that we applied SAP Note # 387482 to automatically determine the Storage Location. I have also checked material maintenance in MM03 of Materials A and Material B and nothing was different, they have the same Availabity check condition.
    Is it possible that the SAP note that I applied causes the error?
    By the way I have noticed that when I create Material B and manually populate the Plant and Storage Location there is a pricing error(but it returns the PO during ATP check).
    Thanks.
    Noreen

  • Error while releasing the Process order

    while releasing the Process order i am getting the follwing error message
    Message no. CO118      Release of order not possible
    Cna you Please any body explain me detail of thi error ie where the error lies.
    Thanks

    Hi,
    In Process Order Header Screen Go to ---> Log ---> On Release.Here you will find the detail error behind this problem.Go though it .Resolve it and then try to release the Process Order, and if required get back to us.
    Suppose reason may be,
    - Missing part
    - Missing Capacity
    - Batch Determination is required to perform.
    - Any User Exit (Other then std. SAP)
    Regards,
    Dhaval

  • COR2 release flag(Process Order Release)

    HI all,
    can we release a work order from  cor2
    if yes where can we find that release flag
    Thanks in Advance,
    Suresh

    Hi Suresh,
    Please find the process for releasing process order .
    1.     Choose from menu Process order à Functions à Approval à Individual approval.
    2.     Choose Materials and on the Create Process Order: Material List screen release the order by choosing Release (Ctrl + F6). Batch determination and creation of control recipe are carried out automatically.
    3.     Save your entries.
    For releasing a process order which already exists please use following steps:
    4.     Access the transaction using:
    Menu     Logistic à Production–Process à Process Order à Process Order à Change
    Transaction code     COR2
    5.     On the initial screen, enter the necessary data.
    Process order          Your PO number     
    6.     Choose Enter.
    7.     Choose Release (Ctrl + F6).
    8.     Save your entry.
    Result
    When the process order is opened, material reservations for the required material components are created automatically or the specifications are transferred from the planned order. Purchase requisitions are created for material components or services that have to be procured externally. Capacity loads occur at the resources where the order is executed. The planned costs are also determined.
    The following constraints apply to an opened process order:
    ·     You cannot carry out a confirmation for the order.
    ·     Shop floor papers cannot be printed.
    ·     You cannot generate a control recipe.
    ·     You cannot carry out goods movements for the order; in other words, the components cannot be withdrawn.
    These constraints no longer apply when the order has been released.
    During releasing the availability of the materials will be checked again. Automatic batch determination is carried out for the materials PH-1710, PH-1720 (or PH-1810, PH-1820, PH-1830 and PH-2700 respectively). In addition to this, the control recipe is created, preliminary costing is carried out, and the process instructions are generated.
    Hope This Info Helps YOU.
    Regards,
    Lakshmi

  • Automated TR creation while release the Process Order

    I have to split the quantity into smaller units based on the ‘LE quantity’ before TR creation. In transaction LB03, there should be additional line items after the quantity split.
    I am using the EXIT ‘EXIT_SAPLLCPP_001’. It is triggering during the transaction run. But it doesn’t serve the purpose.
    Can anyone help me to achieve this functionality?

    Hi,
    In Process Order Header Screen Go to ---> Log ---> On Release.Here you will find the detail error behind this problem.Go though it .Resolve it and then try to release the Process Order, and if required get back to us.
    Suppose reason may be,
    - Missing part
    - Missing Capacity
    - Batch Determination is required to perform.
    - Any User Exit (Other then std. SAP)
    Regards,
    Dhaval

  • User exit/BADI to for Purchase requisition through release of Process order

    Hi ,
    i need to add some text to the Pur Req. The Pur Req will be created through the release of PROCESS order. Please let me know any exits are available for the same.
    regards

    Hi,
    check the below enhancements in transaction SMOD.
    CCOWB001            Customer exit for modifying menu entries                    
    COIB0001            Customer Exit for As-Built Assignment Tool                  
    COZF0001            Change purchase req. for externally processed operation     
    COZF0002            Change purchase req. for externally procured component      
    PPCO0001            Application development: PP orders                          
    PPCO0002            Check exit for setting delete mark / deletion indicator     
    PPCO0003            Check exit for order changes from sales order               
    PPCO0004            Sort and processing exit: Mass processing orders            
    PPCO0005            Storage location/backflushing when order is created         
    PPCO0006            Enhancement to specify defaults for fields in order header  
    PPCO0007            Exit when saving production order                           
    PPCO0008            Enhancement in the adding and changing of components        
    PPCO0009            Enhancement in goods movements for prod. process order      
    PPCO0010            Enhancement in make-to-order production - Unit of measure   
    PPCO0012            Production Order: Display/Change Order Header Data          
    PPCO0013            Change priorities of selection crit. for batch determination
    PPCO0015            Additional check for document links from BOMs               
    PPCO0016            Additional check for document links from master data        
    PPCO0017            Additional check for online processing of document links    
    PPCO0018            Check for changes to production order header                
    PPCO0019            Checks for changes to order operations  
    Thanks
    Sandeep
    Reward if helpful

  • Interface triggering while releasing the process order

    Hi, please guide me that when i release the process order, standard idoc LOIRPRO02 triggers. How to set to trgigger this idoc and how to verify the same. i want to give one try in IDES, please advise.
    Edited by: raju garu on Nov 28, 2010 3:21 PM

    Closed as no response received.

  • Aligning alerts with atp check

    Dear SDN
    Is there a possibility to configure the "scope of check" for alerts? For example: I would like to check the situation for a planned or process order and if the components are available, using the alert monitor from the ppds planning board. I will not have the system should consider purchase requisitions as a reciept as they are very unreliable, and the same with planned orders for components. I want an alert if there are (no stock) and no purchase orders / production orders. In principle, we want the alerts to be generated according to the ATP check that we have setup. Is that possible?.
    Thanks in advance / Ann

    You can use standard ATP alert monitor.
    It is set up in /sapapo/amon1.
    If you want to know more about ATP monitor see note 500051.
    Best Regards

  • Problem with delete index of cube in process chain

    HI ,i have a problem with my process chain,here on process name as delet index is ther which has been turned to red.when iam going inside of that in Display message iam getting the msg as"Indexes for InfoCube SMS_C06 have been deleted successfully".
    since the process is in red next process is not been triggering,but i have to continue the process chain.
    can anybody put some light into it.its very urgent........

    Hi,
    I ran into the same situation with one of my process chain that is part of a metachain. The process chain has the Delete Index that turned red. But the messages show that the indexes on all the cubes were deleted sucessfully.
    As suggested, I did a repeat on the delete index variant, but no luck as it turned red again.
    Anyone aware familiar with this issue?
    Thanks,
    Briston

  • Problem with Spell check in text area

    i have a item called text area with spell check. In that i have very large text. When i run spell check it open another windows and gives this message 'Checking spelling, please wait...' since last 4 hrs i have same windows.
    Please help me out.
    THanks,
    Hetal Patel.

    fruhulda wrote:
    To the spell checker the word is wrong. It could be the word is right to the OP in this document but not in the next. Why should Pages learn the word?
    It's not Pages which learn the document, it's the spell checker.
    I wish I could help the OP. Pages on his machine isn't working as it should. Ignore option should take of the red line.
    So, my machine is odd too.
    When I click ignore, the spell checker no longer halt on the word but it continue to underline it.
    As the OP didn't gave a sample we don't know what is the exact problem.
    If he want to leave a misspelling in the doc, 'learn' is not a good soluce.
    If he want to add a word to the list of allowed words, 'learn' is the soluce.
    Yvan KOENIG (VALLAURIS, France) samedi 12 septembre 2009 10:44:33

  • Alt bom components with ATP check - production order resets usage prob.

    Hello,
    I have searched many threads for this answer.  Here is my scenario
    BOM for finished good X  has the following components
    Component   |    Usage Prob   |    Strategy    |  Alt Item Group   |   Priority
    A          |             55%         |         2         |         1             |              1
    B          |              45%        |         2         |          1            |               2
    When I create the production order for 100 units, components A and B are proposed respectively (per usage probability, as expected)   - like so
    Production Order 
    Component A = 55 units
    Component B = 45 units
    Here is the requirement - Component B at any given time is restricted by federal law to not be used for material X for more than 45% of its make up. Therefore my client cannot build X with more than 45% of component B.  However, we always want to use at most 45%.  IF component B is not available, transfer all or partial confirmation to Component A.
    Issue:
    ATP and usage probabilities will not work.  Whenever I run ATP check for production order, the component with the highest priority get all the reqirements (if inventory permits).  The production order master data is 'reset' by the ATP check (the usage probability on the component will change from 45% to 100%)
    Any help is greatly appreciated!
    ~S
    Edited by: futsol on Jun 29, 2009 10:41 PM

    futsol ,
    Maintainance is not required, it say manual maintainance is possible if required.
    if you set it 1 system will check the proportion and do the reservation accordingly , if even in production order if you check availabity it will not change the quantity proportion, if its 2 , its meant for alloting the 100 % available component.if A is not 100% available it will replace it with B , if B is availabe to cover total quantity and vice versa.
    by giving 1 it gives you option to change proportion as per your wish , if the any of the alternative is not available to fullfill rerquirement., for example in your case component B , if its available you want to use it 45% all the time , but if its not availabe the you can change the proportion or quantity for A in that specific production order only.
    I dont know if there is any other way.
    Check again with strategy 1 .
    Hope it helps you .
    Regards
    Ritesh

Maybe you are looking for