MD04 Stock requirement changed date is not updated.

Hi Experts,
     Please can any one give me solution for the date in Md04.
Co02 if I change the PR date that date is not showing up in MD04, the previous date is showing up that to 1 day extra.
Reward poins will be given

Hi Jay,
    My requirement is : In CO01 we create production order with BASIC FINISH and START DATE.  exp  FINISH DASTE  12/01/2007
                                    START DATE     11/30/2007
In MD04  : i can see this start date  as 11/30/2007 for all the stock requirements
If I change the date in CO02 as  FINISH DASTE  12/20/2007
                                               START DATE     12/01/2007
in MD04 should show 12/01/2007 for all stock requirements, but it is showing 11/30/2007.
Please help me in this issue, Good reward will be given

Similar Messages

  • Last stock update Date Tab not updating in ICH

    Hi Team
    I observed that in ICH screen Last stock update Tab is not going to update every time while demand and stock information coming from ECC to ICH.
    There is no stock inconsistency. All stock tab information are updating correctly in ICH compare to ECC system.
    Only this Last stock update tab Date are not updating.
    What is the reason behind this?
    Could you please help me to resolve this?
    Regards
    Virendra Kumar
    09769396038

    Hi Virendra
    It is a bug, please report to SAP and get fix
    which version you are using and what is the patch level?
    1341691 should be helpful check out
    Best Regards
    Vinod

  • When we synch data from AD to FIM Portal 2010 r2 the data is not updates in FIM Portal.

    Hi,
    When we synch data from AD to FIM Portal 2010 r2 the data is not updates in FIM Portal.
    Active directory attribute co have value vietnam but in FIM Portal country attribute have value VIET NAM
    we simply mapped AD Attribite to FIM Attribute for inbound
    co===>country
    why this happen
    Regards
    Anil Kumar

    Anil, please check what do you have in metaverse. It seems that you have attribute flow precedence configured in a way that doesn't export to FIM Portal.
    Let's say you have flows like:
    (AD MA)
    Import flow: (AD) description -> (metaverse) description
    (FIM MA)
    Import flow (FIM) description -> (metaverse) description
    Export flow (FIM) description <- (metaverse) description
    And you have higher precedence from FIM. Then, you would never have FIM value updated - even if value in AD changes. It would be exported to FIM only when you don't have this attribute filled in FIM.
    If you found my post helpful, please give it a Helpful vote. If it answered your question, remember to mark it as an Answer.

  • System status NTUP (Dates are not updated)

    Hi Guys,
    WBS Element has the system status NTUP (Dates are not updated) the option to untick this is greyed out and it is preventing the posting of a journal.
    Could you please let me know how to remove this system status.
    Regards,
    Abdul Rehman

    Hi Amit,
    Thanks for your reply,
    WBS is released and there is no user status as well but besides NTUP another system status is there i.e ACPT(Order accepted) is this is causing any problem for genral postings?
    Could you please also let me know how status NTUP got activated when i am checking in the change log it is not showing any name.
    WBS is very much an account assignment element.
    Regards,
    Abdul Rehman.

  • Data is not updated in the database

    hi.. to all..
    i'm using the following code ...... but the data is not updated in the database.. the output window get closed as soon as i clicked save button...
    i don't know wat's problem with the program...
    Plz help me.. to get resolve this problem..
    import java.applet.*;
    import java.awt.*;
    import java.sql.*;
    import java.awt.event.*;
    import sun.jdbc.odbc.*;
    public class Customerdetails extends Frame implements ActionListener
         TextField ccod,cname,add,phno,conp,email,fax;
         Label l1,l2,l3,l4,l5,l6,l7;
         Button save,exit;
         Connection con;
         ResultSet rs;
         Statement stmt;
         String s1,s2,s3,s4,s5,s6,s7;
    public Customerdetails()
        super("CustomerDetails");
        setSize(700,750);
        setLayout(null);
        setBackground(new java.awt.Color(245, 117, 105));
        l1=new Label("Customercode");
        l2=new Label("CompanyName");
        l3=new Label("Address");
        l4=new Label("PhoneNumber");
        l5=new Label("Contact person");
        l6=new Label("EmailAddress");
        l7=new Label("FaxNumber");
        l1.setBounds(20,100,100,70);
        l2.setBounds(20,180,100,70);
        l3.setBounds(20,270,100,70);
        l4.setBounds(20,340,100,70);
        l5.setBounds(20,420,100,70);
        l6.setBounds(20,500,100,70);
        l7.setBounds(20,580,100,70);
        ccod=new TextField();
        cname=new TextField();
        add=new TextField();
        phno=new TextField();
        conp=new TextField();
        email=new TextField();
        fax=new TextField();
        ccod.setBounds(200,120,150,50);
        cname.setBounds(200,200,150,50);
        add.setBounds(200,280,150,50);
        phno.setBounds(200,360,150,50);
        conp.setBounds(200,440,150,50);
        email.setBounds(200,520,150,50);
        fax.setBounds(200,600,150,50);
        Button save= new Button("Save");
        Button exit= new Button("Exit");
        save.setBounds(200,680,100,40);
        exit.setBounds(350,680,100,40);
        add(l1);
        add(ccod);
        add(l2);
        add(cname);
        add(l3);
        add(add);
       add(l4);
       add(phno);
       add(l5);
       add(conp);
       add(l6);
       add(email);
       add(l7);
       add(fax);
       add(save);
       add(exit);
      save.addActionListener(this);
      exit.addActionListener(this);
      setVisible(true);
    addWindowListener(new WindowAdapter(){
      public void WindowClosing(WindowEvent w) {System.exit(0);}});
    public void actionPerformed(ActionEvent ae)
    Customerdetails cud= new Customerdetails();
    if(ae.getSource()==save)
    s1=ccod.getText();
    s2=cname.getText();
    s3=add.getText();
    s4=phno.getText();
    s5=conp.getText();
    s6=email.getText();
    s7=fax.getText();
    try
          String query = "insert into Customerdetails (Customercode,CompanyName,Address,PhoneNumber,Contact person,EmailAddress,FaxNumber)"+ "values('"+s1+"','"+s2+"','"+s3+"','"+s4+"','"+s5+"','"+s6+"','"+s7+"')";
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
          con=DriverManager.getConnection("jdbc:odbc:prism");
          stmt=con.createStatement();
          rs=stmt.executeQuery(query);
          stmt.close();
    catch(ClassNotFoundException e)
      System.out.println(e);
    catch(SQLException e)
      System.out.println(e);
    else if(ae.getSource()==exit)
    System.exit(0);
    else
    System.exit(0);
    public static void main(String args[])
       Customerdetails cud= new Customerdetails();
    }

    This doesn't look right:
    ,FaxNumber)"+ "values(because it's equal to ,FaxNumber)values(and your SQL server won't understand it, put a whitespace between.
    /M

  • Data is not updating in DB Table

    Hi...All
    we have done the RFC-JDBC Synchronous scenario, we are getting the success messages into SXMB_MONI ,in the CCM also it was showing success. but data is not updating in to the Database Table. client want to see the response data in the Database Table only.
    pls help me this is very urgent.
    Regards,
    Pasi.

    Hi,
    If everything is working fine in XI there is some problem in database end only while query gets executed. Try debuging the sql query which you have by giving log statement and see what the query generated is.
    Got to your receiver jdbc communication chalnnel , Advance mode > Additional parameters,
    Enter logSQLStatement in the name column and true in the value column
    To view the SQL log Click on the message ID of the communication channel monitoring.
    or, alternatively, in Runtime workbench, click your message> details> audit log tab.
    Run the interface once more. Check the communication channel now. It will show the actual insert statement which is trying to insert into the DB and then you can figure out what is the query being fired to database and see if it is fine.
    Copy the same query and run in databse. you will be able to find the exact problem.
    thanks
    amit
    reward point if answer is useful

  • After editing file in ACR 8.6 (Mac) , the file (NEF and XMP) modification dates are not updated

    With both my Mac's, reset Photoshop C  (2014) to previous version 2014.0. Now find that after editing file in ACR 8.6 (Mac) , the file (NEF and XMP) modification dates are not updated. Reloaded camera raw, etc., but still find modification dates are not updated, either using Finder or using Bridge to view dates. Editing other files, PSD, DNG, TIFF, etc., are updated and the information is correctly displayed.

    Ok, not entirely sure what I did but it's now working (Bizarre!). The only thing I did was 'eject' the ACR 8.6 .dmg file from the finder side bar and restart PS CC, so that may have been where I was going wrong all along!
    However, I now have another issue in that there is no preview of the shot in Finder on my iMac when I highlight the NEF file. I assume this is simply because Apple haven't yet released an update for the new D810 NEF files and so the computer doesn't know what it's looking at?!?
    If anyone has any other ideas though, then I'm more than willing to listen.
    Thanks again.

  • Deactivation date is not updating in Asset Master after retirement (ABAON)

    Dear Experts,
    Asset Capitalized on: 28.02.2009 and depreciation key used as: LINK-Str.-line from acq.value to zero without interest. Asset Retirement done with revenue (210) on 31.05.2009. We do have depreciation like (01 book depreciation, 15 Tax depreciation, 30 Local GAAP book depreciation).  Below is the asset and class:
    Asset name:  Maruti Baleno
    Asset Class: Vehicles
    Here my question is after retirement done with the transaction code: ABAON u201CDeactivation onu201D date is not updating automatically in the system, however when am trying to update manually the system showing error like u201CDeactivation not possible. Dep.area 15 has acquisition values.
    When am trying to do same transaction with T code: u201CABAVNu201D, the system updating the deactivation date.
    Can anybody explain me why the above error happening and why the deactivation date is not updating with t code: ABAON.
    Thanks,
    Francis.J

    Dear Atif Farooq,
    In the AO74 the transaction types (Deactivate fixed asset check box also ticked)
    200     Retirement without revenue
    210     Retirement with revenue
    When am trying to update manually below error appearing in AS02
    Deactivation not possible. Dep.area 15 has acquisition values
    Message no. AA296
    Diagnosis
    You cannot deactivate, since acquisition values are still present in depreciation area 15.
    Procedure
    Deactivation can only be posted by a complete retirement/transfer. The deactivation date is then set automatically.
    The above asset procured in the year of 2009 and same has been retired 2009.
    Thanks,
    Francis J

  • Time/date will not update

    After updating software, the time/date will not update.  My network is fine and I can get to the internet fine.  Also will not accept my apple ID

    Try restarting the Apple TV by removing ALL the cables for 30 seconds.

  • Statistical delivery date is not  updating automatically or by default

    When creating  the PO delivery date of a item in PO,is picking,but statistical delivery date is not  updating automatically or by default. I am not getting this automatically .Its need  for vendor evaluation.

    Hi,
    Check on it:-
    Statistical Delivery date vs Confirmed Delivery date
    pherasath

  • Has anybody noticed that Last played dates do not update?

    I have recently noticed that the playcounts and last played dates are not updating. When you play a song it does not update the last played date.
    Did anyone come across with this issue

    Yep, same for me. When i play on my iPhone, it doesn't update in iTunes using iTunes Match.

  • Actual end date is not update after closing a change

    Hi,
    We are using SCSM 2012, now I want to make report on which changes have been closed in the last month. In som way all the changes that have been closed in SCSM do not have an actual end date, all the changes that I have imported from our old tool does. It
    looks like SCSM does not update this field by itself, but I can't find a field in the change managment module in which I can provide the actual end date.
    How does SCSM 2012 copes with this?
    Kind regards, Marco Jansen

    Hi Greg,
    We are actually testing this now, as MS is not planning to solve this issue on a short term. The use of the last modified date is casuing u a lot of trouble now as we have had an change on our change form casuingthe last modified for all change to be set
    to the date of the change. That was the end of my closing data.
    We are now getting the WA in place from Netviaconsulting, but that is not a complete solution. Not all change reach a state of complete before they are closed. Sometime you will close a change that is cancelled ,rejected or failed. this means that when
    triggering on an update of the record every update will set the actual enddate. Besides when setting the actual enddate on the status closed, the date is update every time the worflow runs.
    We just want the actual enddate to be filled  when a change comes to the status closed from any other status, but this sets the actual enddate on every status change of the change. in some strange way ewe cannot figure this out.
    If anybody has the correct configuration for this workflow it would be very useful. Most prefereably MicroSoft in this case.

  • Schedule line date is not updating in line with P.O confirmation.

    hi,
    when sales order created for individual requirements it automatically creates P.R and this P.R is converted to P.O.
    whenever this P.O is updated with confirmation category like acknowledgement or inbound delivery it should update Sales order schedule line for the delivery date. but this is not happening, what is the configuration required for this.
    Kindly reply.
    Regards,
    Venkatesh

    hi,
    when stock is not available then the customer order is booked as special requirement and P.R created against that order. Then the P.R is converted in to P.O and P.O is updated by O.A or Inbound delivery but the delivery dates from O.A or inbound does not update the sales order schedule line.
    Regards,
    Venkatesh

  • Classification Data (SLED) not Updated for Movement Type 561

    Dear All,
    I have noticed that after uploading the opening stock with movement type 561, the Classification data (Date of manufacture & Shelf Life expiry date) which was captured in MB1C is not updated in the batch master in Classification Tab.
    Is this standard SAP behaviour for 561 movement type? Or is there any config is missing?
    Please advise.
    Regards,
    Suresh.

    Hi Suresh,
    For your question I understand that while uploading the initial balances, system didn't ask you for the Manufacturing date or total shelf life date. Following is the solution:
    You have to maintain "Check SLExpir.date" and "Classif.batches" indicators for the movement type 561 or any movement type you required. This customization can be perform through SPRO>>MM>>IM>>Goods Mvt. and mvt. No.
    Also activate SLED at plant level in customization.
    Regards
    SAK

  • Purchase Requisition Date is not updated with Scheduleline Delivery Date

    Hi,
      This is a third part Sales Scenario. The Delivery date on the schedule line is passed on to purchase requisition as the delivery date of that item. Due to some business requirement, the delivery date of the schedule line is changed just before saving the sales order in the BADI called through the userexit userexit_save_document_prepare. Now on saving the sales order, the purchase requsition is also created.The delivery date of the schedule line is changed but has not reflected on the Purchase Requision.
    If the Sales Order is opened in VA02 and the schedule line delivery date is modified, the Purchase Requisition delivery date is also getting modified.
    Why did it not happen at the time of saving the Sales Order.
    What is the structure into which the purchase requsition information is stored, so that on processing the sales order, this information is utilized to create the purchase requsition.
    Please help.

    Hi,
    Check the following table for the mentioned fields EBAN-BADAT and EBAT-FRGDT
    Thanksk and Regards,
    Hari Challa.

Maybe you are looking for

  • Validate XML Schema

    Hi, I need to load some XML schema definitions to afterwards validate some DOM documents against this schemas. My problem is, when loading those XML schema definitions I have to validate them. How to do this? How to provide an javax.xml.validation.Sc

  • Will CC work with Chrome or Android?

    I have a chromebook and want to use it in creative cloud.  Is this possible? I can't find an answer.

  • Java Thread Dump and String encoding

    Hi My Application is server application, running on a linux box with JDK 1.4.2_04 Recently, my application got hang, there are no processing. when i took stack trace. I found "Thread-6204" prio=1 tid=0x0x8e3a400 nid=0x2621 waiting for monitor entry [

  • Correct way to construct variable based on other variable's name

    Hello! I have done this topic based on some modifications of this thread. The problem is that I can't understand how to manipulate with selection of the columns as variable when iterating over loop.  My goal is to define multiple variables for 'selec

  • Reverse Sync from ECC to MDG

    Hi Experts, we have a co-deploy scenario with MDG as an add-on in our ECC system. We have a portal interface(MDG-F) for users to change master data. usually changes are very few so never had a problem but we recently had a major reorg and had to imme