Requirement is getting generated multiple times

Dear All,
            I am attaching one Fert material to my project and generating reservation for this.while running the MRP through Tcode MD01,planned order is getting created and later on converted to production order.After confirmation of production order,the material comes to project stock from where it is getting dispatched against a sales order.Once the dispatch takes place,and when the MRP is run again,the system generates one more planned order.
I am using the strategy 21 in the material master.
One option I think is to check the final issue check box in the materials assigned to the activities but the no of materials are huge and the project guy is not knowing the status of dispatched materials.
Please let me know what could be the possible reason for this and what is the possible solution for this.
Regards,
B P Singh

Hi
In our case we are doing delivery from sales only for a similar requirement and the only option was to set the FI indicator against the network reservation.
Is there any other method that would stop new requirements generation in MRP for those items which are picked up from sales and delivered from project stock.
Project based delivery offcourse answers it, but is there any other settings for deliveries from sales.
PS: Status TECO can also be set to the Network reservation only if all the materials are delivered.
regards
Srikrishna

Similar Messages

  • Requirement is getting generated multiple times on Running the MRP

    Dear All,
    I am attaching one Fert material to my project and generating reservation for this.while running the MRP through Tcode MD01,planned order is getting created and later on converted to production order.After confirmation of production order,the material comes to project stock from where it is getting dispatched against a sales order.Once the dispatch takes place,and when the MRP is run again,the system generates one more planned order.
    I am using the strategy 21 in the material master.
    One option I think is to check the final issue check box in the materials assigned to the activities but the no of materials are huge and the project guy is not knowing the status of dispatched materials.
    Please let me know what could be the possible reason for this and what is the possible solution for this.
    Regards,
    B P Singh

    Hi
    In our case we are doing delivery from sales only for a similar requirement and the only option was to set the FI indicator against the network reservation.
    Is there any other method that would stop new requirements generation in MRP for those items which are picked up from sales and delivered from project stock.
    Project based delivery offcourse answers it, but is there any other settings for deliveries from sales.
    PS: Status TECO can also be set to the Network reservation only if all the materials are delivered.
    regards
    Srikrishna

  • Backing  Bean constructor getting called multiple times

    I have a List of records in the Table with a link Add.
    When i click Add i show a popup dialog which is attached to the dialogListener.
    On clicking OK on the dialog i want to add a record in the List in the backing Bean, but the Bean constructor is getting called multiple times.
    and the list to which the table is attached is also getting called multiple times.
    is there a way in which the method gets called only once?
    Message was edited by:
    user607056

    Hi!
    af:table have property ContentDelivery. When <default> (lazy), the table "frame" iz rendered in first page cycle, and content (rows in table) are fetched lazy i.e. in second cycle. Thus, your backing bean is constructed twice.
    If you set ContentDelivery to immediate, the table including data rows is generated in single page cycle thus your backing bean is constructed only once.
    Hope this helps,
    PaKo

  • ValidateEntity getting called multiple times

    Hi,
    There is a parent EO and a child EO. There is a composite association between the parent and child.Association accessors are generated for both source and destination. In the ChildEO's doDML method , the following code is added.
    Long abc = getPArentEO().getAttr1();
    Long xyz = getPArentEO().getAttr2();
    setAttr3(abc);
    setAttr4(xyz);
    super.doDML();
    getParentEO() is the association accessor .
    After the addition of this code, all the method validators of the parent are getting fired more than once. The validateEntity of the parentEO is getting called more than once if I set some attribute of the childEO in childEO's doDML . Is this the expected behaviour?
    Thanks.

    Even on adding the setter in prepareForDML (either in parent or child) , the validateEntity is getting called multiple times. In fact ,validateEntity is getting called once before prepareForDML and again after. One of my method validators fail on the subsequent call giving an error ..Please help.

  • Php include file getting called multiple times

    I have created a form in file career.php. To carry out the validation user_registration.php is called at the beginning of the file.
    user_registration.php in turn calls library.php. Issue is that library.php is getting called multiple times.
    I have attached phperror.log which confirms the same.
    career.php
    <?php
    session_start();
    require_once('phpScript/user_registration.php');
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    user_registration.php
    <?php // This file is used for validating user form data. It calls process_upload.php to validate file uploaded by user
    $errors = array();  
    $messages = array();
    $testing = TRUE;
    error_log("Enter- user_registration.php. Testing mode $testing", 0);
    try {
              error_log("user_registration.php: Entered try catch block",0);
    require_once('library.php');
              error_log("Successfully called library.php",0);
              $public_key = '6LeDsNUSAAAAAIoaYuNhGm2zx_qgBECiybUWUkt6';
              $private_key = '6LeDsNUSAAAAACuvmJrec-_5seLdmhqUMngt8AiU';
              $recaptcha = new Zend_Service_ReCaptcha($public_key, $private_key);
              if(isset($_POST['submit'])) {          // Only execute if form is submitted by user
                error_log("user_registration.php. Submit button pressed by user", 0);
                require_once('Zend/Mail.php');
                $mail = new Zend_Mail('UTF-8');
                if (isset($_POST['name'])) {
                        $val = new Zend_Validate_Regex('/^\p{L}+[-\'\p{L} ]+$/u');
                        if (!$val->isValid($_POST['name'])) {
                          $errors['name'] = "Please enter your name, no numbers permitted";
    error_log("Exit- user_registration.php.", 0);
    library.php
    <?php
    error_log("Enter- library.php. Testing mode $testing", 0);
    if ($testing)  // If true then go to testing mode
              $library = '/Applications/MAMP/htdocs/mgtools-india/ZendFramework/library';
              set_include_path(get_include_path() . PATH_SEPARATOR . $library);
    require_once('Zend/Loader/Autoloader.php');
    try {
    Zend_Loader_Autoloader::getInstance();
    error_log("Exit- library.php. Testing mode $testing", 0);
    phperror.log
    Marker - 12-Oct-2012 10:27:26 AM
    [12-Oct-2012 04:57:33 UTC] Enter- user_registration.php. Testing mode 1
    [12-Oct-2012 04:57:33 UTC] user_registration.php: Entered try catch block
    [12-Oct-2012 04:57:33 UTC] Enter- library.php. Testing mode 1
    [12-Oct-2012 04:57:33 UTC] Exit- library.php. Testing mode 1
    [12-Oct-2012 04:57:33 UTC] Successfully called library.php
    [12-Oct-2012 04:57:36 UTC] Enter- user_registration.php. Testing mode 1
    [12-Oct-2012 04:57:36 UTC] Entered try catch block
    [12-Oct-2012 04:57:36 UTC] Enter- library.php. Testing mode 1
    [12-Oct-2012 04:57:36 UTC] Exit- library.php. Testing mode 1
    [12-Oct-2012 04:57:36 UTC] Successfully called library.php
    [12-Oct-2012 04:58:38 UTC] Enter- user_registration.php. Testing mode 1
    [12-Oct-2012 04:58:38 UTC] Entered try catch block
    [12-Oct-2012 04:58:38 UTC] Enter- library.php. Testing mode 1
    [12-Oct-2012 04:58:38 UTC] Exit- library.php. Testing mode 1
    [12-Oct-2012 04:58:38 UTC] Successfully called library.php
    [12-Oct-2012 04:58:38 UTC] user_registration.php. Submit button pressed by user
    [12-Oct-2012 04:58:39 UTC] user_registration.php, Processing enquiry form
    [12-Oct-2012 04:58:39 UTC] Enter- process_upload.php. Testing mode 1
    [12-Oct-2012 04:59:01 UTC] Exit- user_registration.php.
    I am not able to understand why user_registration.php and library.php are executing again and again.
    I ran this test on local testing server MAMP.
    The results are the same on remote server also.
    Please guide.

    I'm not sure what's happening there. The important question is whether the code is executed successfully.
    Since you're using the Zend Framework, it might be better to ask in a dedicated ZF forum.

  • Validation Event getting called multiple times

    I am saving an eform after entering a wrong percentage in it.On opening the same eform it gives the validate message "Percentage not valid" pop up .This popup should come only once but its coming around 25-26 times.I checked and find that the validate event is getting called multiple times for the same field.Can someone tell why this is happening and how to resolve this

    Hi rupali Sri,
    Our forum here is for questions related to the LiveCycle Collaboration Service product.
    You might want to post your question to the Livecycle Forms forum:
    http://forums.adobe.com/community/livecycle/livecycle_es/forms_es
    If that's not the correct forum, start from here:
    http://forums.adobe.com/index.jspa?view=overview
    Hope this helps.
    Good luck,
    Julien
    LCCS Quality Engineering

  • Same network device gets discovered multiple times in scom

    Hi All,
    In SCOM 2012 , Same network device gets discovered multiple times.
    For example, if we have an ip address 10.91.180.43 added to Network discovery rule.
    When Discovery is run few times.
    its gets discovered multiple times and shows 3 or 4 times under Network Devices.
    Please help me to fix this issue.
    Thank you
    Siva

    Hi dktoa,
    Thank you for the quick reply. i would like to explain my issue in clear.  
    For example, if we have an ip address 10.91.180.43 added to Network discovery rule.
    When Discovery is run few times. its gets discovered multiple times and shows 3 or 4 times under Network Devices. And it gets listed multiple times with same ipaddress not with different ip.
    it will look like this
    10.91.180.43
    10.91.180.43
    10.91.180.43
    ----  I read both articles, they are were interesting.
    Do you mean to say that my issue will get fixed , if i change the AccessAddressFormat = "AUTOADDRESS" as
    AccessAddressFormat = "LOOPBACKADDRESS"
    Please guide me if i am wrong.
    Thank you once again.
    Regards
    Siva

  • Error file in cferror gets executed multiple times

    The error cfm page included in <cferror> tag in Application.cfm gets called multiple times, so email notification is sent more than once. Any thoughts how this can be handled?

    Could we see the code of the tag? In any case, does it help when you place <cfabort> at the end of the error page?

  • Customer is getting created multiple tims when it has multiple sites

    Hi,
    I developed customer conversion.
    when I load data through conversion in R12 Customer is getting created multiple tims when it has multiple sites.
    what are the things I have to take care to prevent this.
    Please suggest me If any one has Idea.
    Thanks & Regards,
    Narendra.

    Hi Gabriel,
    Thanks for taking time to reply to my post.
    When one of my collegue giving the print, there is only one spool which is getting created, but when I run the program there are multiple spools are getting created.
    -Pradeep

  • FocusLost event on same component generated multiple times... why?

    This is a reiteration of the topic of a post from Jan. 2006 by Toxter.
    Although Toxter got his problem resolved, the question of the title of his post (same as mine) was never answered.
    Suppose you want to validate text of a component (say, a JTextField) by checking the text when the component loses focus, by implementing the focusLost method in a FocusListener. The listener catches focusLost events from the given component and does validation and if found invalid, opens a warning dialog (say, a JOptionPane). Suppose further that in your implementation of the focusLost method, after returning from the JOptionPane call, you call requestFocusInWindow() on the JTextField so the user can make the correction straight-away. What happens, weirdly, is that you get multiple recurrences of a focusLost event from the very same textfield component, generating multiple JOptionPane popups, before the user is actually able to access the textfield and make a correction.
    No reason was given as to why this happens. Toxter reported that focusLost would get called twice. I routinely get 3 occurrences.
    In any case, why does this happen?
    There are at least a couple of other workarounds besides the one accepted by Toxter:
    1) you can drop the call to textField.requestFocusInWindow... without that call you don't get multiple occurrences of focusLost FocusEvents
    2) you can wrap the call to requestFocusInWindow in a call to SwingUtilities.invokeLater (within the run method of an anonymous Runnable):
         if( !validatePositiveIntegerField(txtFld) )
             JOptionPane.showMessageDialog(this, INPUT_ERR_MSG,
                      INVALID_ENTRY_TITLE, JOptionPane.WARNING_MESSAGE);
             SwingUtilities.invokeLater(new Runnable()
                public void run()
                   txtFld.requestFocusInWindow();
          }Workarounds are great but it's nice to understand the underlying causes of problems too... If anyone (Toxter, do you know?) can give even just a brief nutshell explanation as to why this occurs, I'd like to hear it.
    Thanks in advance.

    Use an InputVerifier:
    http://forum.java.sun.com/thread.jspa?forumID=57&threa
    dID=776107&start=6Thanks for the reply, camickr. Several workarounds were already noted. That wasn't the question. The question was: what is the underlying cause of the multiple occurrences of focusLost events from the given JTextField which cause the JOptionPane to pop up multiple times? On the face of it, it seems to be a bug in how focus events are getting generated. Here is a bit of code that will generate the problem:
       public void focusLost(FocusEvent e)
          if( e.getSource() == txtFld && !validatePositiveIntegerField(txtFld) )
             JOptionPane.showMessageDialog(this, INPUT_ERR_MSG, INVALID_ENTRY_TITLE,
                                           JOptionPane.WARNING_MESSAGE);
             txtFld.requestFocusInWindow();
       }In my previous post, I pointed out that the multiple focusLost events can be avoided if one either drops the call to txtFld.requestFocusInWindow() altogether, or else wraps that call in the run method of a Runnable executed with SwingUtilities.invokeLater. But the question I posed was, why is the code above causing multiple occurrences of focusLost events from the txtFld component?
    Any help in getting an explanation of that seemingly buggy behavior would be appreciated.
    Cheers

  • TDS reversal entry is not getting generated at time of F-54

    Dear All,
    I have made down payment request  through F-47  transaction code  and down  payment made by Transaction code u2013F110 (instead of F-48)   and TDS is deducted at this point. There after I made invoice through MIRO / F-43 in which TDS is again deducted for whole invoice amount. I have cleared down payment through T.code F-54. But at this time TDS reversal entry is not getting generated and only customer account is credited and debited.
    So in short TDS is getting deducted at time down payment and at time of Invoice for their respective full value.
    Note: For TDS type on payment I have selected u201CCentral Invoice PROPu201D and we are not using business place and section code. Please help me.
    Appreciate all expertsu2019 help ASAP.
    Thanks ,
    Manas kumar

    Hai Manas,
    If ur not using business place how can u get remitance chalana thats why first u can configure the business plance. I think ur already posted some entries its correct? In this case u will run this t.code business place update the previous entries i.e.,  J1INPP  this is very useful to u
    Regards
    Madhu I

  • Absence quota should not get generate in Time Evaluation

    Hi All,
    For some employees we lock the payroll. But whenever we run the time evaluation every month employees  who are under lock payroll their absence quota is getting generated every month. It should not happen..
    Please provide solution for this....
    Regards,
    Sita

    Hi,
    Due to some reasons  some employees payroll data was stopped for payment. for this they delimited in  infotype 0001 start date and payroll area to 90 ie. stop payment.
    So whenever they run time evaluation every month through payroll area wise the employees who are under stop ment their quota is also getting generated. How to stop generating quota?
    Regards,
    Sita

  • Workstations get registered multiple times

    Right now I'm working on ZLM7.2 and I'm running into a problem where workstations get registered each time the workstations are re-installed. I use an AutoYast preboot bundle for this which installs SLED10 in this case. The workstations add the guid to the new object.
    Ex.
    ws1
    ws1-xxxxxxxxxxxxxxxxxx
    ws1-yyyyyyyyyyyyyyyy
    ws1-zzzzzzzzzzzzzzzzzz
    What it really should do is update the existing object.
    Anyone?
    Kind regards,
    Robin Meeuwsen

    Robin,
    in case you do a autoyast installation, this is how it works.
    The device registration is working based on a device id that is generated at the device the first time zmd is started. You will find that file in /etc/zmd/deviceid. As SLED 10 has a zmd package in the distribution, the deviceid will be generated the first time the system starts up. In case you update to the zlm client afterwards, that deviceid file will be kept for the new client. Once you register the system against the zlm client it will recognize that there is already a device with the same name (not the same deviceid) and it will create another one with the device id as extension of the name.
    Are you running the autoyast installations just for a test or is this a common task in your company ?
    Rainer

  • Action method getting called multiple times.

    Hi All,
    The problem that I am facing is pretty weird.
    The issue is the i have an input field that takes date as input field.
    This field is inside a data taable
    FYI: I tried converter still same problem.
    So when ever I enter wrong data as "asda" inside this date field I get a validation error. which is good. So assume it took me 3 submit clicks to fix all my errors on the page.
    So now when I click the submit for the 4th time.
    The action method gets trigerred 4 times.
    Desperately waiting for a fix.
    Thank you in advance.
                                            <h:dataTable id="disbursementTable"
                                                 value="#{certTemplateBean.disbursements}" var="disbursement"
                                                 binding="#{certTemplateBean.disbursementTable}"
                                                 columnClasses="disburseDate,disburseAmt,disburseAction"
                                                 styleClass="disbursementTable" cellspacing="0" cellpadding="1">
                                                 <h:column >
                                                      <h:inputText id="disburseDate" styleClass="#{certTemplatesListBean.errorHolder.disburseDate} ms" size="10"
                                                                value="#{disbursement.date}">
                                                           <f:validator validatorId="RegExp" />
                                                           <f:attribute name="regexp" value="[0-9]{2}/[0-9]{2}/[0-9]{4}" />                                             
                                                           <f:attribute name="fieldRef" value="Disbursement Date :" />
                                                           <f:attribute name="message" value="Invalid Date" />
                                                           <f:attribute name="bean" value="certTemplatesListBean" />
                                                      </h:inputText>
                                                 </h:column>
                                            </h:dataTable>
                                            <h:commandLink id="addPro"
                                                 action="#{certTemplatesListBean.doAddUpdateCertTemplate}">
                                                 <h:outputText value="Add Profile direct"/>
                                            </h:commandLink>

    Probably got to do with the JSF jar files. I am not sure though. Can you check if the below link is useful?
    http://jira.jboss.com/jira/browse/AJSF-127

  • SAPscript getting printed multiple times.

    Hi Folks,
          I got a strange problem , when we are try to print a SAPscript it is getting printed 5 times.
    We cant understand why it is happening because I checked everywhere and I found everything to be fine. This script is absolutely working fine in the quality server but in the production it is getting printed 5 times.
    Regards.

    Hi santosh,
    Please check out FM OPEN_FORM & CLOSE_FORM .
    Degug script once again.
    Did you try to copy your first-page to one named 'next' and set this next-page as follow-up of first .
    Cheers,
    Pravin s

Maybe you are looking for

  • Open Page in new window

    ..................... I use JDeveloper 11g TP4 ...................... How Can I Open Page In New Window when I press In Command button or link?? Thank You.

  • Problem when loading the form in workspace  ( LCES2  v9)

    Hey, I have a problem with some process .Each time I try to invoke it through the workspace I get this error (ALC-WKS-007-040). This is what I found in the server log . 15:21:09,133 INFO  [STDOUT] [LCDS][ERROR] Exception when invoking service 'remoti

  • Unity 4.2(1) and CME 4.1(0) Error - CME ports reregister every 60 seconds

    Hello, I have an integration between Unity 4.2(1) and CME 4.1(0) which, until Friday last week was working fine. I got a complaint that users couldn't get theri voicemail and have found that the ports on CME unregister and register every 60 seconds (

  • Third party remittance simulation document

    Hi Guys, When i open third party remittance simulation posting document in PCP0 and when double click on vendor to see the details of payments it shows me following error. "An explanation of some or all document lines is not possible". Here is the de

  • Get-Member not working in ISE

    When i try to use Ge-member command in ISE it not work but it work without ISE ...? PS C:\> Get-WindowsFeature | Get-Member Get-WindowsFeature : The target of the specified cmdlet cannot be a Windows client-based operating system. At line:1 char:1 +