Not able to find the source requirement of MRP RUN-(planned order)

Dear All,
Actullay In MRP run system is generating 10000 qty in planned order but in MD61 there is only 3000 qty and no sales order requirement also exists for the same. And when i rerun the MRP by choosing option 3 in planning mode, then also it is generating the planned order for 10000 qty only but Iam not able find out the base requirement for that. Kindly suggest me the solutions.
Regards,
Krishna

Dear balu
Check assembly scrap in MRP 1 view
and also check which lot size u r using
is it HB - replanishment up to maximum stock level
or FX - fixed order size
Kindly check
Regards
Sachin

Similar Messages

  • Not able to find the source requirement of MRP RUN-(for planned order)

    Dear All,
    Actullay In MRP run system is generating 10000 qty in planned order but in MD61 there is only 3000 qty and no sales order requirement also exists for the same. And when i rerun the MRP by choosing option 3 in planning mode, then also it is generating the planned order for 10000 qty only but Iam not able find out the base requirement for that. Kindly suggest me the solutions.
    Regards,
    Krishna

    Hi
    In MD04 at bottom, you can see a button for pegged requirement, click there you will come to know the list of requirement. It is not only because of Planned independent requirement you maintain in Md61, it could be due to lot size in Material master, or if you have fixed vendor in sourcelist then it could be because of Minimum order quantity with the vendor, or it could be safty stock or reorder point maintained in Material master
    Regards
    Antony

  • Not able to find the source files for org.w3x Node.java Nodelist.java

    hey guys, Im deploying an applet on a users network that only has 1.4.2, and the xml parsing files node.java and nodelist.java are needed. I would like to add the files to my source code myself but i am unable to find them anywhere within my jdeveloper files. I keep finding stubbs. Where might I be able to find these? Thanks a lot!

    java.lang.NoSuchMethodError: org.w3c.dom.Node.getTextContent()Ljava/lang/String;
         at customertree.XmlLoader.readData(XmlLoader.java:127)
         at customertree.XmlLoader.<init>(XmlLoader.java:69)
         at customertree.CustomerTreeFinal.jbInit(CustomerTreeFinal.java:240)
         at customertree.CustomerTreeFinal.init(CustomerTreeFinal.java:858)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source
         at java.lang.Thread.run(Unknown Source)and then inside the code... this is where i get my first error
    clients.setRowId(list2.item(i).getTextContent());

  • Hi, i'am not able to find the redemption code that is required to renew subscription for my creative cloud account. Please advice.

    Hi, i'am not able to find the redemption code that is required to renew subscription for my creative cloud account. Please advice.

    Redemption Code Help
    Mylenium

  • Not able to find the required upgrade patch for 10.2.0.2

    Hi all,
    I am trying to upgrade my database from 10.2.0.1 to 11.2.0.2, for which first i need to upgrade it to 10.2.0.2. But am not able to find the same in the support.oracle.com , please advice.
    Platform details :
    [ora10g@www ~]$ uname -a
    Linux www.benefits.com 2.6.18-164.el5 #1 SMP Thu Sep 3 02:16:47 EDT 2009 i686 i686 i386 GNU/Linux
    Database details :
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Thanks and Regards,
    Littlefoot

    The 10.2.0.2 patch is 4547817 - see this MOS Doc
    Quick Reference to Patchset Patch Numbers [ID 753736.1]
    HTH
    Srini

  • In 4.1 BO Client Tools not able to find data source  for BVM

    Hi All,
    In 4.1 BO Client Tools not able to find data source  for BVM
    Its creating issue .
    So if any body have any solution please let me know.
    Regards,
    Abhishek

    java.lang.NoSuchMethodError: org.w3c.dom.Node.getTextContent()Ljava/lang/String;
         at customertree.XmlLoader.readData(XmlLoader.java:127)
         at customertree.XmlLoader.<init>(XmlLoader.java:69)
         at customertree.CustomerTreeFinal.jbInit(CustomerTreeFinal.java:240)
         at customertree.CustomerTreeFinal.init(CustomerTreeFinal.java:858)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source
         at java.lang.Thread.run(Unknown Source)and then inside the code... this is where i get my first error
    clients.setRowId(list2.item(i).getTextContent());

  • FindClass() not able to find the class in the same path

    Hi,
    I have a c prototype which calls a java function which push a message in JMS. i'm using jdk1.6. i have set JavaVMInitArgs vm_args.version = JNI_VERSION_1_6 when i compile the c code as gcc -g -lgcj -I $JAVA_HOME/include -I $JAVA_HOME/include/linux CallJMS.c the JNI_CreateJavaVM(&jvm, (void*)&env, &vm_args)* returns JNI_ERR. After changing version to 1.4 JavaVMInitArgs vm_args.version = JNI_VERSION_1_4 finally it gives me an executable which calls the java function (how ever the required functionality is not got)
    To get the required functionality i had to use jdk1.6 so i changed the version property to JNI_VERSION_1_6 and the compiling command as gcc -g CallJMS.c -I $JAVA_HOME/include -I $JAVA_HOME/include/linux -L $JAVA_HOME/jre/lib/i386/server -ljvm .This gave me an executable, but when i execute it is not able to find the java class file. I have kept both the java and c file in the same path and also set the CLASSPATH. Please help.

    Hi jschell,
    I got solution to this problem. As you said it is due to wrong CLASSPATH set .
    Before:
    JavaVMInitArgs vm_args;
    JavaVMOption options[3];
    options[0].optionString = "-Djava.class.path=.:/home/programs/JbossMetro/jboss-5.1.0.GA/server/default/deploy/JMSforCNew.war/WEB-INF/classes";
    options[1].optionString="-Djava.library.path=.:/home/program/jdk1.6.0_23/jre/lib/i386/server";
    options[2].optionString="-verbose:jni";
    vm_args.version = JNI_VERSION_1_6; //JDK version. This indicates version 1.6
    vm_args.nOptions = 3;
    vm_args.options = options;
    vm_args.ignoreUnrecognized = 0;
    int ret = JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args);
    if(ret < 0)
    printf("\nUnable to Launch JVM\n");
    else
    printf("\nLaunched JVM\n");
    I was setting the CLASSPATH to the Path where my java class files were kept. When the JVM instance is created only this path (where my java class is residing) is identified and the JMS and other paths which was already set in the CLASSPATH environment variable is lost. Thus when i call the java class from the c program it is not able to find the dependent class files and it was aborting.
    After:
    Before setting the path where my class files are residing to CLASSPATH, get the path's in the CLASSPATH to a variable, append the path where my class files are kept to this variable and then set the CLASSPATH . Similarly do for the LD_LIBRARY_PATH. This works fine.
    char cpathBuff[100000];
    char ldpathBuff[4096];
    JNIEnv *env;
    JavaVMInitArgs vm_args;
    JavaVMOption options[3];
    cpath = (char*) getenv("CLASSPATH");
    sprintf(cpathBuff,"%s%s:%s","-Djava.class.path=",cpath,"/home/programs/JbossMetro/jboss-5.1.0.GA/server/default/deploy/JMSforCNew.war/WEB-INF/classes");
    options[0].optionString = cpathBuff;
    ldpath = (char *)getenv("LD_LIBRARY_PATH");
    sprintf(ldpathBuff,"%s%s:%s","-Djava.library.path=",ldpath,"/home/program/jdk1.6.0_23/jre/lib/i386/server");
    options[1].optionString = ldpathBuff;
    vm_args.version = JNI_VERSION_1_6; //JDK version. This indicates version 1.6
    vm_args.nOptions = 2;
    vm_args.options = options;
    vm_args.ignoreUnrecognized = 0;
    int ret = JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args);
    if(ret < 0)
    printf("\nUnable to Launch JVM\n");
    else
    printf("\nLaunched JVM\n");
    Thanks for your support Peter and JSchell.
    Edited by: 844094 on Mar 15, 2011 2:37 AM

  • Not able to find masterdata source from ECC

    Dear All,
    fist time I'm workin with HCM in SAP BW
    I'm not able to find masterdata source in ECC side for below Objects, could any one suggesion me how to find the datasource?
    0APPLIC - Application
    0CDCY    -Candidacy
    0POSTING - Job Posting
    Candidate   - 0CANDIDATE
    Activity for Candidacy- 0CDCY_ACT
    Requisition - 0REQUI
    Application Source - 0APPL_SCR, this master data for 'Recruitment'
    Thank you very much in advance
    Best Regards,
    Narasimha

    Hi ganesh,
    I'm not able to find E-Recrutment Application in RSA5 Tansaction, could you please explain me wt is the next step i should follow?
    Best Regards,
    Narasimha

  • If I do not select F11 ( full screen ) a big part of the screen "falls" of the right hand side of my monitor and is not readable, I am not able to find the neccesary adjustments.

    Question
    If I do not select F11 ( full screen ) a big part of the screen "falls" of the right hand side of my monitor and is not readable, I am not able to find the neccesary adjustments.
    Screen 2/3 blanco on the left side
    With F11 all OK.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • I have inadvertently infringe copyright on facebook and they have subsequently barred me from uploading any more videos. The question I need answered is ( and not able to find the answer on any of you help pages).....  Do the following have free copyright

    I have inadvertently infringe copyright on facebook and they have subsequently barred me from uploading any more videos.
    The question I need answered is ( and not able to find the answer on any of you help pages).....
    Do the following have free copyright to publish on facebook and U Tube?
    1.Garage band sounds?
    2.Slide show...Sample music and Theme music?
    3.iMovie...iMovie sounds and iLife sounds ie.Medal Ceremony and Memorial etc?
    I note one can publish to shared net places directly from iMovie so one assumes these are copyright free for non-profit making and non-comercial use.
    It is impossible to contact apple direct.No email address.We put our selves at risk without this knowledge and like applemac, facebook will not communicate direct.Will applemac please take responsibility for copyright/the above that they are all too willing to sell to us but not support us with that knowledge.
    I have Mac OS X Snow Leopard version 10.6.2 (2009 bought in 2010)

    Thank you Klaus1.The large font, I copied and pasted from my mail box.I'm visually impaired...not to a huge degree but it helps to use the large font.I believe you are right about the copyright on the imac stuff but if facebook decide otherwise, you have to reply electronically to their challenge.If you can't provide a reference directly from the copyright owner then they remove the video.I believe this is a programmed response and no human is involved which now makes it impossible for me to get my video uploading restored.They detect added soundtrack automatically and then challenge.There are many others in the same boat and facebook will not communicate.They have various discussion sites on which I have left messages including Mark Zuckerbergs own facebook but I don't think anyone from facebook ever reads them.I intend to start a second facebook which I can use purely to get my videos uploaded as a lot of my friends enjoy them BUT don't want fall foul of their programming again.If only iMac would put something on the net to this effect.I think it is so unfair that with modern technology it is impossible to contact these large conglomerates personally and receive an email response.I tried emailing [email protected] but I got a failure notice.If you have any ideas on how to get verification from apple direct, I would be very grateful.Thank You.

  • Not able to find the created BI System

    Hi,
    I have configured the BI System as in the document.
    http://help.sap.com/saphelp_nwce10/helpdata/en/7e/6dbcea3700452195e3bddaa47c5906/frameset.htm
    I am having few doubts.
    1. Whether we need to choose only SAP system with load balancing template.
    2. Whether we can set
               BI Directory Provider: No
               BI Master System: No
    And also one more thing, I am using UIDPWD logon method. Whether there will any problem with this
    I need clarifications on these.
    Also after doing all these things i am not able to find the created BI System in VC.
    When i test the same in Portal, it is saying the connection is successful..
    Anyother step needs to be done, after this in configuration. Please let me know.
    Please help me to resolve this issue.
    Regards,
    Palani
    Edited by: Palani Appan on Sep 12, 2008 1:41 PM

    Hi Inna,
    Thanks for the reply.
    But in Portal I have done the User Mapping between Portal Server and BI System.
    I am using BI 3.5 System, Whether there will be any problem?
    The BI Kit is already installed and i am able to view the components.
    Still i am not able to get the System that i have created in portal into VC 7.1.
    I am only getting Web Services created in that system and Service Registry and Visual Composer Models in Search Tab.
    Whether we need to create a RFC destination also for this BI system?
    Please help me to solve this issue.
    Regards,
    Palani
    Edited by: Palani Appan on Sep 15, 2008 4:44 PM
    Edited by: Palani Appan on Sep 16, 2008 9:42 AM

  • When I download certain files(most often exe files), I'm not able to open the source folder anymore when the download is complete.

    When I download certain files(most often exe files), I'm not able to open the source folder anymore when the download is complete. Neither can I execute the exe file. It often forces me to redownload the file in google chrome and then I go to the source folder and right click properties and I have to unblock the file. Only then I'm able to start the exe file.
    FYI: I use vista, so that might be the problem by itself...

    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox.
    Try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See "Disable virus scanning in Firefox preferences - Windows"
    *http://kb.mozillazine.org/Unable_to_save_or_download_files

  • Hi, I recently updated my iPhone 4 with the new OS 5. However, mid way now the laptop is not able to find the drivers for the iPhone. Please help

    Hi, I recently updated my iPhone 4 with the new OS 5. However, mid way now the laptop is not able to find the drivers for the iPhone. Please help

    Please search the forums. This has been covered here extensively.

  • I am not  able to find the Subsription/manage part. It is not available for me in the "view apple id" screen

    i am not  able to find the Subscription / manage part. It is not available for me in the "view apple id" screen

    ok . i am I try to managed  cycleops app for tablet
    https://www.cycleops.com/virtualtraining/apps-pricing

  • User is not able to find the receipt to correct it from Iprocurement.

    User is not able to find the receipt for PO to correct it. User logged into iProcurement and queried for this PO but system says no data exists.
    I checked there is a receipt for this PO and the same can be queried in Correction window through core APPS.
    Could you please help why its not available in iProcurement for correction.
    Thanks in Advance,
    AVN

    Are you logging into right organization (OU) to check the receipts?
    Check your ship to location in PO and then based on that change your organization (through responsibility or change organization) then query yur receits, it should come.
    BTW for receipts to be seen, the PO lines should not be in "CLOSED" status!
    Jithendra

Maybe you are looking for

  • JDBC- XI- File Scenario

    Hi , I have this scenario where i need to pick the records from an Oracle staging table and i should insert the same header and item records in to a Flatfile which will be used to create records in SAP. The records in the oracle table would be of hea

  • Sync contacts and calendar options keep getting unchecked

    The options to sync my Outlook contacts and calendar keep getting unchecked each time I restart iTunes. When I recheck them and attempt to sync, I receive a message stating that "The information on the iPhone is synced with another user account. Do y

  • Air Port firmware upgrade

    I did a software upgrade yesterday having read that it solves some serious security problems, and in the process I also got a firmware upgrade for the AirPort Extreme WIFI card in my MBP. After the re-boot, my Mac was trying to connect to the 802.11n

  • WSUS 6 upstream server will support WSUS 3 SP2 downstream server or not

    In our company WSUS upstream server operating system is windows 2012 r2. I would like to know can we install downstream server in windows 2008 r2 (WSUS 3.0 sp2) it will download approved patches from upstream server. WSUS 6 upstream server will suppo

  • Has anyone had success using the player in a facebook newsfeed

    I'd like to use the player as a previewer in a facebook newsfeed. Has anyone had success? Is there a recipe for this? Thanks,    Leo