How to maintain Quota arrangement with respect to production verson

Hi,
I maintained Quota arrangement(without splitting) with respect to the two different production versions of a material and when i checked by running MRP. quota arrangement is not working. the system allocates the demand only to the active production version(which has the current validity period).
I guess i am missing something, can some one tell me how to maintain the quota arrangement with respect to production versions.
we have a requirement where a material is manufactured in house and will have 2 different production versions with 2 different validity periods in material master and they need the quota arrangement to work on this material in M.R.P for 2 different production versions.
I have maintained the quota arrangement usage= 3 in  material master.
Thanks
Mahendra

Hi,
for the req qty to be distributed between two differnt production vesion, you might have to activate splitting in MEq1.
Give the min qty as 1, so that you req qty could be distributed between two differnt production version.
Pls conifm if it is through or if there is any other solution .
regards
Harish

Similar Messages

  • Error with LSMW IDOC method while maintaining Quota arrangement

    Hi
    I am trying to create LSMW using IDOC method for maintaining quota Arrangment.
    I used the standard Message type LPIEQU. Idoc is getting generated and when i tried to process this IDOC i am getting error "Function module not allowed: BAPI_IDOC_INPUT1".
    I used the process code as "BAPI" in message type LPIEQU configuration in WE20.
    If anyone faced this issue please let me know the reason for the error.
    sakthi.K

    see OSS Note 198252 - Special features of POI message category LOI*
    The message categories named are part of the POI (Production Optimization interface) interface.This interface and the message categories contained in it were developed for the transfer to non-R/3 systems.Therefore, an inbound processing in the R/3 system is not planned.

  • Steps for maintaining Quota Arrangement

    All SAP Gurus,
    What are the steps involved in maintaining Quota Arrangement.
    We have 3 different vendors supplying same material.
    WE want to assign a quota of 20%, 30%, and 50% to different vendors for the monthly supply of the material.
    Regards,

    Hi,
         Follow the below steps for Quota Arrangement:
            1. Specify quota usage key in material master purchasing/ MRP 2 view
            2. Select source list checkbox in mat. master purchasing view
            3. Maintain Info record & source list for the 3 vendors
            4. For splitting quota which is possible only in case of MRP, select lot sizing procedure with split quota marked in customizing
            5. Maintain quota MEQ1 for the 3 vendors with material & plant on initial screen, then enter validity period
            6. Select line & enter procure type, vendor & quota as 5,3 & 2
    Finally save quota
    Hope this will help
    Regards
    Amit

  • SNP quota arrangement with fixed lot size

    Hi all,
    i have a question regarding quota arrangement for external procurement in snp heuristic. Whe have 2 sources of suppy created by info record. The quota is 25% for the first and 75% for the second one. In product master there is maintained a fixed lot sice of 500.000. Im wondering that the snp heuristic creates 2 requisitions of 500.000 for each sos at the same day. So we get an serios excess. Any ideas?
    Kind regards,
    Christian

    Hi,
    thanks for reply. Ok, normally net requirement calculation works properly. In case of a shortage the heuristic shall apply an receipt with the fixed lot size wich is maintained in material master. However, in out particular case it generates the double receipt quantity which is not needed at the receipt date.
    The heuristic should do the following:
    Day 01 Stock 100   
    Day 02 DepDmd 20 
    Day 03 DepDmd 20 
    Day 04 DepDmd 20
    Day 05 DepDmd 20
    Day 06 DepDmd 20
    Day 07 PurReq 100 !! Source 1!!
    Day 08 DepDmd 20
    Day xx PurReq 100 !! Source 2!!
    and not:
    Day 01 Stock 100   
    Day 02 DepDmd 20 
    Day 03 DepDmd 20 
    Day 04 DepDmd 20
    Day 05 DepDmd 20
    Day 06 DepDmd 20
    Day 07 PurReq 100 !! Source 1!!
    Day 07 PurReq 100 !! Source 2!!
    Day 08 DepDmd 20
    In this example 100 would be the fixed lot size from material master.
    Best regards,
    Christian

  • How to maintain dynamic rows with data when click on Previous button?

    Hi,
    I have 1 aspx page and divided into 3 pages using panels.Each panel has "Next" and Previous buttons
    I have created and deleted dynamic table rows when click on Add button using javascript. whenever i click on Next button it will navigate to same page of next panel.
    when i click on previous button then it goes to previous panel but whatever i have added dynamic table rows in 1st panel that got removed.
    Can u please help me for how to maintain state of dynamic table rows with entered data when click on Previous button?
    How to get dynamic table rows with entered data in previous panel when click on Previous button?
    Please find the below javascript code:
    function insertRow() {
    if (index >= 2) {
    document.getElementById('deleteRow').style.display = "inline";
    else { document.getElementById('DeleteRow').style.display = "none"; }
    var table = document.getElementById("myTable");
    var row = table.insertRow(table.rows.length);
    cell1 = row.insertCell(0);
    t1 = document.createElement("select");
    t1.options[t1.options.length] = new Option('--Select--', '0');
    t1.id = "ddlYear" + index;
    cell1.appendChild(t1);
    for (var i = 1975; i <= 2015; i++) {
    opt = document.createElement("option");
    opt.value = i;
    opt.text = i;
    t1.add(opt);
    t1.style.width = "155px";
    var cell2 = row.insertCell(1);
    t2 = document.createElement("Select");
    t2.options[t2.options.length]=new Option('--Select--','0');
    t2.options[t2.options.length]=new Option('State Board','1');
    t2.options[t2.options.length]=new Option('CBSE','2');
    t2.options[t2.options.length]=new Option('ICSE','3');
    t2.options[t2.options.length] = new Option('Others', '4');
    t2.style.width = "155px";
    t2.id = "ddlCourse" + index;
    cell2.appendChild(t2);
    var cell3 = row.insertCell(2);
    t3 = document.createElement("input");
    t3.id = "txtCity" + index;
    cell3.appendChild(t3);
    var cell4 = row.insertCell(3);
    t4 = document.createElement("input");
    t4.id = "txtInstitute" + index;
    cell4.appendChild(t4);
    var cell5 = row.insertCell(4);
    t5 = document.createElement("Select");
    t5.options[t5.options.length] = new Option('--Select--', '0');
    t5.options[t5.options.length] = new Option('English', '1');
    t5.options[t5.options.length] = new Option('Hindi', '2');
    t5.options[t5.options.length] = new Option('Telugu', '3');
    t5.options[t5.options.length] = new Option('Others', '4');
    t5.style.width = "155px";
    t5.id = "ddlMedium" + index;
    cell5.appendChild(t5);
    var cell6 = row.insertCell(5);
    t6 = document.createElement("input");
    t6.id = "txtSpecialization" + index;
    cell6.appendChild(t6);
    var cell7 = row.insertCell(6);
    t7 = document.createElement("input");
    t7.id = "txtFnl" + index;
    cell7.appendChild(t7);
    index++;
    function DeleteRow(index) {
    var table = document.getElementById("myTable");
    table.deleteRow(index);
    // if (index = 2) { alert("There is no rows added.Please add the new row"); }
    Design:
    <tr style="font-size: 12pt" id="trSecond" runat="server">
    <td colspan="3">
    <table id="myTable" width="100%" border="0">
    </table>
    <tr>
    <td colspan="3" align="right">
    <input type="button" title="Add" value="Add" onclick="insertRow();" />
    <input type="button" id="deleteRow" title="Delete" value="Delete Row" onclick="DeleteRow(this);" style="display:none" />
    </td>
    </tr>
    Thank you.

    Put the button click into an action listener and build the new frame there. The code I have below isn't exactly what you're doing (it's amazingly oversimplified), but it's probably similar enough to get your wheels turning in the right direction.
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class sample
         public static void main(String[] args)
              JFrame frame = new JFrame("Sample");
              frame.setSize(400,400);
              Container content = frame.getContentPane();
              content.setLayout(new FlowLayout());
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              final JTextField text = new JTextField(10);
              content.add(text);
              JButton button = new JButton("Send");
              content.add(button);
              frame.setVisible(true);
              button.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        JFrame myframe = new JFrame("Results");
                        myframe.setSize(200,200);
                        Container mycontent = myframe.getContentPane();
                        mycontent.setLayout(new FlowLayout());
                        String mytext = text.getText();
                        JLabel label = new JLabel();
                        label.setText(String.valueOf(mytext));
                        mycontent.add(label);
                        myframe.setVisible(true);
    }

  • Quota arrangement with schedule agreements

    Dear guru's,
    I maintained source list with 3 Schedule agreements with 3 different vendors, MRP indicator as 2, in Material master Quota as 4, and maintained Quota.
    now after planning run i am getting two PR's for two vendors and for third vendor schedule lines are generated against that schedule agreement.
    can u any one help me in this
    vinay

    Hi,
    In the source list have you put a 2 as MRP indicator for all the scheduling agreements in the source list.
    Also please make sure that the fixing indicator is not set in the source list.
    Can you also check the if the validity period for all scheduling agreements and source list entries are correct.

  • How to maintain Service Arrangements for employees in CRM 5.0

    Hello,
    in the CRM documentation on help.sap.com (http://help.sap.com/saphelp_crm50/helpdata/en/da/7d808043d244cf806dcf0d6e69381e/frameset.htm) it is mentioned that one can maintain service arrangements for employees. These service arrangements contain - for example - service areas and qualifications of the employee (ressource).
    I know where to maintain the customizing values, however, I didn't find out where to maintain the service arrangements for the employees.
    Any idea?
    Thanks & regards
    Wolfgang

    Hi ,
    for this you need to go to trnasaction PPOMA_CRM - Maintain Organizational Model
    and in this you need to open your organization model and there you need to assign employees.
    for this you need to select the post and right click on that and there is assign filed is there. after selecting that there is two position holder and owner.
    so you select holder for the position. then you can assign the employee to that service area.
    thanks
    hemant

  • How to Disregard Quota arrangement in LTP run

    Is it possible to disregard any quota arrangement usage set on the Material Master MRP2, when running Long Term Planning MS01/02

    Hello....
    Note 206684 has the following information:
    o  When you use quota arrangement, the special procurement key of
       the quota arrangement item must correspond to the special
       procurement key for the source list entry (recognizable, for
       example, in table EORD). If, for example, the special procurement
       in the material master is changed, when the source list entry
       already exists, not corresponding special procurement keys can
       occur and a new source list entry must be created.
    Check if it helps you to solve.
    Bye
    Gabriel

  • How to maintain one vendor with differant plants at differant states.

    Dear All,
    i have one scenario with me in that my client purchasing his goods from one vendor that vendor is having two plants one at mumbai & one at gujarat. Now how i will maintain these two address with the same vendor. Along with that i need to mainatin the tax structure for both in one vendor. While creating purchase order how buyer will pick the tax structure.
    Regards,
    Nandkishor Nachane

    Hi,
      You can create one main vendor code and use partne function to add address of different plant location.
    regards,
    zafar

  • How to maintain master data with 3 different IS components

    Dear Gurus
    We have got 5 companies and we are implementing SAP with 3 IS components.
    1) We are implementing IS-EC&O (DIMP).
    2) Implementing IS-DBM (Dealership Business Management system)
    3) We have IS-Real Estate.
    The companies will have shared services such as HR, group Procurement and Finance, This functionality will reside on a main ECC 6.0 system.
    Can someone explain:
    1- How and where would master records reside?
    2- How are the various databases will communicate?
    3- Can all the 4 above systems share a single database?
    Thanks in advance
    Regards

    The companies will have shared services such as HR, group Procurement and Finance, This functionality will reside on a main ECC 6.0 system.
    Can someone explain:
    1- How and where would master records reside?
    On the master ERP 6.0? on an MDM server? there are various possibilities.
    2- How are the various databases will communicate?
    The databases won´t communicated but the systems on top.
    3- Can all the 4 above systems share a single database?
    They can share the same database software using MCOD (http://service.sap.com/mcod) - with all pros and cons but you will need to have the same master data in all instances though.
    Markus

  • How to maintain one vendor with two addresses

    Hi All,
    I have to set up vendor master data for a given vendor in this way that when a PO is created, the user could select from several addresses.
    I have assigned two vendors with different addresses as a partners (Ordering address - partner funcion) of the main vendors(this two are from different account group with assigned partner scheme  and partner functions "Ordering address" and "Invoicing party").
    After that  for the main vendor I have created two vendor subranges which includes in their partner function screen the new vendors as ordering address partner function. I have also created an info record for the main vendor in which one of the subranges is include.
    During the creation of the PO, when I entered the vendor number I can make selection between the 3 vendors, I am selecting one of them (not the main vendor) in the partner tab I can see it as ordering address but when I go to Address Tab the address of the main vendor hasn't change, although item level I can see in the material tab that it has took the correct sub range.
    It is not very common to maintain several addresses for one vendor,and having in mind the fact that the address can be changed manually,  but has somebody of view met this problem before?
    Thanks
    Desi

    Hi,
    I understand you that you have multiple ordering address.If a vendor is having multiple orderig addreses system pops up the list ordering addresses at the time of creating a purchase order. In this list you can select one of the ordering address.
    In the address tab you cannot see the ordering address. You can only see the main vendor address.
    In the purchase order print layout you need to make the changes so that it select ordering address partner address which was availabe in the purchase order.
    I hope this will resolve your problem. If this helps award me the points

  • !!!! How to maintain the value with 2 decimal places !!!

    hi
    i have a double var and i need to maintain it with 2 decimal places only..
    thanks..

    What do you mean with you need to "maintain it" with 2 decimal places?
    Do you want to display the number with 2 decimal places? If so, have a look at the API documentation of java.text.DecimalFormat.
    double d = 3.14159265358979;
    NumberFormat f = new DecimalFormat("0.00");
    System.out.println(f.format(d));

  • How to create an annotation with respect to zoom?

    Hi,
    Does anyone know how to create an annotation withrespect to the zoom of the pageview?
    I already tried this:
    ASFixed zoom = AVPageViewGetZoom(pageView);
    rect->top += ANNOT_HEIGHT;
    rect->top *= zoom;
    rect->bottom = rect->top - ANNOT_HEIGHT;
    rect->bottom *= zoom;
    rect->right += ANNOT_WIDTH;
    rect->right *= zoom;
    rect->left = rect->right - ANNOT_WIDTH;
    rect->left *= zoom;
    This does not work correctly and the annotation is not drawn at all.

    It seems to me that the sequence
    AVPageViewDragOutNewRect
    AVPageViewDeviceRectToPage
    PDPageAddNewAnnot
    should create an annotation of the size and shape of the rectangle drawn out. I am suspicious of the four lines starting
    rect->top += ANNOT_HEIGHT;
    What are they supposed to do?

  • How to select the column with respect to language in sql server

    USE Master
    SELECT * FROM SysMessages
    GO
    when i execute the above query, in description column am getting English and Chinese , here if i want to select only English .
    how can i select only English language by using WHERE condition.
    And why am getting data in Description column in Chinese also any reason behind it.
    If there is any reason please suggest me.

    Bro , here am not getting what is Unicode and all
    Specially ,
    Why does we need N' string ' while inserting and Why we need to place N and String in Unicode while inserting data and what does it mean.
    Insert into T1 Values
    (N'找不到由給定的 @article 或 @artid ''%1!'' 所參考的物件。'),
    (N'Unclosed quotation mark after the character string .')

  • How to maintain audio continuity with segments of bad video

    Anyone have any editing tricks for keeping good audio footage when there are interspersed segments of poor quality video? For example, I have 10 min of contiguous audio that I don't want to disrupt. Halfway through, however, I moved to camera to a different perspective and the time during the movement is nauseating footage of the floor. Obviously the pros using multiple cameras could simply splice in footage from another camera for the time period during which the main camera had bad video footage. I'm only using one camera, however. Any tricks for keeping the audio intact, but 'hiding' segments of bad video? fade in and out of a photograph/still image? maybe I need a good reference for video editing. thanks in advance for any/all thoughts.

    Always shoot a bit of 'spare' footage at the beginning, and whenever there's an opportunity (..I know this is being wise after the event, but it may be of help for next time..) ..e.g; if it's a wedding, shoot guests arriving, or people sitting attentively, or bits of the building (..stained glass windows, etc..) ..or if it's a theatre or a play, ditto ..so you've got relevant, related bits which you can drop in during camera moves.
    As Karsten and Beverly say, by using "Paste Over at Playhead" to insert extra material on top of the audio, you automatically keep the sync between picture and sound, because iMovie removes exactly the same length of original video as the length which you're "pasting in" to replace the bad footage ..thus keeping sync.
    If you don't have "..a photograph/still image.." to drop in, you could always create a still from some of your video footage (put the Playhead where you want it, then use ShiftApple'S' to Create Still Frame), maybe soften it or crop it a bit so that it doesn't look exactly like a frame from the video, then do another couple of similar stills, dissolve between them, and then use that set of stills/dissolves to replace your bad footage.*
    'Paste Over at Playhead' is the way to keep it in perfect sync without having to desperately calculate timings, etc..
    *P.S: It's best to Export that sequence of stills-with-dissolves to QuickTime as 'Full Quality' so that it becomes one whole Clip, then re-import it, and that way you can position it exactly where you want it, without any of its separate components (stills, dissolves) coming apart, or being interpreted as individual elements.

Maybe you are looking for

  • I cannot log in to a MAC 10.5.8 and File Vault was NOT turned on.

    Dear Mac Experts: I know that there are many pages of information about using, remembering and managing passwords. I have read most of them.I know the passwords and File Vault was not on.  I am working at someone's home on their computer and running

  • A community toolbar has suddenly appeared on my safari how do I get rid of it?

    Can anyone help me?

  • Php mysql connect with yahoo

    I HAVE HOST ON YAHOO AND THIS SCRIPT DOSN'T WORK WITH YAHOO can u help me .... <?php # FileName="Connection_php_mysql.htm" # Type="MYSQL" # HTTP="true" $hostname_midcommerce = "localhost"; $database_midcommerce = "DATABASE"; $username_midcommerce = "

  • SQL Developer 3.0.04 - SDO_GEOM Issues

    1. Performing a "SELECT *" on an Oracle table with a SDO_GEOMETRY column locks up the tool and I have to use Task Manager to can it. 2. Clicking the Data tab on a table with an SDO_GEOM col either locks up the tool, or it takes forever to return. 3.

  • Pivot Tables in Oracle BI Answers Dashboard

    Hi All , I have just moved from MSBI Reports developer role to Oracle BI Answer Dashboard Reports . I have a requirment where i need to update the report like this : A1     B1     C1     D1 D2D     D2     AC     1 D2D     D3     AC     3 D2D     D4