PO of particular location not to be consider in MRP

Hi,
  As we have the option to exclude or include the stock of particular storage location from MRP  with OMIR  or MMSC,  in out system  if we have stock at location XYZ  it is exclude from MRP,  then in MD04 in STOCk we canot see the stock of that amterial,    but if we have any PO  which we have created for that material  and in PO if we give location XYZ  that is not excluded from MRP  in MRP RUN it is considering stock of that material,
   So is it possible to exclude stock of that location too from MRP.
regards,
  zafar

I am not sure but please check with your ABAP person whether some logic during the Stock / requirement list can be created with BAdI MD_CHANGE_MRP_DATA...
functionally please check through SPRO-@Materials Management-@Consumption-based Planning-@Planning-@Define storage Location MRP per plant...here you can maintain 1 against the Storage location for which you don't want to be included in MRP run & check
other than this also there are many enhancement which you can check through SPRO@Production@Material Requirements Planning@Business Add-Ins for Requirements Planning...go throgh the Performance Assistant documentation against this node
Regards,
Indranil

Similar Messages

  • STO Not to be considered in MRP Run in MTS

    Dear All,
    We are facing the following problem in MRP run in MTS scenario when
    there are STOs in Plant.
    We have 2 Plants one is production Plant (Say A) and other is Non
    production Plant (Say B) from where only Deliveries will be made.
    Now after final material will be produced in Plant A it will be routed
    through Stock transport order (STO) to plant B.
    So there will be always STOs in Plant A which will be created in Plant B.
    Now we are using Strategy 11 (Gross req. Planning) for Final FERT material.
    In MRP if we have PIR of 100 Qty. and STO of 50 Qty. system is creating
    the Planned order of 150 quantity which is a normal system behavior.
    Now our requirement is that it should not include STO in Planning (MRP Run).
    Pls. Suggest.
    Regards,
    Vinayak.

    Hi,
    Go to OPJJ,
    In that select your requirement type, and click details...
    there is a tab,IN/OUTward movement.. In that deselect the box for incl.rel.order.reqs..
    If you dont want the deliveries to be taken into consideration, then uncheck thebox for include deliveries..
    hope this solves..
    karthick

  • Production orders not to be considered during MRP run

    Dear SAPeers,
    i want to know how to ensure that open production orders are not considered during the MRP run.
    the following is the scenario.
    PIR for march after MRP run creates a planned order. this planned order is converted to production order. now this production order is processed but not completely confirmed and TECOed after a certain quantity has been produced.
    now we delete the old PIR and create a new PIR in the next month. now we revoke the TECO status of the production order and run MRP. I want to know how to avoid MRP from considering the open production order and create planned order for the complete PIR quantity.
    Thanks and Regards
    Srinivasan

    Srini,
    what i am worried is shortfall of raw materials in case they were to open the production order in the current month after the planning has been done. how do we allocate raw materials for both the plan as well as the open production order?
    Okay, you presumably had RM available for all of your production orders (and those RM were balanced by the reservations from the production orders).  Now, you TECO the production order.  In effect, any un-issued RM are now released and freely available for other orders/planned orders.  Now you plan the following month.  Those RM that were freed can and will be used for the new plan.  Odd business process, but OK.  Now, you re-open the production orders, and, yes, you will have a shortage unless you run RM MRP again.  This is, ah, inconsistent with any business process I have ever seen.
    The question that jumps to mind is, "Why re-open the old production orders at all?  Alternatively, why were they TECOd in the first place?"  If one knows that he intends to complete an order in production, one does not normally TECO the order, and then later reverse the TECO.
    With respect to my name, I must unfortunately keep a low profile.  Ever since I escaped from the mental institution, the thought-police have been hunting for me. I do not wish to be the recipient of any further electroshock 'treatments'.
    Rgds,
    DB49

  • Seek to a particular location for MONO sounds not working in AS3

    Hi Guys,
    I am facing an issue seeking to a particular location for
    MONO sounds with sample rate 22KHz. Another thing I observed was
    that there is a problem seeking to positions greater than half the
    total length of the actual sound, otherwise it is working fine. I
    have been trying to test this in a browser.
    Any ideas or thoughts will really help me.
    Cheers,
    TarXXXXX

    I am not streaming the sound from FMS, it is normal
    progressive download with audios placed local alongside my swf
    file. It works fine for 44 KHz sounds.

  • Uploading a file, renaming it and placing it in a particular location on server

    A user submits a file from a front end HTML form which has fields like Division, Department name, department number,
    section number, year, email, phone etc. The file being submitted might have a user given name. But, when it is 
    uploaded I want it to be named as Departmentname_departmentnumber_sectionnumber. So, if department is Accounting, 
    dept number is 123 and section is 1, name of file will be Accounting_123_1.doc The extension will be whatever type 
    of file(text, MS-Word's .doc or .docx, PDF or RTF) was submitted and the user can upload attachments of files with 
    extension .txt, .doc, .docx, pdf, rtf only.
    Also, I want it to be stored on a particular location on server. So, if Division is Corporate Finance and year is 
    2011-2012 it should be stored on server at "E:\Files Submitted\2011-2012\Corporate Finance\". The "E:\Files
    Submitted\" part remains same in the directory name.
    <cfset submittedfileName =
    #form.departmentname#&"_"&#form.departmentnumber#&"_"&#form.section_number_1#&"."&#cffile. ClientFileExt#>
    <cfset filedirectoryYear = "E:\Files Submitted\"&#form.current_year#&"\"&#form.division#&"\">
    <!--- ensure that the user uploads attachments of type with extension .txt, .doc, .docx, pdf, rtf only--->
    <cfif FORM.attachment_1 neq "">
           <cffile action="upload"
                   accept="text/plain,application/msword,application/pdf,application/rtf"          
                     filefield="attachment_1"
                     destination="E:\temp\uploads"
                     nameconflict="Makeunique"
            >
    <!--- rename the file and move it to permanent destination --->        
            <cffile
      action="rename"
      source="E:\temp\uploads\#cffile.serverFileName#"
      destination=#filedirectoryYear#&#submittedfileName#&#cffile.ClientFileExt#
      >
    <!---   now create a temporary variable for the attachment so that it can be emailed later on --->
    <cfset attachment_local_file_1 = #filedirectoryYear#&#submittedfileName#&#cffile.ClientFileExt#>
    </cfif>
    I used the cffile.ClientFileExt because the files were getting uploaded without the extension but am receiving an
    error at   destination=#filedirectoryYear#&#submittedfileName#&#cffile.ClientFileExt# as "multiple items at this
    position: Missing Token > or /> .
    I am using Coldfusion 8. Any suggestions would be appreciated on where I am erring and how I can fix it.

    Thanks Dan,
    The space between 'l' and 'e' was a formatting error while I was pasting text to this forum.
    Currently, I have
    <cfset filedirectoryYear = "E:\Files Submitted\"&#form.current_year#&"\"&#form.division#&"\">
    <cfif FORM.attachment_1 neq "">
           <cffile action="upload"
                   accept="text/plain,application/msword,application/pdf,application/rtf "          
                     filefield="attachment_1"
                     destination="E:\temp\uploads"
                     nameconflict="Makeunique"
            >
    <!--- rename the file and move it to permanent destination --->        
    <cfset submittedfileName =
    #form.departmentname#&"_"&#form.departmentnumber#&"_"&#form.section_number_1#&"."&#cffile. ClientFileExt#>
    <cfset presentfileName = #cffile.serverFileName#&"."&#cffile.ClientFileExt#>
            <cffile
      action="rename"
      source="E:\temp\uploads\#presentfileName#"
      destination=#filedirectoryYear##submittedfileName#
      >
    <!---   now create a temporary variable for the attachment so that it can be emailed later on --->
    <cfset attachment_local_file_1 = #filedirectoryYear#&#submittedfileName#&#cffile.ClientFileExt#>
    </cfif>
    <cfset attachment_local_file_1 = #filedirectoryYear#&#submittedfileName#>
    When I submit, I get the error message
    "Attribute validation error for tag CFFILE.
    The value of the attribute source, which is currently c:\Course Syllabi\uploads\Web Based System Two Page HandOut.pdf, is invalid and the line below is referred.
    destination="#filedirectoryYear##submittedfileName#"
    The filedirectoryYear path exists i.e. I have E:\Files Submitted\2011-2012\Finance. What could be the issue?
    P.S. I got it working, The filedirectoryYear path value was not the actual directory path\name in the filesystem. Once I had the
    correct name in the filesystem, the application worked fine.

  • Inserting strings in a RandomAccessFile at a particular location

    I wrote a java program to read and display the contents of RAF. It is working. Actually,I need to read a file and search for a string in it and if the string equals certain value, then i need to insert a line in the file at that location.
    My problem is I am not able to insert any string in the RandomAccessFile(RAF) at a particular location, it always overwrites the already present string.
    I have a file called SOE_Arrays2.js which needs to be read and its content has to be modified. I am searching for a string like "os = [" in it and inserting another line like "["64w","64-bit Windows"]," at that location.
    the file looks like this:
    os1 = [
    ["win","Windows"],
    ["unx","UNIX"],
    ["mvs","MVS"]
    os2 = [
    ["alp","Alpha VMS"],
    ["lnx","Linux"]
    var letter = [
    ["new","New"],
    ["addon","Add-on"],
    ["lsf","LSF"],
    ["renew","Renewal"]
    The java program i wrote is here:
    import java.io.*;
    public class RAFtest
         public void writeTo()
              try
         String f = "C:\\webapps\\oncall\\soe\\SOE_Arrays2.js";
         File arrayfile = new File(f);
         RandomAccessFile raf = new RandomAccessFile(arrayfile, "rw");
         String s="",ss="";
         int i,j = 0,len;
         long fp;
    while((s = raf.readLine()) != null)
              //System.out.println(s);
              int ptr = 0;
              ptr = s.indexOf("os2 = [");
              if(ptr != -1)
                   System.out.println(s);
                   System.out.println("The OS array is here:");
                   ss = s;
                   raf.writeBytes("\r\t");
                   fp = raf.getFilePointer();
                   raf.seek(fp-4);
              raf.writeBytes("[\"64w\",\"64-bit Windows\"],\r");
                   break;
         raf.close();     
         catch(Exception e){e.printStackTrace(System.out);}      
         public static void main(String args[])
              RAFtest e = new RAFtest();
              e.writeTo();
    After executing the code SOE_Arrays2.js looks like this:
    os1 = [
    ["win","Windows"],
    ["unx","UNIX"],
    ["mvs","MVS"]
    os2 = [["64w","64-bit Windows"],
    lnx","Linux"]
    var letter = [
    ["new","New"],
    ["addon","Add-on"],
    ["lsf","LSF"],
    ["renew","Renewal"]
    you can see that RAF overwrites to the file at that particular location( after the line "os2 = [ ". What i need is to insert the text at a particular location, Is there a way to do this?
    I tried to insert carriage return, etc and move the file ptr back a little and write, whatever it is, RAF overwrites it, is there a way to insert instead of overwrite?
    Basically I want to get some string from the user from a web page and insert that string in my SOE_Arrays2.js file at a particular location depending on certain conditions.
    Is there another way of doing this instead of RAF?
    Please let me know how to do this.
    Thanks,
    Priyha.

    Hi DrClap,
    Thanks for the clarification. Everything works except the renameTo() . I am trying to rename the arrayfile2 to arrayfile1 , but the rename always return false. I am not sure why rename is not successful.
    I checked for the permissions of the file, full permission is there. I closed the files before renaming.
    Here's the code.
    import java.io.*;
    public class RAFtest
    public void writeTo()
    try
    String f1 = "C:\\JAVA\\SOE_Arrays2.js";
    String f2 = "C:\\JAVA\\SOE_Arrays3.js";
    File arrayfile1 = new File(f1);
    File arrayfile2 = new File(f2);
    RandomAccessFile raf1 = new RandomAccessFile(arrayfile1, "rw");
    RandomAccessFile raf2 = new RandomAccessFile(arrayfile2, "rw");
    long fp1=0,fp2=0; // file pointers
    String s="",ss="";
    int i,j = 0,len;
    boolean b= false;
    raf2.seek(0);
    while((s = raf1.readLine()) != null)
    int ptr = 0;
    raf2.writeBytes(s);
    ptr = s.indexOf("var OS9.1_sol = [");
         if(ptr != -1)
              System.out.println(s);
              System.out.println("The OS array is here:");
              ss = s;
              fp1 = raf1.getFilePointer();
              raf2.writeBytes("[\"64w\",\"64-bit Windows\"],");
              fp2 = raf2.getFilePointer();
              break;
    raf1.seek(fp1);
    while((s = raf1.readLine()) != null)
         raf2.writeBytes(s);               
    raf1.close();
    raf2.close();
    if(arrayfile2.exists()) System.out.println("file2 exists!");
    try{
    b = arrayfile2.renameTo(arrayfile1); //rename the file, why does it return false?
    }catch(SecurityException se){se.printStackTrace(System.out);}
    catch(NullPointerException ne){ne.printStackTrace(System.out);}
    System.out.println("b: "+b);
    catch(Exception e){e.printStackTrace(System.out);}
    public static void main(String args[])
    RAFtest e = new RAFtest();
    e.writeTo();
    here is the SOE_Arrays2.js
    var OS9.1 = [
    ["win","Windows"],
    ["unx","UNIX"],
    ["mvs","MVS"]
    var OS9.1_sol = [
    ["alp","Alpha VMS"],
    ["lnx","Linux"]
    var letter = [
    ["new","New"],
    ["addon","Add-on"],
    ["lsf","LSF"],
    ["renew","Renewal"]
    Please let me know whats wrong with the above code. I have no clue why renameTo returns false.
    Thanks,
    Priyha

  • Uploading File to a particular location

    Hi,
    I need to upload a file to a particular location using the Struts framework.
    I have been reading about the html:file tag.
    But I did not come across any information as to where the file gets uploaded to. I need the file to be uploaded to a location in my project.
    How do I do it?
    Could anyone post a code sample for this?
    Thanks in advance.

    http://www.google.com/search?q=struts+file+upload
    I see lots of useful examples tho.
    Saving the retrieved file to a particular location has nothing to do with Struts. Just handle it in your Javabean. Check the java.io API.

  • Saving PDF From in particular location

    Hi all,
    I am having one query i have a requirement that the form that is initiated should be stored in particular location.
    eg: i have initiated the form with input ABC in one filed and my requirement is that after final approval the file should create a folder ABC and PDF should stored  in that folder like abc.pdf
    C:\\ABC\ABC.pdf
    please let me know how can i do in the work flow.
    thanks in advance
    Sekhar

    The following operation will do that.
    Service Name: File Utilities
    Operation Name: Write Document
    Note: The file cannot be written on the client PC.
    Nith

  • Why does one particular website not open on my ipad*,

    Why does one particular website not open on my ipad, when it alwasys did, but the same website is available upstairs on my PC, I'm using the same remote connection but for some reason it doesn't want to open.  I;ve tried refreshing etc... but nothing works.
    When I bring the ipad to work the website in question opens OK.
    Any suggestions??
    Thanks

    Try updating via iTune (computer)

  • Production order and planned order qty should not consider in MRP

    Dear All,
    i do not want to consider the previous month production order qty and plenned order qty (Nothing but WIP qty) in the current momth MRP, but the stock has to consider in MRP.
    Example,
    Before MRP,
    material : XYZ
    Stock : 1000
    Prod Qty : 500 for 02.04.2008
    PIR Qty : 2000 for 02.05.2008
    After MRP, the requirement should be as below said,
    material : XYZ
    Stock : 1000
    Prod Qty : 500 for 02.04.2008
    PIR Qty : 2000 for 02.05.2008
    Pld OrdQty : 1000 for 02.05.2008
    For the above requirement ,i have done settings in the availabilty check like , for include planned order and include production order are "DO NOT TAKE IN ACCOUNT".
    Even then also the planned order qty is generating for the "500" only.
    please give the solution for the above said requirement.
    thanx in advance
    Regards
    Srinivas

    hi
    MRP will always consider the prod order qty while doing nert req calculation.One thing u can do is TECo the prod orders and un MRP then it wont consider prod order qty.
    The Availability check will check whether the components r avalaible or not based on ur scope of check
    Reward points if useful
    Amit

  • Storage location and post.chge storage location not in the same warehouse

    Hi All,
    We have HU managed Storage Location, and in this Storage Location we have SUT managed Warehouse, Now while Goods Receipt we have to create inbound delivery, which is working fine and i can see my stock in Goods receipt area,, later on whicle creating Transfer Order to putaway in a bin i have a error message "Storage location and post.chge storage location not in the same warehouse" please help me with this error message. Thank you for all your inputs.
    Regards
    Samuel

    Hi Nagesh,
    Thank you for the input. I am receiving Stock from vendor and while creating Inbound delivery i created the Handling Unit and also packed it and i could also post it (PG Receipt). Now when i am creating TO i have that error message. The Storage Location where i am receiving is 9001and i have also maintained the partner Storage location,,, its like this Plant(1000)-SLoc(9001)-Partner SLoc(9002).... now the Storage Location 9002 is not HU managed,, the reason i gave this Storage location is, initially i gave 9001, but system said "Storage Location 9001 and 9001 must have different management systems". So now kindly tell me what is the purpose of the partner Storage location and which storage location should i give, as my partner Storage location across "1000-9001-????" thank you again for ur inputs.
    Regards,
    Samuel

  • Since switching to Yosemite, I am unable to paste any information into calendar events, instead having to type out all info such as location, notes, etc.  This is true both in daily view and weekly/monthly views as well.  Help?

    Since switching to Yosemite, I am unable to paste any information into calendar events, instead having to type out all info such as location, notes, etc.  This is true both in daily view and weekly/monthly views as well.  Help?

    You welcome

  • BAPI_GOODSMVT_CREATE - Error Storage location not supported...

    Dear All
    I am creating the material movement documetn 561 (MB1C) using BAPI_GOODSMVT_CREATE.
    Howeever, the BAPI returns me the error saying
    Storage location not supported. 
    What is this about.  Can someone give me hint
    I searched the forum and not able to find it.
    Regards,
    Venky

    Hi Venky,
    Are you creating a goods issue with reference to a reservation? If so, the documentation states that the storage location is only needed if it's not in the reservation.
    The following fields may have to be populated in some cases (this is not a complete list):
    Storage location (if not planned in the reservation)
    Brenda

  • Find Friends app keeps saying "location not available" on iOS7?

    After I updated my 4S to iOS 7, Find Friends will not actually find the person, it just pops up with "location not availble" everytime. I have tried restoring the phone, logging out then back in, and deleting the app then redownloading it and nothing has helped. The person I am trying to find says everything is working well on their end. Help!

    My family has 5 iphone 5s's. Two of my kids and myself just upgraded from iOS6 to iOS7. Now, on my Find Friends app, their locations only say Location Not Available. However my wife and and my other child, still on iOS6, their locations immediately appear.
    In talking with my two kids that are on iOS7, I have 100% confirmed that THE FIND FRIENDS APP MUST BE OPEN in order for their location to be found. THIS IS NOT ACCEPTABLE. Furthermore, my kids will not leave the Find Friends app open because it drains their batteries at an extremely fast rate. This is a new issue for iOS7.
    By confirm I mean this. On a hunch I called them when their location said not available, and confirmed that their Find Friends app was closed. I asked them to launch their Find Friends app on their phones. I then checked my Find Friends, and suddenly their locations were visible. I then had them close their Find Friend app, and sure enough, my Find Friends immediately showed their location as Not Available.
    THIS BEHAVIOR WAS NEVER PRESENT IN iOS6. NEVER!. I have also 100% confirmed that my wife's phone, beside me as as I type this, has all apps closed, including Find Friends. However her location immediately appears in my Find Friends list.
    I certainly hope that Apple will fix this immediately. I bought the five iPhone 5s's over a year ago, almost exclusively because of the Find Friends app, so I could keep track of my kids. Never once did we have trouble with Find Friends. And the app did not consume much battery, even when it was open.

  • Mapped Drive - Location Not Available

    I have a small recurring problem that is starting to get a little bit bigger.
    My environment is:
    Server 2012 Standard, AD, File Server, Print Server. Running on Hyper-V (2008)
    Clients are Windows XP, Vista, 7, and 8.1 all professional.
    I have a number of mapped drives that all go to this same file server. If I open a Windows Explorer window on any client and leave it open, after a while (always seams random), I will eventually get an error message saying "Location Not Available"
    The contents of the directory I was looking at goes blank when this message comes up. I can click OK and immediately hit refresh on the Explorer window and the contents will come back.
    Most of the time this is annoying but I am finding a couple of applications that do not like this behavior. They crash or close connections when this happens.
    I have had a Remote Desktop connection open to this server while getting this and it does not get disconnected. I do not see anything that looks related at all in the log files of the client, the server or the Hyper-V host. I have made sure that the drivers
    on Hyper-V are up to date as well as all firmware (especially the network cards).
    I am not sure if the problem started when I upgraded my personal workstation to Windows 8 (from 7) but that is when I first started to notice this.

    Hi,
    Do you mean the issue only occurs on Windows 8 systems?
    Also whether these mapped folders are DFS shares or just normal shared folder?
    If DFS is involved, test to disable Client Side Caching to see if it is related. Please add this key in all DFS target servers.
    HKLM\System\CCS\Services\LanmanServer value=<sharename> cscflags=48
    As it is a random issue, it will be difficult to find out the root case. You can try to capture a network trace with Network Monitor when the issue occurs. Let's see if any specific information could be found. 
    Detailed steps could be found:
    http://support.microsoft.com/kb/812953
    Note: As the issue occurs randomly, the package may be large as you need to wait until the issue occurs.
    Note2: you can upload package to OneDrive however as is open to public so everyone could see that package. 
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for